/* AI Side Hustle Prompt Vault — FE Sales Page */
/* Palette: Coolors — Deep Steel Blue + Teal + Warm Coral CTA */

:root {
  --color-primary: #1E3A5F;
  --color-secondary: #0B1D33;
  --color-accent: #2196F3;
  --color-teal: #00BFA5;
  --color-teal-dark: #00897B;
  --color-gold: #FFB300;
  --color-gold-light: #FFD54F;
  --color-cta: #FF5722;
  --color-cta-dark: #D84315;
  --color-success: #43A047;
  --color-white: #ffffff;
  --color-light: #F5F7FA;
  --color-dark: #0B1D33;
  --color-text: #2D3436;
  --color-text-light: #636E72;
  --color-danger: #EF5350;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: var(--color-white);
  line-height: 1.6;
}

.main-content {
  position: relative;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, #2C5282 100%);
  color: var(--color-white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 191, 165, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section .intro-label {
  font-size: 20px;
  color: var(--color-teal);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-section .intro-label i {
  margin-right: 8px;
}

.hero-section .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-section .main-title .highlight {
  color: var(--color-gold);
  display: block;
}

.hero-section .main-description {
  font-size: 21px;
  color: rgba(255,255,255,0.92);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .main-description strong {
  color: var(--color-gold-light);
}

.hero-section .target-audience {
  font-size: 19px;
  color: var(--color-gold-light);
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-section .target-audience i {
  margin-right: 10px;
  color: var(--color-gold);
}

.hero-section .no-hassle-list {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.hero-section .no-hassle-list span {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.hero-section .no-hassle-list span i {
  color: var(--color-danger);
  margin-right: 8px;
}

.hero-section .sub-description {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-bottom: 20px;
}

.hero-section .guarantee-text {
  font-size: 18px;
  color: #69F0AE;
  text-align: center;
  font-weight: 600;
  margin-bottom: 35px;
}

.hero-section .guarantee-text i {
  margin-right: 10px;
}

.hero-section .product-image {
  max-width: 520px;
  margin: 35px auto;
  text-align: center;
}

.hero-section .product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.hero-section .product-image img:hover {
  transform: scale(1.02);
}

.plr-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.plr-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.plr-badge i {
  color: var(--color-teal);
  margin-right: 8px;
}

/* ==================== BUTTONS ==================== */
.btn-buy {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-cta), var(--color-cta-dark));
  color: #fff !important;
  padding: 20px 50px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.45);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-buy::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-buy:hover::after {
  left: 100%;
}

.btn-buy:hover {
  background: linear-gradient(135deg, var(--color-cta-dark), #BF360C);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.55);
  color: #fff !important;
  text-decoration: none !important;
}

.btn-final {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-cta), var(--color-cta-dark));
  color: #fff !important;
  padding: 22px 55px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none !important;
  border-radius: 50px;
  box-shadow: 0 10px 35px rgba(255, 87, 34, 0.5);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-final::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-final:hover::after {
  left: 100%;
}

.btn-final:hover {
  background: linear-gradient(135deg, var(--color-cta-dark), #BF360C);
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(255, 87, 34, 0.6);
  color: #fff !important;
  text-decoration: none !important;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
  background: var(--color-light);
  padding: 80px 0;
}

.products-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.products-section h2 i {
  color: var(--color-cta);
}

.products-section .intro-text {
  color: var(--color-text-light);
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.products-section .intro-text strong {
  color: var(--color-primary);
}

.product-card {
  background: var(--color-white);
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 191, 165, 0.15);
}

.product-card .product-number {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.product-card .product-image-wrapper {
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 240px;
}

.product-card .product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.04);
}

.product-card h4 {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.35;
}

/* ==================== USE-CASES / HOW-TO SECTION ==================== */
.usecases-section {
  background: var(--color-white);
  padding: 80px 0;
}

.usecases-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 20px;
}

.usecases-section h2 i {
  color: var(--color-teal);
}

.usecase-card {
  background: var(--color-light);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e8ecf1;
}

.usecase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--color-teal);
}

.usecase-card .icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 30px;
}

.usecase-card h4 {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.usecase-card p {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ==================== STEPS SECTION ==================== */
.steps-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: white;
  padding: 80px 0;
}

.steps-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  color: white;
  line-height: 1.3;
  margin-bottom: 50px;
}

.steps-section h2 i {
  color: var(--color-gold);
}

.step-item {
  display: flex;
  align-items: flex-start;
  background: var(--color-white);
  margin: 22px 0;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-number {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin-right: 25px;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content h4 i {
  color: var(--color-cta);
  margin-right: 10px;
}

.step-content p {
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* ==================== PROBLEM / SOLUTION SECTION ==================== */
.problem-section {
  background: var(--color-white);
  padding: 80px 0;
}

.problem-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 40px;
}

.problem-section h2 i {
  color: var(--color-gold);
}

.problem-section p {
  font-size: 18px;
  color: var(--color-text);
  text-align: center;
  padding: 15px 20px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.problem-section ul {
  list-style: none;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.ss li {
  background: var(--color-light);
  padding: 25px 30px;
  margin: 18px 0;
  border-radius: 12px;
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.6;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-left: 4px solid var(--color-teal);
  transition: transform 0.3s ease;
}

.ss li:hover {
  transform: translateX(8px);
}

.problem-section li i {
  color: var(--color-cta);
  margin-right: 12px;
}

/* ==================== PLR RIGHTS SECTION ==================== */
.plr-section {
  background: var(--color-light);
  padding: 80px 0;
}

.plr-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 20px;
}

.plr-section h2 i {
  color: var(--color-teal);
}

.plr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}

.plr-item {
  background: var(--color-white);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e8ecf1;
  transition: all 0.3s ease;
}

.plr-item:hover {
  border-color: var(--color-teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,191,165,0.12);
}

.plr-item i {
  font-size: 28px;
  color: var(--color-success);
  margin-bottom: 12px;
}

.plr-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  background: var(--color-light);
  padding: 80px 0;
}

.pricing-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 40px;
}

.pricing-section h2 i {
  color: var(--color-gold);
}

.pricing-section .price-box {
  background: var(--color-white);
  padding: 50px;
  margin: 30px auto;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  max-width: 700px;
  text-align: center;
  border: 3px solid var(--color-teal);
  position: relative;
  overflow: hidden;
}

.pricing-section .price-box::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 22px;
  right: -32px;
  background: var(--color-cta);
  color: #fff;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.pricing-section .price {
  font-size: 72px;
  font-weight: 900;
  color: var(--color-cta);
  margin: 25px 0;
}

.pricing-section .price .old-price {
  text-decoration: line-through;
  color: #bbb;
  font-size: 36px;
  font-weight: 600;
  margin-right: 10px;
}

/* ==================== GUARANTEE SECTION ==================== */
.guarantee-section {
  background: linear-gradient(135deg, var(--color-success), #2E7D32);
  color: white;
  padding: 80px 0;
}

.guarantee-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  color: white;
  line-height: 1.3;
  margin-bottom: 40px;
}

.guarantee-section p {
  color: white;
  font-size: 18px;
  text-align: center;
  padding: 15px 20px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-section .guarantee-box {
  background: white;
  padding: 40px;
  margin: 40px auto;
  border-radius: 16px;
  max-width: 800px;
  color: var(--color-text);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.guarantee-section .guarantee-box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.guarantee-section .guarantee-box li {
  padding: 12px 0;
  font-size: 17px;
}

.guarantee-section .guarantee-box li i {
  color: var(--color-success);
  margin-right: 12px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: var(--color-white);
  padding: 80px 0;
}

.faq-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.faq-section h2 i {
  color: var(--color-teal);
}

.faq-item {
  background: var(--color-light);
  padding: 25px 30px;
  margin: 18px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-accent);
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-item h4 {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-item h4 i {
  color: var(--color-accent);
  margin-right: 10px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.65;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, #2C5282 100%);
  color: white;
  padding: 100px 0;
}

.final-cta-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  color: white;
  line-height: 1.3;
  margin-bottom: 40px;
}

.final-cta-section h2 i {
  color: var(--color-gold);
}

.final-cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  text-align: center;
  padding: 15px 20px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* ==================== STICKY POPUP ==================== */
.pop-up {
  position: sticky;
  bottom: -2px;
  z-index: 999999999999;
}

.popup-bg {
  position: relative;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  box-shadow: 0 -10px 40px rgba(211,47,47,0.4);
}

.popup {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.popuo-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup .p-first {
  margin: 0;
  font-size: 17px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.popup .p-second {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  line-height: 1.4;
}

.popup h1 {
  color: #fff;
  font-size: 34px;
  margin: 8px 0;
  font-weight: 900;
}

.popup a {
  text-decoration: none;
  background: #fff;
  color: #d32f2f;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.popup a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  text-decoration: none;
  color: #b71c1c;
}

.cancle {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cancle:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

/* ==================== DISCLAIMER / FOOTER ==================== */
.footer-section {
  background: var(--color-dark);
  padding: 60px 0;
}

.footer-section p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-section a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--color-gold);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .plr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 40px;
  }

  .hero-section .main-title {
    font-size: 32px;
  }

  .hero-section .main-description {
    font-size: 17px;
  }

  .hero-section .no-hassle-list {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn-buy {
    font-size: 18px;
    padding: 16px 35px;
  }

  .btn-final {
    font-size: 18px;
    padding: 18px 35px;
  }

  .steps-section h2,
  .problem-section h2,
  .products-section h2,
  .pricing-section h2,
  .guarantee-section h2,
  .final-cta-section h2,
  .faq-section h2,
  .usecases-section h2,
  .plr-section h2 {
    font-size: 26px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .step-number {
    margin: 0 auto 18px;
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .pricing-section .price {
    font-size: 56px;
  }

  .popup {
    flex-direction: column;
    gap: 12px;
  }

  .popup a {
    padding: 14px 28px;
    font-size: 15px;
  }

  .product-card {
    padding: 18px;
  }

  .plr-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section .main-title {
    font-size: 26px;
  }

  .hero-section .main-description {
    font-size: 15px;
  }

  .hero-section .no-hassle-list span {
    font-size: 15px;
  }

  .pricing-section .price {
    font-size: 48px;
  }

  .ss li {
    padding: 20px;
    font-size: 16px;
  }

  .plr-badges {
    gap: 10px;
  }

  .plr-badge {
    font-size: 13px;
    padding: 8px 16px;
  }
}
