/* ═══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES — shared brand palette
   ═══════════════════════════════════════════════════ */
:root {
  --gold: #F2891B;
  --gold-light: #F5A04A;
  --gold-dark: #D07010;
  --deep-black: #0A0C0E;
  --dark-bg: #0A0C0E;
  --dark-card: #141618;
  --dark-border: rgba(255,255,255,0.08);
  --light-bg: #F4F2EE;
  --light-bg-alt: #DDD8CE;
  --light-border: rgba(0,0,0,0.08);
  --text-dark: #0A0C0E;
  --text-dark-secondary: #3A3C3E;
  --text-dark-muted: #6A6C6E;
  --text-light: #ECEAE6;
  --text-light-secondary: rgba(236,234,230,0.7);
  --text-light-muted: rgba(236,234,230,0.45);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --content-max: 900px;
  --content-wide: 1100px;
  --section-pad: clamp(5rem, 10vw, 8rem);
}

/* ═══════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--dark-bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════════════════
   CONTAINERS
   ═══════════════════════════════════════════════════ */
.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }
.container--wide { max-width: var(--content-wide); }

/* ═══════════════════════════════════════════════════
   PAINTING-BACKED SECTIONS
   ═══════════════════════════════════════════════════ */
.painting-section {
  position: relative;
  overflow: hidden;
}
.painting-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}
.painting-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,12,14,0.68) 0%,
    rgba(10,12,14,0.80) 50%,
    rgba(10,12,14,0.88) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.painting-section__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10,12,14,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}
.painting-section__content {
  position: relative;
  z-index: 5;
}

/* ═══════════════════════════════════════════════════
   SECTION BASES
   ═══════════════════════════════════════════════════ */
.section-dark {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: var(--section-pad) 0;
}
.section-light {
  background: var(--light-bg);
  color: var(--text-dark);
  padding: var(--section-pad) 0;
}
.section-light-alt {
  background: var(--light-bg-alt);
  color: var(--text-dark);
  padding: var(--section-pad) 0;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.35s ease;
}
.btn--gold {
  background: var(--gold);
  color: #1a1a1a;
  border: 1px solid var(--gold);
  box-shadow: 0 2px 12px rgba(200, 150, 46, 0.2);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 24px rgba(200, 150, 46, 0.35);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 169, 74, 0.5);
}
.btn--ghost:hover {
  background: rgba(212, 169, 74, 0.1);
  border-color: var(--gold-light);
}
.btn--dark-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.15);
}
.btn--dark-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ═══════════════════════════════════════════════════
   NAVIGATION — overrides on top of base.css
   ═══════════════════════════════════════════════════ */
.nav { position: fixed; background: transparent; border-bottom: none; padding: 1.25rem 0; transition: all 0.4s ease; }
.nav--scrolled { background: rgba(20, 20, 20, 0.95); padding: 0.7rem 0; }
.nav__container { max-width: var(--content-wide); }
.nav__logo { color: var(--text-light); }
.nav__logo:hover { color: var(--gold-light); }
.nav__link { color: rgba(240,235,227,0.7); }
.nav__link:hover { color: var(--gold-light); }
.nav__cta { background: var(--gold); color: #1a1a1a; }
.nav__cta:hover { background: var(--gold-light); }
.nav__toggle span { background: var(--text-light); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  color: var(--text-light);
}
.hero .painting-section__bg {
  background-image: url('/course/images/boats_at_sea.webp');
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 169, 74, 0.35);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.hero__accent { color: var(--gold-light); }
.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--text-light-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__proof {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__proof-item {
  text-align: center;
}
.hero__proof-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.hero__proof-label {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════ */
.problem { padding: clamp(3rem, 6vw, 5rem) 0 var(--section-pad); background: var(--light-bg); }
.problem__inner { max-width: var(--content-wide); margin: 0 auto; }
.problem__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: start;
  padding: 3rem 0;
}
.problem__row-heading { }
.problem__lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}
.problem__lead-accent { color: var(--gold); }
.problem__row-body { padding-top: 0.25rem; }
.problem__text {
  font-size: 1rem;
  color: var(--text-dark-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.problem__text:last-child { margin-bottom: 0; }
.problem__highlight {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gold);
}
.problem__divider {
  width: 100%;
  height: 1px;
  background: var(--light-border);
}

/* ═══════════════════════════════════════════════════
   SOLUTION / BENEFITS
   ═══════════════════════════════════════════════════ */
.solution {
  padding: var(--section-pad) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}
.solution__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.solution__header .heading { color: var(--text-light); }
.solution__header .subheading {
  color: var(--text-light-secondary);
  margin-top: 0.5rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.benefit-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 2rem;
  transition: all 0.35s;
}
.benefit-card:hover {
  border-color: rgba(200,150,46,0.25);
}
.benefit-card__icon {
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.benefit-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
}

/* ═══════════════════════════════════════════════════
   SOLUTION VARIANT A — stark title card
   ═══════════════════════════════════════════════════ */
.sol-a {
  padding: var(--section-pad) 0;
  background: var(--deep-black);
  color: var(--text-light);
  text-align: center;
}
.sol-a__inner { max-width: 700px; }
.sol-a__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}
.sol-a__accent { color: var(--gold); }
.sol-a__sub {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-light-muted);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════
   SOLUTION VARIANT B — two-column copy + checklist
   ═══════════════════════════════════════════════════ */
.sol-b {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}
.sol-b__intro {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  text-align: center;
}
.sol-b__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--content-wide);
}
.sol-b__heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0 0 1.25rem;
}
.sol-b__heading em { font-style: italic; color: var(--gold); }
.sol-b__accent { color: var(--gold); }
.sol-b__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light-secondary);
}
.sol-b__list { display: flex; flex-direction: column; gap: 1rem; padding-top: 0.5rem; }
.sol-b__item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light-secondary);
}
.sol-b__check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ═══════════════════════════════════════════════════
   SOLUTION VARIANT C — painting-backed single statement
   ═══════════════════════════════════════════════════ */
.sol-c { padding: var(--section-pad) 0; }
.sol-c__inner {
  max-width: 780px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.sol-c__rule {
  width: 60px;
  height: 1px;
  background: rgba(242,137,27,0.5);
}
.sol-c__statement {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
}
.sol-c__cta { margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════
   FOUR PHASES — chapter overview
   ═══════════════════════════════════════════════════ */
.phases {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--light-bg);
  color: var(--text-dark);
}
.phases__inner { max-width: var(--content-wide); }
.phases__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}
.phases__list { display: flex; flex-direction: column; }
.phases__item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0;
}
.phases__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-bg-alt);
  border: 1px dashed var(--light-border);
}
.phases__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.phases__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}
.phases__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.phases__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark-secondary);
}
.phases__divider {
  width: 100%;
  height: 1px;
  background: var(--light-border);
}

@media (max-width: 768px) {
  .phases__item { grid-template-columns: 1fr; gap: 1.5rem; }
  .phases__image-placeholder { aspect-ratio: 4/3; }
  .phases__image { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════════════
   WHAT'S INCLUDED
   ═══════════════════════════════════════════════════ */
.included {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}
.included__inner { max-width: var(--content-wide); }
.included__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: center;
}
.included__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 1.5rem 0;
}
.included__image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-card);
  border: 1px dashed rgba(255,255,255,0.1);
}
.included__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(242,137,27,0.2);
}
.included__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.included__meta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.included__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light-secondary);
  margin-bottom: 1rem;
}
.included__sub-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 0.6rem;
}
.included__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.included__list li {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  padding-left: 1rem;
  position: relative;
}
.included__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.included__list--spaced { gap: 0.85rem; }
.included__list--spaced li { line-height: 1.6; }
.included__link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.included__link:hover { color: var(--gold-light); }
.included__divider {
  width: 100%;
  height: 1px;
  background: var(--dark-border);
}

@media (max-width: 768px) {
  .included__block { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   ABOUT / AUTHORITY
   ═══════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--light-bg-alt);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
.about__image {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.about__content p {
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-border);
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.credential__icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.credential__text {
  font-size: 0.82rem;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}
.credential__text strong {
  color: var(--text-dark);
  display: block;
}

/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}
.pricing__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.pricing__header .heading { color: var(--text-light); }
.pricing__header .subheading { color: var(--text-light-secondary); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.price-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.35s;
}
.price-card:hover {
  border-color: rgba(242,137,27,0.35);
  box-shadow: 0 8px 32px rgba(242,137,27,0.12);
  transform: translateY(-4px);
}
.price-card--featured {
  border-color: var(--gold);
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.price-card__period {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
}
.price-card__features {
  text-align: left;
  margin-bottom: 2rem;
}
.price-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  margin-bottom: 0.65rem;
  line-height: 1.5;
}
.price-card__check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.price-card__note {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* Bitcoin button */
.btn--bitcoin {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(242,137,27,0.35);
  font-size: 0.88rem;
}
.btn--bitcoin:hover {
  background: rgba(242,137,27,0.07);
  border-color: var(--gold);
}
.price-card__or {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.6rem 0;
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--light-bg);
}
.faq__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--light-border);
}
.faq__item:first-child { border-top: 1px solid var(--light-border); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.3s;
}
.faq__question:hover { color: var(--gold-dark); }
.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: 1rem;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s;
}
.faq__icon::before {
  width: 12px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.is-open .faq__answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}
.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
  max-width: 650px;
}


/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
.final-cta {
  padding: var(--section-pad) 0;
  color: var(--text-light);
  text-align: center;
}
.final-cta .painting-section__bg {
  background-image: url('/course/images/security-bg.webp');
  background-position: center center;
}
.final-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.final-cta__sub {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light-secondary);
  margin-bottom: 2.5rem;
}
.final-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.final-cta__note {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: #0d0d0d;
  color: rgba(240,235,227,0.6);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.footer__tagline { font-size: 0.88rem; line-height: 1.6; }
.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__links a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(240,235,227,0.08);
  padding-top: 1.5rem;
}
.footer__bottom p { font-size: 0.78rem; }

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .problem__row { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  .sol-b__inner { grid-template-columns: 1fr; gap: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__credentials { grid-template-columns: 1fr; }
  .about__heading-mobile { display: block !important; }
  .about__heading-desktop { display: none !important; }
}

@media (max-width: 640px) {
  .nav__menu { background: var(--dark-bg); }
  .nav__link { color: var(--text-light); }
  .hero { min-height: auto; padding: 6rem 0 4rem; }
  .hero .painting-section__bg { background-image: url('/course/images/boats_mobile.webp') !important; }
  .hero__title { font-size: clamp(2rem, 5.5vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  .hero__proof { gap: 1.5rem; }
}
