/* The KDP Side Hustle Vault — FE Sales Page */
/* Palette: Forest Green + Sage + Warm Gold + Coral CTA */

:root {
  --color-primary: #1B4332;
  --color-secondary: #0B2419;
  --color-accent: #2D6A4F;
  --color-teal: #52B788;
  --color-teal-dark: #40916C;
  --color-gold: #DDA15E;
  --color-gold-light: #FFDDA1;
  --color-cta: #BC4749;
  --color-cta-dark: #9B2226;
  --color-success: #40916C;
  --color-white: #ffffff;
  --color-light: #F5F7F4;
  --color-dark: #0B2419;
  --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%, #2D6A4F 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(82, 183, 136, 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(221, 161, 94, 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.08); border: 1px solid rgba(82, 183, 136, 0.3); 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(188, 71, 73, 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), #7A1518); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(188, 71, 73, 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(188, 71, 73, 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), #7A1518); transform: translateY(-4px); box-shadow: 0 15px 45px rgba(188, 71, 73, 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(82, 183, 136, 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; }

/* ==================== FULL LIST SECTION ==================== */
.fulllist-section { background: var(--color-white); padding: 80px 0; }
.fulllist-section h2 { font-family: "Montserrat", sans-serif; font-size: 36px; font-weight: 800; text-align: center; color: var(--color-primary); margin-bottom: 20px; }
.fulllist-section h2 i { color: var(--color-gold); }
.fulllist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 20px; max-width: 1000px; margin: 0 auto; }
.fulllist-item { padding: 10px 15px; font-size: 14.5px; color: var(--color-text); font-weight: 500; border-radius: 8px; background: var(--color-light); border-left: 3px solid var(--color-teal); transition: all 0.2s ease; }
.fulllist-item:hover { background: #E8F5E9; transform: translateX(4px); }
.fulllist-item i { color: var(--color-teal); margin-right: 8px; font-size: 12px; }

/* ==================== USE-CASES ==================== */
.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 ==================== */
.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 ==================== */
.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 ==================== */
.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(82, 183, 136, 0.12); }
.plr-item i { font-size: 28px; color: var(--color-teal); margin-bottom: 12px; }
.plr-item p { margin: 0; font-size: 16px; font-weight: 600; color: var(--color-primary); }

/* ==================== PRICING ==================== */
.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 (Warm Amber Design) ==================== */
.guarantee-section {
  background: linear-gradient(135deg, #D4A76A 0%, #BC6C25 50%, #9B2226 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.guarantee-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none; }
.guarantee-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 250px; height: 250px; background: rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none; }
.guarantee-badge-icon { text-align: center; margin-bottom: 15px; }
.guarantee-badge-icon i { font-size: 50px; color: rgba(255,255,255,0.9); filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
.guarantee-section h2 { font-family: "Montserrat", sans-serif; font-size: 38px; font-weight: 800; text-align: center; color: white; line-height: 1.3; margin-bottom: 15px; text-shadow: 1px 1px 4px rgba(0,0,0,0.15); }
.guarantee-subtitle { color: rgba(255,255,255,0.9); font-size: 19px; text-align: center; margin-bottom: 40px; font-weight: 500; }
.guarantee-card { background: rgba(255,255,255,0.97); padding: 45px 50px; border-radius: 20px; max-width: 800px; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,0.15); display: flex; align-items: flex-start; gap: 35px; position: relative; }
.guarantee-seal { flex-shrink: 0; }
.seal-inner { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, #DDA15E, #BC6C25); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(188, 108, 37, 0.35); border: 4px solid rgba(255,255,255,0.8); }
.seal-inner i { font-size: 24px; color: var(--color-white); margin-bottom: 2px; }
.seal-inner span { font-size: 22px; font-weight: 900; color: var(--color-white); line-height: 1; }
.seal-inner small { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 1px; }
.guarantee-content { flex: 1; }
.guarantee-main-text { font-size: 18px; font-weight: 600; color: var(--color-primary); margin-bottom: 20px; line-height: 1.6; }
.guarantee-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.guarantee-point { font-size: 16px; color: var(--color-text); font-weight: 500; }
.guarantee-point i { color: var(--color-success); margin-right: 10px; }
.guarantee-closing { font-size: 16px; color: var(--color-text-light); font-style: italic; margin: 0; }

/* ==================== FAQ ==================== */
.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 ==================== */
.final-cta-section { background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, #2D6A4F 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); }

/* ==================== 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); }
  .fulllist-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-card { flex-direction: column; align-items: center; text-align: center; padding: 35px 30px; }
  .guarantee-points { align-items: center; }
}

@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, .fulllist-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; }
  .fulllist-grid { grid-template-columns: 1fr; }
  .guarantee-card { padding: 30px 25px; gap: 25px; }
  .seal-inner { width: 90px; height: 90px; }
}

@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; }
}
