/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal: #2b6f76;
  --teal-dark: #1c4b50;
  --coral: #f2766b;
  --coral-dark: #e05a4e;
  --yellow: #f6c453;
  --cream: #fdf6e9;
  --text: #2c3333;
  --text-light: #d7ecec;
  --gray: #6b7676;
}

html { scroll-behavior: smooth; }

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }
.reveal-5 { transition-delay: 0.4s; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 720px; }
.center { text-align: center; }

h1, h2, h3 { line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(28px, 5vw, 44px); }
h2 { font-size: clamp(24px, 4vw, 34px); margin-bottom: 20px; }
h3 { font-size: 20px; margin-bottom: 8px; }

p { font-size: 17px; color: var(--text); }

.text-white { color: #fff; }
.text-light { color: var(--text-light); font-size: 18px; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.2); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--coral);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--coral-dark);
}
.btn-small {
  padding: 10px 22px;
  font-size: 14px;
  background: var(--coral);
  color: #fff;
  box-shadow: none;
}

/* ---------- Header ---------- */
.topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-dark);
}
.logo strong { color: var(--coral); font-weight: 800; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-inner { text-align: center; max-width: 780px; margin: 0 auto; }
.hero h1 { color: var(--teal-dark); margin-bottom: 20px; }
.hero-sub { font-size: 19px; color: #465050; margin-bottom: 32px; }
.hero-sub strong { color: var(--coral-dark); }

.hero-image-wrap {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.hero-image {
  max-width: 320px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(28, 75, 80, 0.28);
  transform: rotate(-2deg);
  border: 6px solid #fff;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.gallery-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border: 1px solid #e8e0cf;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 34px rgba(28, 75, 80, 0.18);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item figcaption {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: center;
}
.gallery-item:nth-child(4), .gallery-item:nth-child(5) {
  grid-column: span 1;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}

/* ---------- Decorative icons ---------- */
.deco-icon {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}
.deco-tl { top: 6%; left: 3%; }
.deco-tr { top: 8%; right: 4%; }
.deco-bl { bottom: 8%; left: 5%; }
.deco-br { bottom: 6%; right: 3%; }
.deco-sm { width: 44px; }
.deco-md { width: 60px; }
.deco-lg { width: 78px; }
@media (max-width: 800px) {
  .deco-icon { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; position: relative; overflow: hidden; }
.section-white { background: #fff; }
.section-light { background: var(--cream); }
.section-teal { background: var(--teal); }
.section-coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); }

.subtitle { color: var(--gray); margin-top: -10px; margin-bottom: 32px; font-size: 17px; }

/* ---------- Pain list ---------- */
.pain-list {
  list-style: none;
  margin: 24px 0;
}
.pain-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid #eee;
  font-size: 18px;
}
.pain-list li::before {
  content: "•";
  color: var(--coral);
  font-size: 28px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pain-conclusion {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  border-left: 4px solid var(--coral);
  padding-left: 16px;
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.benefit {
  background: var(--cream);
  border-radius: 14px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check { flex-shrink: 0; }

/* ---------- Modules ---------- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.module-card {
  background: #fff;
  border: 2px solid #e8e0cf;
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(28, 75, 80, 0.16);
}
.module-active {
  border-color: var(--coral);
  box-shadow: 0 10px 26px rgba(242, 118, 107, 0.18);
}
.module-active:hover {
  box-shadow: 0 18px 36px rgba(242, 118, 107, 0.28);
}
.module-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-bottom: 12px;
}
.module-card p { font-size: 14px; color: var(--gray); }
.module-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--coral);
  color: #fff;
}
.module-tag-locked {
  background: #efe6d2;
  color: #9a8a63;
}

/* ---------- Offer ---------- */
.price {
  font-size: clamp(48px, 9vw, 72px);
  font-weight: 900;
  color: #fff;
  margin: 10px 0;
}
.micro-text {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* ---------- Guarantee ---------- */
.guarantee-badge {
  font-size: 56px;
  margin-bottom: 12px;
}

/* ---------- FAQ ---------- */
.faq details {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 18px 22px;
  border: 1px solid #e8e0cf;
}
.faq summary {
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  color: var(--teal-dark);
}
.faq details p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--gray);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--teal-dark);
  color: var(--text-light);
  padding: 48px 0 32px;
}
.footer-logo { font-size: 20px; margin-bottom: 14px; color: #fff; }
.footer-disclaimer {
  font-size: 13px;
  color: #9fc0c0;
  max-width: 560px;
  margin: 0 auto 16px;
}
.footer-copy { font-size: 13px; color: #7fa3a3; }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-white { width: 100%; text-align: center; }
  .trust-row { flex-direction: column; gap: 8px; align-items: center; }
  .hero-image { max-width: 260px; }
  .logo { font-size: 16px; }
  .btn-small { padding: 9px 14px; font-size: 12.5px; white-space: nowrap; }
  .topbar-inner { padding-top: 12px; padding-bottom: 12px; }
}
