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

:root {
  --navy: #1a2744;
  --navy-light: #243354;
  --gold: #c9a84c;
  --gold-light: #d4bc72;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #eef0f4;
  --gray-200: #d8dce5;
  --gray-600: #5a6275;
  --gray-800: #2d3348;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo span { color: var(--gold); }
nav a.cta-nav {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
nav a.cta-nav:hover { background: var(--gold-light); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--gold); }
.btn-outline:hover { background: rgba(201, 168, 76, 0.1); }

/* HERO */
.hero {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 140px 0 100px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin: 0 auto 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero p.subhead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-visual {
  margin-top: 60px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

/* SECTION DEFAULTS */
section { padding: 96px 0; }
section.alt { background: var(--gray-50); }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 620px;
  margin-bottom: 48px;
}
.centered { text-align: center; }
.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* PROBLEM */
.problem-stat {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.4;
}
.problem-stat em { font-style: normal; color: var(--gold); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 32px;
}
.pain-card .num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.pain-card p { font-size: 0.95rem; color: var(--gray-600); }

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  counter-reset: step;
}
.step { text-align: center; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { font-size: 0.95rem; color: var(--gray-600); max-width: 320px; margin: 0 auto; }

.step-connector {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--gray-200);
  font-size: 1.5rem;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.feature:hover { border-color: var(--gold); }
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(26, 39, 68, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--navy);
}
.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature p { font-size: 0.9rem; color: var(--gray-600); }

/* FOR WHOM */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.audience-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 40px 36px;
  background: var(--white);
}
.audience-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.audience-card ul {
  list-style: none;
  padding: 0;
}
.audience-card li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  padding-left: 20px;
  position: relative;
}
.audience-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.audience-card li:last-child { border-bottom: none; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.price-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 36px 28px;
  background: var(--white);
  text-align: center;
  transition: border-color 0.2s;
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.12);
  position: relative;
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.price-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-card .price-period {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.price-card .price-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
}
.pricing-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* TRUST */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 24px 16px;
}
.trust-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* CTA / FORM */
.cta-section {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 96px 0;
}
.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px 36px;
}
.form-wrapper label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.form-wrapper input,
.form-wrapper select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s;
}
.form-wrapper input::placeholder { color: rgba(255,255,255,0.35); }
.form-wrapper input:focus,
.form-wrapper select:focus { border-color: var(--gold); }
.form-wrapper select option { background: var(--navy); color: var(--white); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-wrapper .btn { width: 100%; text-align: center; margin-top: 4px; }
.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
}
.form-error {
  background: rgba(220, 80, 80, 0.15);
  border: 1px solid rgba(220, 80, 80, 0.4);
  color: #ffb8b8;
}
.form-error a { color: var(--gold); }
.form-success {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
}
.form-success h3 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.form-success p {
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.form-success .success-check {
  width: 56px;
  height: 56px;
  line-height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 700;
}
.form-submitting { opacity: 0.6; pointer-events: none; }

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .footer-brand {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}
.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq-item.active .faq-question::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 0;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 20px 0;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 110px 0 64px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
  .audience-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CONTENT PAGES
   ======================================== */
.article-hero {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 140px 0 60px;
}
.article-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 16px;
}
.article-hero .article-meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.article-body {
  padding: 64px 0 96px;
}
.article-body .container {
  max-width: 760px;
}
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 32px 0 12px;
}
.article-body p {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  color: var(--gray-800);
  line-height: 1.75;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--gray-600);
}
.article-body .info-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 32px 0;
}
.article-body .info-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.article-body .info-box ul {
  margin-bottom: 0;
}
.article-body .inline-cta {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  padding: 40px 36px;
  margin: 48px 0;
  text-align: center;
  color: var(--white);
}
.article-body .inline-cta h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.article-body .inline-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.article-body .inline-cta .btn {
  margin: 0;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--gold);
}

/* Related articles */
.related-articles {
  padding: 64px 0;
  background: var(--gray-50);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  display: block;
}
.related-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.related-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.related-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
