*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean: #1B4F72;
  --fog: #F4F1EC;
  --salt: #FFFFFF;
  --slate: #2C3E50;
  --moss: #1c352d;
  --rust: #C0392B;
  --amber: #D4820A;
  --mist: #E8E2D9;
  --ink: #1A1A1A;
  --mid: #6B6B6B;
}

html, body { height: 100%; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--fog);
  color: var(--ink);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════ HEADER ════ */

/* Variables required by the shared header component */
:root {
  --color-bg-card:       #ffffff;
  --color-bg:            #f5f1ea;
  --color-text:          #1c352d;
  --color-text-muted:    #6b7a78;
  --color-border:        #bfc6c5;
  --color-primary:       #1c352d;
  --font-heading:        'Playfair Display', Georgia, serif;
  --radius:              0.5rem;
  --container:           1100px;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }

.site-header { background: var(--color-bg-card); border-bottom: 1px solid var(--color-border); position: sticky; top: 0; z-index: 100; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }
.site-header__logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.site-header__logo-text { font-family: var(--font-heading); font-size: 1.25rem; color: var(--color-text); }
.site-header__logo-sub { font-size: 0.75rem; color: var(--color-text-muted); letter-spacing: 0.05em; }
.site-nav__list { display: flex; gap: 0.25rem; list-style: none; }
.site-nav__link { padding: 0.5rem 0.75rem; border-radius: var(--radius); text-decoration: none; color: var(--color-text); font-size: 0.9rem; font-family: 'Lora', Georgia, serif; }
.site-nav__link:hover, .site-nav__link.is-active { background: var(--color-bg); color: var(--color-primary); text-decoration: none; }
.site-nav__toggle { display: none; }
@media (max-width: 768px) {
  .site-nav__toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
  .site-nav__toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); }
  .site-nav__list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-bg-card); flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--color-border); }
  .site-nav__list.is-open { display: flex; }
}

/* ════════════════════════════════════════════════════════════════ HERO ════ */

.hero {
  background: var(--moss);
  padding: 64px 40px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 7vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--moss);
  color: white;
}

.btn-primary:hover {
  background: #0f1f19;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 53, 45, 0.35);
}

.btn-secondary {
  background: var(--salt);
  color: var(--ocean);
  border: 1.5px solid var(--ocean);
}

.btn-secondary:hover {
  background: #f0f6fb;
}

.hero .btn-primary {
  background: #c9973e;
  color: var(--moss);
}

.hero .btn-primary:hover {
  background: #b5832e;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon { font-size: 18px; }

/* ═══════════════════════════════════���════════════════════════════ FREE TOOLS STRIP ════ */

.free-tools-strip {
  background: var(--fog);
  padding: 32px 40px;
  border-bottom: 1px solid var(--mist);
}

.free-tools-strip__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}

.free-tools-strip__grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.free-tool-chip {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--salt);
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 14px 16px;
}

.free-tool-chip__icon { font-size: 1.4rem; flex-shrink: 0; }

.free-tool-chip__text { flex: 1; }
.free-tool-chip__text strong { display: block; font-size: 0.875rem; color: var(--ink); margin-bottom: 2px; }
.free-tool-chip__text span { font-size: 0.78rem; color: var(--mid); }

.free-tool-chip__link {
  font-size: 0.78rem;
  color: var(--ocean);
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
}
.free-tool-chip__link:hover { color: var(--moss); }

@media (max-width: 600px) {
  .free-tools-strip { padding: 24px 20px; }
  .free-tool-chip { min-width: 100%; }
}

/* ════════════════════════════════════════════════════════════════ PRODUCT SHOWCASE ════ */

.product-section {
  background: var(--salt);
  padding: 80px 40px;
  border-top: 1px solid var(--mist);
}

.section-max {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--mid);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* PRODUCT CARD — MAIN */

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.product-preview {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.product-preview__img {
  display: block;
  width: 100%;
  height: auto;
}

.product-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.15;
}

.product-details p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 28px;
  line-height: 1.7;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--moss);
}

.price-label {
  font-size: 12px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.what-included {
  background: var(--fog);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
}

.what-included-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 16px;
  display: block;
}

.what-included p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 14px;
  line-height: 1.6;
}

.what-included-title--spaced {
  margin-top: 18px;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

.included-list li::before {
  content: '✓';
  color: var(--moss);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

.what-included-footnote {
  font-size: 13px;
  color: var(--mid);
  margin-top: 16px;
  border-top: 1px solid var(--mist);
  padding-top: 14px;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  flex: 1;
  min-width: 200px;
}

/* ════════════════════════════════════════════════════════════════ DATA TRUST ════ */

.data-trust {
  background: var(--fog);
  border-left: 4px solid var(--moss);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.data-trust-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
  display: block;
}

.data-trust-intro {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 24px;
}

.data-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.data-stat {
  display: flex;
  flex-direction: column;
}

.data-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--moss);
  line-height: 1;
  margin-bottom: 4px;
}

.data-stat-label {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════ SOCIAL PROOF ════ */

.proof-section {
  background: var(--fog);
  padding: 80px 40px;
  border-top: 1px solid var(--mist);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.proof-card {
  background: var(--salt);
  border-radius: 8px;
  padding: 28px;
  border-left: 4px solid var(--ocean);
}

.proof-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.7;
}

.proof-attr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.proof-info {
  display: flex;
  flex-direction: column;
}

.proof-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--slate);
}

.proof-move {
  font-size: 11px;
  color: var(--mid);
}

/* ════════════════════════════════════════════════════════════════ FAQ ════ */

.faq-section {
  background: var(--salt);
  padding: 80px 40px;
  border-top: 1px solid var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--mist);
  padding-bottom: 24px;
}

.faq-item:last-child,
.faq-item:nth-last-child(2) {
  border-bottom: none;
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.faq-q::before {
  content: '+';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}

.faq-item.open .faq-q::before {
  background: var(--ocean);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 12px;
}

/* ════════════════════════════════════════════════════════════════ CTA FINAL ════ */

.final-cta {
  background: linear-gradient(135deg, #1B4F72 0%, #0d2f47 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
}

.final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-final {
  background: var(--moss);
  color: white;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn-final:hover {
  background: #0f1f19;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════ FOOTER ════ */

footer {
  background: var(--slate);
  color: white;
  padding: 48px 40px;
  text-align: center;
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  margin: 0 12px;
  transition: color 0.2s;
}

footer a:hover {
  color: white;
}

.footer-copy {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.7;
}

/* ════════════════════════════════════════════════════════════════ RESPONSIVE ════ */

@media (max-width: 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-preview {
    min-height: 320px;
  }

  .data-stats {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
