/* Little Hearts Bible Tales — Sales Page */
/* Palette: Warm Sky Blue + Sunshine Gold + Soft Coral — Kid-Friendly Bible */

:root {
  --color-primary: #2B5EA7;
  --color-secondary: #1A3D6D;
  --color-accent: #3B82C4;
  --color-teal: #48BB78;
  --color-teal-dark: #38A169;
  --color-gold: #F6AD55;
  --color-gold-light: #FEEBC8;
  --color-cta: #E8574A;
  --color-cta-dark: #C53030;
  --color-success: #48BB78;
  --color-white: #ffffff;
  --color-light: #FFF8F0;
  --color-dark: #1A2744;
  --color-text: #2D3748;
  --color-text-light: #718096;
  --color-danger: #FC8181;
  --color-purple: #805AD5;
}

* {
  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, #1A3D6D 0%, #2B5EA7 40%, #4A90D9 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(246, 173, 85, 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(72, 187, 120, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section .intro-label {
  font-size: 20px;
  color: var(--color-gold);
  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;
  font-size: 28px;
  margin-top: 10px;
  font-weight: 700;
}

.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: #9AE6B4; 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(246, 173, 85, 0.35); 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-gold); 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(232, 87, 74, 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), #9B2C2C); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(232, 87, 74, 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(232, 87, 74, 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), #9B2C2C); transform: translateY(-4px); box-shadow: 0 15px 45px rgba(232, 87, 74, 0.6); color: #fff !important; text-decoration: none !important; }

/* ==================== VALUE SECTION ==================== */
.value-section { background: var(--color-light); padding: 80px 0; }
.value-section h2 { font-family: "Montserrat", sans-serif; font-size: 36px; font-weight: 800; text-align: center; color: var(--color-primary); margin-bottom: 20px; }
.value-section h2 i { color: var(--color-gold); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.value-item { background: var(--color-white); border-radius: 16px; padding: 30px 20px; text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,0.06); border: 1px solid #E2E8F0; transition: all 0.3s ease; }
.value-item:hover { border-color: var(--color-primary); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(43, 94, 167, 0.12); }
.value-item i { font-size: 30px; color: var(--color-primary); margin-bottom: 12px; }
.value-item h4 { font-size: 15px; font-weight: 700; color: var(--color-text); margin-bottom: 5px; }
.value-item p { font-size: 13px; color: var(--color-text-light); margin-bottom: 10px; }
.value-price { font-size: 24px; font-weight: 900; color: var(--color-cta); }
.value-total { text-align: center; margin-top: 40px; background: var(--color-white); padding: 30px; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.06); border: 2px solid var(--color-gold); }
.value-total p { margin: 0; font-size: 24px; font-weight: 700; color: var(--color-text); }

/* ==================== STORIES SECTION ==================== */
.stories-section { background: var(--color-white); padding: 80px 0; }
.stories-section h2 { font-family: "Montserrat", sans-serif; font-size: 36px; font-weight: 800; text-align: center; color: var(--color-primary); margin-bottom: 20px; }
.stories-section h2 i { color: var(--color-cta); }
.stories-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; }
.stories-section .intro-text strong { color: var(--color-primary); }

.story-card { background: var(--color-white); border: 2px solid #E2E8F0; border-radius: 16px; padding: 20px; position: relative; transition: all 0.3s ease; height: 100%; box-shadow: 0 4px 16px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; text-align: center; }
.story-card:hover { border-color: var(--color-gold); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(246, 173, 85, 0.2); }
.story-number { background: linear-gradient(135deg, var(--color-gold), #DD6B20); color: #fff; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; margin-bottom: 12px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(246, 173, 85, 0.35); }
.story-image-wrapper { border-radius: 12px; margin-bottom: 14px; overflow: hidden; box-shadow: 0 5px 18px rgba(0,0,0,0.12); max-width: 240px; }
.story-image-wrapper img { width: 100%; height: auto; display: block; transition: all 0.3s ease; }
.story-card:hover .story-image-wrapper img { transform: scale(1.05); }
.story-card h4 { color: var(--color-primary); font-size: 14px; font-weight: 700; margin-bottom: 0; line-height: 1.35; }

/* ==================== FULL LIST ==================== */
.fulllist-section { background: var(--color-light); 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-purple); }
.fulllist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 18px; 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-white); border-left: 3px solid var(--color-primary); transition: all 0.2s ease; display: flex; align-items: center; gap: 8px; }
.fulllist-item:hover { background: #EBF8FF; transform: translateX(4px); border-left-color: var(--color-gold); }
.fulllist-item .sn { background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }

/* ==================== AUDIENCE / WHO IS THIS FOR ==================== */
.audience-section { background: var(--color-white); padding: 80px 0; }
.audience-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: 40px; }
.audience-section h2 i { color: var(--color-teal); }
.audience-card { background: var(--color-light); border-radius: 16px; padding: 35px 30px; text-align: center; transition: all 0.3s ease; height: 100%; border: 1px solid #E2E8F0; }
.audience-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); border-color: var(--color-primary); }
.audience-card .icon-circle { width: 75px; height: 75px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), #4A90D9); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-size: 30px; box-shadow: 0 6px 18px rgba(43, 94, 167, 0.25); }
.audience-card h4 { color: var(--color-primary); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.audience-card p { color: var(--color-text-light); font-size: 15px; line-height: 1.65; margin: 0; }

/* ==================== PLR RIGHTS ==================== */
.plr-section { background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, #4A90D9 100%); padding: 80px 0; color: white; }
.plr-section h2 { font-family: "Montserrat", sans-serif; font-size: 36px; font-weight: 800; text-align: center; color: white; line-height: 1.3; margin-bottom: 20px; }
.plr-section h2 i { color: var(--color-gold); }
.plr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 40px auto 0; }
.plr-item { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 28px; text-align: center; border: 1px solid rgba(255,255,255,0.15); transition: all 0.3s ease; backdrop-filter: blur(5px); }
.plr-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); border-color: rgba(246, 173, 85, 0.4); }
.plr-item i { font-size: 28px; color: var(--color-gold); margin-bottom: 15px; }
.plr-item p { margin: 0; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.92); }

/* ==================== 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-cta); }
.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-primary); 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 Teal & Gold) ==================== */
.guarantee-section {
  background: linear-gradient(135deg, #38A169 0%, #2F855A 50%, #276749 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, #48BB78, #2F855A); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(72, 187, 120, 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-teal); 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-purple); }
.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-primary); }
.faq-item:hover { transform: translateX(5px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-left-color: var(--color-gold); }
.faq-item h4 { color: var(--color-primary); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.faq-item h4 i { color: var(--color-gold); 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%, #4A90D9 100%); color: white; padding: 100px 0; }
.final-cta-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; }
.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-gold); text-decoration: none; transition: color 0.2s; }
.footer-section a:hover { color: var(--color-teal); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .plr-grid { grid-template-columns: repeat(2, 1fr); }
  .fulllist-grid { grid-template-columns: repeat(2, 1fr); }
  .value-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-title .highlight { font-size: 22px; }
  .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; }
  .stories-section h2, .value-section h2, .pricing-section h2, .guarantee-section h2, .final-cta-section h2, .faq-section h2, .audience-section h2, .plr-section h2, .fulllist-section h2 { font-size: 26px; }
  .pricing-section .price { font-size: 56px; }
  .popup { flex-direction: column; gap: 12px; }
  .popup a { padding: 14px 28px; font-size: 15px; }
  .story-card { padding: 16px; }
  .plr-grid { grid-template-columns: 1fr; }
  .fulllist-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-card { padding: 30px 25px; gap: 25px; }
  .seal-inner { width: 90px; height: 90px; }
  .final-cta-section h2 { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero-section .main-title { font-size: 26px; }
  .hero-section .main-title .highlight { font-size: 18px; }
  .hero-section .main-description { font-size: 15px; }
  .hero-section .no-hassle-list span { font-size: 15px; }
  .pricing-section .price { font-size: 48px; }
  .plr-badges { gap: 10px; }
  .plr-badge { font-size: 13px; padding: 8px 16px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { padding: 20px; }
}
