/* ============================================
   EC3 Growth — Premium Landing Page Styles
   ============================================ */

:root {
  /* Backgrounds — v3 slate */
  --navy: #0d1117;
  --navy-light: #151b24;
  --navy-mid: #1e2733;
  --graphite: #2e3744;
  --graphite-light: #4d5868;
  --off-white: #eaeef2;
  --off-white-dark: #d5dce3;
  --white: #f6f8fa;

  /* Accents — gold */
  --gold: #c9a962;
  --gold-light: #d4bc82;
  --gold-dark: #a88b4a;
  --champagne: #e8dcc8;
  --red-muted: #c45c5c;
  --amber-muted: #c9a05c;

  --accent-rgb: 201, 169, 98;
  --dark-rgb: 13, 17, 23;
  --mid-rgb: 30, 39, 51;
  --light-rgb: 234, 238, 242;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --weight-title: 700;
  --weight-title-hero: 800;
  --weight-subtitle: 600;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(var(--dark-rgb), 0.05);
  --shadow-md: 0 8px 28px rgba(var(--dark-rgb), 0.07);
  --shadow-lg: 0 14px 48px rgba(var(--dark-rgb), 0.1);
  --shadow-card: 0 3px 6px rgba(var(--dark-rgb), 0.03), 0 12px 32px -8px rgba(var(--dark-rgb), 0.09);
  --shadow-card-hover: 0 6px 16px rgba(var(--dark-rgb), 0.05), 0 20px 44px -12px rgba(var(--dark-rgb), 0.14);
  --shadow-elevated: 0 20px 52px -16px rgba(var(--dark-rgb), 0.18);
  --shadow-dark: 0 16px 40px -12px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(var(--accent-rgb), 0.08);
  --shadow-dark-hover: 0 22px 56px -16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(var(--accent-rgb), 0.14);
  --shadow-gold: 0 4px 16px rgba(var(--accent-rgb), 0.2), 0 1px 6px rgba(var(--accent-rgb), 0.1);
  --shadow-gold-strong: 0 8px 28px rgba(var(--accent-rgb), 0.28), 0 2px 8px rgba(var(--dark-rgb), 0.12);
  --shadow-form: 0 24px 60px -20px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(var(--accent-rgb), 0.1);
  --texture-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --radius: 4px;
  --radius-lg: 8px;

  /* Scrollbars */
  --scrollbar-size: 10px;
  --scrollbar-size-thin: 7px;
  --scrollbar-track: rgba(var(--mid-rgb), 0.22);
  --scrollbar-track-page: #121820;
  --scrollbar-track-page-end: #171e28;
  --scrollbar-track-page-accent: rgba(var(--accent-rgb), 0.09);
  --scrollbar-track-dark: rgba(var(--dark-rgb), 0.82);
  --scrollbar-track-dark-accent: rgba(var(--accent-rgb), 0.14);
  --scrollbar-thumb: rgba(var(--accent-rgb), 0.42);
  --scrollbar-thumb-hover: rgba(var(--accent-rgb), 0.62);
  --scrollbar-thumb-active: var(--gold-light);
  --scrollbar-thumb-border-page: #0f141c;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  font-size: 16px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track-page);
  background: var(--navy);
}

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scrollbars — slate + gold */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html::-webkit-scrollbar {
  width: var(--scrollbar-size);
}

html::-webkit-scrollbar-track {
  background:
    linear-gradient(90deg, var(--scrollbar-track-page-accent) 0%, transparent 26%),
    linear-gradient(180deg, var(--navy) 0%, var(--scrollbar-track-page) 48%, var(--scrollbar-track-page-end) 100%);
  border-left: 1px solid rgba(var(--accent-rgb), 0.12);
  box-shadow: inset 2px 0 12px rgba(0, 0, 0, 0.32);
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.58) 0%,
    rgba(var(--accent-rgb), 0.34) 100%
  );
  border-radius: 100px;
  border: 2px solid var(--scrollbar-thumb-border-page);
  background-clip: padding-box;
  min-height: 48px;
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.74) 0%,
    rgba(var(--accent-rgb), 0.5) 100%
  );
  border-color: rgba(var(--accent-rgb), 0.22);
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:active {
  background: var(--scrollbar-thumb-active);
  border-color: rgba(var(--accent-rgb), 0.28);
  background-clip: padding-box;
}

html::-webkit-scrollbar-corner {
  background: var(--scrollbar-track-page-end);
}

*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

*::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(var(--mid-rgb), 0.28) 0%, rgba(var(--dark-rgb), 0.16) 100%);
  border-radius: 100px;
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb), 0.1),
    inset 0 1px 2px rgba(var(--dark-rgb), 0.12);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.52) 0%,
    rgba(var(--accent-rgb), 0.3) 100%
  );
  border-radius: 100px;
  border: 2px solid transparent;
  background-clip: padding-box;
  min-height: 48px;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.68) 0%,
    rgba(var(--accent-rgb), 0.45) 100%
  );
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:active {
  background: var(--scrollbar-thumb-active);
  background-clip: padding-box;
}

*::-webkit-scrollbar-corner {
  background: rgba(var(--mid-rgb), 0.22);
}

.custom-select__options,
.form__group textarea,
.modal__content,
.nav__links--open {
  scrollbar-color: var(--scrollbar-thumb-hover) var(--scrollbar-track-dark);
}

.custom-select__options::-webkit-scrollbar,
.form__group textarea::-webkit-scrollbar {
  width: var(--scrollbar-size-thin);
}

.custom-select__options::-webkit-scrollbar-track,
.form__group textarea::-webkit-scrollbar-track,
.modal__content::-webkit-scrollbar-track,
.nav__links--open::-webkit-scrollbar-track {
  background:
    linear-gradient(90deg, var(--scrollbar-track-dark-accent) 0%, transparent 32%),
    linear-gradient(180deg, rgba(var(--dark-rgb), 0.92) 0%, rgba(var(--mid-rgb), 0.75) 100%);
  margin: 6px 2px;
  border-radius: 100px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.28);
}

.custom-select__options::-webkit-scrollbar-thumb,
.form__group textarea::-webkit-scrollbar-thumb,
.modal__content::-webkit-scrollbar-thumb,
.nav__links--open::-webkit-scrollbar-thumb {
  border: 1px solid rgba(var(--dark-rgb), 0.5);
  min-height: 32px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.text-gold {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: var(--shadow-gold-strong);
  transform: translateY(-2px);
}

.btn--shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--shine.btn--gold {
  animation: btn-pulse 2.8s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes btn-pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.028);
  }
}

.btn--shine.btn--gold:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1);
}

.btn--shine::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 232, 180, 0.15) 30%,
    rgba(255, 248, 220, 0.65) 50%,
    rgba(255, 232, 180, 0.15) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(22deg);
  animation: btn-shine 6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

@keyframes btn-shine {
  0%, 58%, 100% {
    left: -80%;
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  48% {
    left: 130%;
    opacity: 1;
  }

  55% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--shine::after,
  .btn--shine.btn--gold {
    animation: none;
  }
}

.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(var(--light-rgb), 0.25);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* Section shared */
.section {
  padding: 120px 0;
  position: relative;
  isolation: isolate;
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* Background textures */
.section--texture-light {
  background: var(--off-white);
}

.section--texture-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(var(--accent-rgb), 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(var(--dark-rgb), 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section--texture-light.section--texture-lines::before {
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 80px,
      rgba(var(--accent-rgb), 0.022) 80px,
      rgba(var(--accent-rgb), 0.022) 81px
    ),
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(var(--accent-rgb), 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(var(--dark-rgb), 0.03) 0%, transparent 50%);
}

.section--texture-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-noise);
  background-size: 180px 180px;
  opacity: 0.035;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.section--texture-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(var(--accent-rgb), 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 90%, rgba(var(--mid-rgb), 0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.section--texture-dark.section--texture-lines::before {
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 80px,
      rgba(var(--accent-rgb), 0.018) 80px,
      rgba(var(--accent-rgb), 0.018) 81px
    ),
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(var(--accent-rgb), 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 90%, rgba(var(--mid-rgb), 0.6) 0%, transparent 60%);
}

.section--texture-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-noise);
  background-size: 200px 200px;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.section--dark {
  background: var(--navy);
  color: var(--off-white);
}

.section--offwhite {
  background: var(--off-white);
}

.section__header {
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.section__eyebrow--gold {
  color: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: var(--weight-title);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}

.title-line {
  display: block;
}

.hero__title .title-line + .title-line,
.section__title .title-line + .title-line {
  margin-top: 0.1em;
}

.section--dark .section__title {
  color: var(--off-white);
}

.section__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--graphite-light);
  max-width: 600px;
}

.section--dark .section__desc {
  color: rgba(var(--light-rgb), 0.65);
}

.section__header--center .section__desc {
  margin: 0 auto;
}

.section__desc--center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(var(--dark-rgb), 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav__logo-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--weight-title-hero);
  color: var(--gold);
  letter-spacing: 0.03em;
}

.nav__logo-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(var(--light-rgb), 0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--off-white);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: all var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--off-white);
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 80% 10%, rgba(var(--accent-rgb), 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 90%, rgba(var(--mid-rgb), 0.7) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 50% 45%, rgba(var(--accent-rgb), 0.05) 0%, transparent 70%),
    linear-gradient(168deg, var(--navy) 0%, #121820 50%, var(--navy-light) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--texture-noise);
  background-size: 220px 220px;
  opacity: 0.04;
  mix-blend-mode: soft-light;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 1000px;
}

.hero__portrait {
  display: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 40px;
  background: rgba(var(--accent-rgb), 0.06);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.25rem);
  font-weight: var(--weight-title-hero);
  line-height: 1.18;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  max-width: 22em;
}

.hero__title em {
  font-style: normal;
  font-weight: var(--weight-title-hero);
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(var(--light-rgb), 0.65);
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.hero__subtitle strong {
  color: var(--off-white);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.15);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--weight-title);
  color: var(--gold);
  margin-bottom: 6px;
}

.hero__stat-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.78rem;
  color: rgba(var(--light-rgb), 0.5);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(var(--accent-rgb), 0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--light-rgb), 0.35);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Pain */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.pain__card {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 20px;
  align-items: start;
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--off-white-dark);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.pain__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.25);
}

.pain__icon {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius);
  color: var(--gold-dark);
  margin-bottom: 0;
  flex-shrink: 0;
}

.pain__card h3 {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: var(--weight-title);
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 8px;
}

.pain__card p {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--graphite-light);
}

.pain__quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid var(--off-white-dark);
}

.pain__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: var(--weight-subtitle);
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* Concept */
.concept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.concept__card {
  background: var(--navy-light);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.concept__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.concept__card--wrong::before { background: var(--red-muted); }
.concept__card--yours::before { background: var(--amber-muted); }
.concept__card--right::before { background: var(--gold); }

.concept__card--right {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.08) 0%, var(--navy-light) 40%);
  box-shadow: var(--shadow-dark-hover), 0 0 48px -24px rgba(var(--accent-rgb), 0.08);
}

.concept__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-dark-hover);
}

.concept__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: var(--weight-title);
  color: rgba(var(--accent-rgb), 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.concept__card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--weight-title);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.concept__card-subtitle {
  font-size: 0.82rem;
  color: rgba(var(--light-rgb), 0.45);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.concept__list {
  flex: 1;
  margin-bottom: 28px;
}

.concept__list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(var(--light-rgb), 0.7);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.concept__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.4);
}

.concept__card--right .concept__list li::before {
  background: var(--gold);
}

.concept__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.concept__tag--red {
  background: rgba(196, 92, 92, 0.15);
  color: var(--red-muted);
}

.concept__tag--amber {
  background: rgba(201, 160, 92, 0.15);
  color: var(--amber-muted);
}

.concept__tag--gold {
  background: rgba(var(--accent-rgb), 0.2);
  color: var(--gold);
}

.concept__bridge {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.concept__bridge p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(var(--light-rgb), 0.7);
  margin-bottom: 32px;
}

.concept__bridge strong {
  color: var(--off-white);
}

/* Program */
.program.section {
  padding-bottom: 100px;
}

.program__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.program__layout--sticky {
  align-items: stretch;
}

.program__intro {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-bottom: 120px;
}

.program__intro .section__desc {
  margin-top: 8px;
}

.program__pillars {
  display: flex;
  flex-direction: column;
}

.pillar {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--off-white-dark);
}

.pillar:first-child {
  padding-top: 0;
}

.pillar:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pillar__number {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: var(--weight-title);
  color: var(--gold);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: var(--radius);
  flex-shrink: 0;
  text-shadow: 0 0 14px rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.1);
  transition: color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.pillar__number::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 232, 180, 0.12) 30%,
    rgba(255, 248, 220, 0.55) 50%,
    rgba(255, 232, 180, 0.12) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(22deg);
  animation: btn-shine 6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.pillar:nth-child(2) .pillar__number::after { animation-delay: 0.9s; }
.pillar:nth-child(3) .pillar__number::after { animation-delay: 1.8s; }
.pillar:nth-child(4) .pillar__number::after { animation-delay: 2.7s; }
.pillar:nth-child(5) .pillar__number::after { animation-delay: 3.6s; }
.pillar:nth-child(6) .pillar__number::after { animation-delay: 4.5s; }
.pillar:nth-child(7) .pillar__number::after { animation-delay: 5.4s; }

.pillar:hover .pillar__number {
  color: var(--gold-light);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.22);
}

.pillar__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--weight-title);
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 8px;
}

.pillar__content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--graphite-light);
}

.program__module-note {
  margin-top: 24px;
  padding: 20px 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy);
  background: rgba(var(--accent-rgb), 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.program__method {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--off-white-dark);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.program__method-header {
  text-align: center;
  margin-bottom: 28px;
}

.program__method-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: var(--weight-title);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}

.program__method-header p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--graphite-light);
}

.program__method-callout {
  padding: 28px 32px;
  background: rgba(var(--accent-rgb), 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.program__method-callout p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: var(--weight-subtitle);
  line-height: 1.55;
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .pillar__number {
    transition: none;
  }

  .pillar__number::after {
    animation: none;
  }
}

/* Differentials */
.differentials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.differentials__card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--off-white-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.differentials__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.differentials__card--featured {
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.1) 0%, var(--white) 55%);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.differentials__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-dark);
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: var(--radius);
}

.differentials__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--weight-title);
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.differentials__card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--graphite-light);
}

/* Transform */
.transform__comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.transform__col {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
}

.transform__col--before {
  background: var(--white);
  border: 1px solid var(--off-white-dark);
  box-shadow: var(--shadow-card);
}

.transform__col--after {
  background: var(--navy);
  color: var(--off-white);
  box-shadow: var(--shadow-dark), 0 0 56px -32px rgba(var(--accent-rgb), 0.07);
}

.transform__col-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--weight-title);
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid;
}

.transform__col--before .transform__col-title {
  color: var(--graphite-light);
  border-color: var(--off-white-dark);
}

.transform__col--after .transform__col-title {
  color: var(--gold);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.transform__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  padding: 10px 0;
}

.transform__col--before .transform__list li {
  color: var(--graphite-light);
}

.transform__col--before .transform__list li svg {
  color: var(--red-muted);
  flex-shrink: 0;
  margin-top: 3px;
}

.transform__col--after .transform__list li {
  color: rgba(var(--light-rgb), 0.8);
}

.transform__col--after .transform__list li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.transform__divider {
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.transform__arrow {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  color: var(--navy);
  box-shadow: var(--shadow-gold-strong);
}

/* Insight / Reframe */
.insight__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.insight__item {
  background: var(--white);
  border: 1px solid var(--off-white-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.insight__item:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-3px);
}

.insight__belief {
  font-size: 0.92rem;
  color: var(--graphite-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.insight__truth {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--weight-title);
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

/* Authority */
.authority__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.authority__frame {
  position: relative;
}

.authority__photo {
  position: relative;
  z-index: 1;
}

.authority__photo img {
  width: 100%;
  max-width: 460px;
  height: clamp(420px, 46vw, 540px);
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center 5%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  box-shadow: var(--shadow-dark);
  display: block;
}

.authority__frame-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.authority__credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.credential {
  text-align: center;
}

.credential__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: var(--weight-title-hero);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.credential__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.78rem;
  color: rgba(var(--light-rgb), 0.5);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.credential__divider {
  display: none;
  width: 1px;
  height: 48px;
  background: rgba(var(--accent-rgb), 0.2);
  flex-shrink: 0;
}

.authority__role {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.authority__text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(var(--light-rgb), 0.7);
  margin-bottom: 16px;
}

.authority__text strong {
  color: var(--champagne);
  font-weight: 600;
}

.authority__quote {
  margin-top: 32px;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: rgba(var(--accent-rgb), 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 28px -16px rgba(0, 0, 0, 0.2);
}

.authority__quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: var(--weight-subtitle);
  color: var(--off-white);
  line-height: 1.5;
  margin-bottom: 12px;
}

.authority__quote cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* Selection */
.selection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 72px;
}

.selection__col {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
}

.selection__col--for {
  background: var(--white);
  border: 1px solid var(--off-white-dark);
  box-shadow: var(--shadow-card);
}

.selection__col--not {
  background: var(--navy);
  color: var(--off-white);
  box-shadow: var(--shadow-dark);
}

.selection__col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--weight-title);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.selection__col--for h3 {
  color: var(--navy);
}

.selection__col--not h3 {
  color: rgba(var(--light-rgb), 0.6);
}

.selection__col li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
  padding: 10px 0;
}

.selection__col--for li {
  color: var(--graphite-light);
}

.selection__col--for li svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.selection__col--not li {
  color: rgba(var(--light-rgb), 0.6);
}

.selection__col--not li svg {
  color: var(--red-muted);
  flex-shrink: 0;
  margin-top: 3px;
}

.selection__process {
  text-align: center;
}

.selection__process h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--weight-title);
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 48px;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.process__step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.process__step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--weight-title);
  color: var(--navy);
  background: var(--off-white);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.process__step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--weight-title);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 8px;
}

.process__step p {
  font-size: 0.85rem;
  color: var(--graphite-light);
  line-height: 1.6;
}

.process__step-line {
  width: 80px;
  height: 2px;
  background: var(--off-white-dark);
  margin-top: 24px;
  flex-shrink: 0;
}

/* Application */
.application__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.application__trust {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(var(--light-rgb), 0.55);
}

.trust__item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.application__form {
  background: var(--navy-light);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-form);
}

.form__group {
  margin-bottom: 24px;
}

.form__group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(var(--light-rgb), 0.7);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form__group input,
.form__group textarea,
.custom-select__trigger {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--off-white);
  background: rgba(var(--dark-rgb), 0.6);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(var(--light-rgb), 0.25);
}

.form__group input:focus,
.form__group textarea:focus,
.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.custom-select__trigger:hover {
  border-color: rgba(var(--accent-rgb), 0.28);
}

.custom-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__value.is-placeholder {
  color: rgba(var(--light-rgb), 0.35);
}

.custom-select__chevron {
  flex-shrink: 0;
  display: flex;
  color: var(--gold);
  transition: transform var(--transition);
}

.custom-select.is-open .custom-select__chevron {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--navy-light);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  max-height: min(240px, 50vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.custom-select__options[hidden] {
  display: none;
}

.custom-select__option {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: rgba(var(--light-rgb), 0.85);
  border-radius: calc(var(--radius) - 1px);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.custom-select__option:hover,
.custom-select__option.is-focused {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--off-white);
}

.custom-select__option.is-selected {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--gold);
}

.custom-select__option.is-disabled {
  display: none;
}

.form__group textarea {
  resize: vertical;
  min-height: 80px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.phone-field {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.phone-field__country {
  position: relative;
  flex-shrink: 0;
}

.phone-field__country-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--off-white);
  background: rgba(var(--dark-rgb), 0.6);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  outline: none;
  white-space: nowrap;
}

.phone-field__country-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.28);
}

.phone-field__flag {
  font-size: 1.15rem;
  line-height: 1;
}

.phone-field__dial {
  color: rgba(var(--light-rgb), 0.85);
  letter-spacing: 0.02em;
}

.phone-field__chevron {
  display: flex;
  color: var(--gold);
  transition: transform var(--transition);
}

.phone-field__country.is-open .phone-field__chevron {
  transform: rotate(180deg);
}

.phone-field__countries {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 35;
  min-width: 220px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--navy-light);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  max-height: min(240px, 50vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.phone-field__countries[hidden] {
  display: none;
}

.phone-field__country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(var(--light-rgb), 0.85);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius) - 1px);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.phone-field__country-option:hover,
.phone-field__country-option.is-focused {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--off-white);
}

.phone-field__country-option.is-selected {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--gold-light);
}

.phone-field__country-option .phone-field__flag {
  font-size: 1.1rem;
}

.phone-field__country-name {
  flex: 1;
  min-width: 0;
}

.phone-field__country-code {
  color: rgba(var(--light-rgb), 0.5);
  font-size: 0.82rem;
}

.phone-field input[type='tel'] {
  flex: 1;
  min-width: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.phone-field:focus-within .phone-field__country-btn,
.phone-field:focus-within input[type='tel'] {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.phone-field__country.is-open .phone-field__country-btn {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form__group--error input,
.form__group--error textarea,
.form__group--error .custom-select__trigger,
.form__group--error .phone-field__country-btn,
.form__group--error .phone-field input[type='tel'] {
  border-color: var(--red-muted);
}

.form__error {
  font-size: 0.75rem;
  color: var(--red-muted);
  margin-top: 6px;
}

.form__disclaimer {
  font-size: 0.75rem;
  color: rgba(var(--light-rgb), 0.35);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal--active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--dark-rgb), 0.8);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--navy-light);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  transform: translateY(20px);
  transition: transform var(--transition);
  box-shadow: var(--shadow-form);
}

.modal--active .modal__content {
  transform: translateY(0);
}

.modal__icon {
  color: var(--gold);
  margin-bottom: 24px;
}

.modal__content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--weight-title);
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin-bottom: 16px;
}

.modal__content p {
  font-size: 0.95rem;
  color: rgba(var(--light-rgb), 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Thank you page */
.thankyou-page .header {
  background: rgba(var(--dark-rgb), 0.95);
  backdrop-filter: blur(12px);
}

.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.thankyou__card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.thankyou__icon {
  color: var(--gold);
  margin-bottom: 28px;
  filter: drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.35));
}

.thankyou__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: var(--weight-title);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 20px;
}

.thankyou__lead {
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.75;
  color: rgba(var(--light-rgb), 0.68);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.thankyou__lead strong {
  color: var(--off-white);
  font-weight: 600;
}

.thankyou__steps {
  text-align: left;
  margin: 0 auto 40px;
  padding: 28px 32px;
  background: rgba(var(--dark-rgb), 0.45);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.thankyou__steps-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--weight-title);
  color: var(--off-white);
  margin-bottom: 20px;
  text-align: center;
}

.thankyou__steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.thankyou__steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.thankyou__step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: var(--weight-title);
  color: var(--gold);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 50%;
}

.thankyou__step-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(var(--light-rgb), 0.72);
  padding-top: 4px;
}

.thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--off-white);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(var(--light-rgb), 0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 360px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(var(--light-rgb), 0.55);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.08);
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(var(--light-rgb), 0.3);
}

/* Animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .concept__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .program__layout,
  .authority__layout,
  .application__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .differentials__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .program__intro {
    position: static;
    padding-bottom: 0;
  }

  .program.section {
    padding-bottom: 64px;
  }

  .pillar {
    min-height: auto;
    padding: 32px 0;
  }

  .pillar:last-child {
    padding-bottom: 32px;
  }

  .authority__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .authority__photo img {
    max-width: 100%;
    height: clamp(340px, 62vw, 480px);
  }
}

@media (min-width: 769px) {
  .hero {
    display: block;
    position: relative;
    padding: 148px 0 120px;
    padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
    padding-right: 0;
    min-height: auto;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      102deg,
      var(--navy) 0%,
      var(--navy) 30%,
      rgba(13, 17, 23, 0.92) 38%,
      rgba(13, 17, 23, 0.55) 46%,
      rgba(13, 17, 23, 0.15) 54%,
      transparent 62%
    );
  }

  .hero__bg {
    inset: 0;
  }

  .hero__gradient {
    background:
      radial-gradient(ellipse 55% 50% at 88% 18%, rgba(var(--accent-rgb), 0.1) 0%, transparent 58%),
      radial-gradient(ellipse 40% 38% at 12% 88%, rgba(var(--mid-rgb), 0.55) 0%, transparent 55%),
      linear-gradient(168deg, var(--navy) 0%, #121820 52%, var(--navy-light) 100%);
  }

  .hero__content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 620px;
    width: 100%;
    margin: 0;
    padding: 24px 32px 24px 0;
  }

  .hero__badge {
    margin-bottom: 28px;
    padding: 8px 20px;
    font-size: 0.72rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 2.8vw, 2.85rem);
    line-height: 1.18;
    margin-bottom: 20px;
    max-width: 14em;
  }

  .hero__portrait {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(58vw, 780px);
    height: 100%;
    min-height: 100%;
    max-height: none;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 6%,
      rgba(0, 0, 0, 0.35) 12%,
      rgba(0, 0, 0, 0.62) 18%,
      rgba(0, 0, 0, 0.88) 24%,
      #000 30%,
      #000 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 6%,
      rgba(0, 0, 0, 0.35) 12%,
      rgba(0, 0, 0, 0.62) 18%,
      rgba(0, 0, 0, 0.88) 24%,
      #000 30%,
      #000 100%
    );
  }

  .hero__portrait picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 46% 8%;
    display: block;
    transform: scale(1.14);
    transform-origin: 50% 0%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(13, 17, 23, 0.28) 0%,
        transparent 10%,
        transparent 92%,
        rgba(13, 17, 23, 0.32) 100%
      ),
      linear-gradient(
        102deg,
        rgba(13, 17, 23, 0.95) 0%,
        rgba(13, 17, 23, 0.55) 10%,
        rgba(13, 17, 23, 0.15) 20%,
        transparent 32%
      );
    pointer-events: none;
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
    max-width: 480px;
    font-size: clamp(0.94rem, 1.45vw, 1.05rem);
    line-height: 1.72;
  }

  .hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    gap: 12px;
  }

  .hero__actions .btn--lg {
    padding: 12px 22px;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hero__stats,
  .hero__scroll {
    display: none;
  }

  .nav__cta.btn--gold {
    box-shadow: var(--shadow-gold-strong);
  }

  .nav__cta.btn--gold:hover {
    box-shadow: 0 10px 32px rgba(var(--accent-rgb), 0.38), 0 3px 10px rgba(var(--dark-rgb), 0.14);
  }

  #conceito .section__desc,
  #dor .section__desc,
  #transformacao .section__desc,
  #valor .section__desc,
  #selecao .section__desc {
    max-width: 900px;
  }

  #conceito .concept__bridge {
    max-width: 900px;
  }

  #valor .section__header,
  #selecao .section__header {
    max-width: 1040px;
  }

  .selection__process {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .hero__title {
    font-size: clamp(1.55rem, 6.2vw, 2.15rem);
    max-width: none;
  }

  .hero__title .title-line {
    display: inline;
  }

  .hero__title .title-line + .title-line {
    margin-top: 0;
  }

  .section__title .title-line {
    display: inline;
  }

  .section__title .title-line + .title-line {
    margin-top: 0;
  }

  .section__title {
    font-size: clamp(2rem, 7.5vw, 2.65rem);
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(var(--dark-rgb), 0.98);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(var(--accent-rgb), 0.1);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle--active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 88px 0 60px;
    min-height: auto;
    align-items: stretch;
  }

  .hero__portrait {
    display: block;
    position: relative;
    order: 1;
    width: calc(100% + 48px);
    margin: 0 -24px;
    height: clamp(400px, 78vw, 480px);
    overflow: visible;
    pointer-events: none;
    z-index: 0;
  }

  .hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 48%,
      rgba(0, 0, 0, 0.82) 64%,
      rgba(0, 0, 0, 0.45) 78%,
      rgba(0, 0, 0, 0.12) 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 48%,
      rgba(0, 0, 0, 0.82) 64%,
      rgba(0, 0, 0, 0.45) 78%,
      rgba(0, 0, 0, 0.12) 90%,
      transparent 100%
    );
  }

  .hero__portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(var(--dark-rgb), 0.7) 0%, transparent 20%, transparent 80%, rgba(var(--dark-rgb), 0.7) 100%),
      linear-gradient(to bottom, rgba(var(--dark-rgb), 0.18) 0%, transparent 28%);
    pointer-events: none;
  }

  .hero__content {
    order: 2;
    position: relative;
    z-index: 1;
  }

  .hero__badge {
    display: none;
  }

  .hero__title {
    margin-top: -12px;
  }

  .hero__stats {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-top: 36px;
    margin: 0 -4px;
  }

  .hero__stat {
    flex: 1;
    min-width: 0;
    padding: 0 4px;
  }

  .hero__stat-number {
    font-size: clamp(1.65rem, 5.5vw, 2rem);
    margin-bottom: 8px;
  }

  .hero__stat-label {
    font-size: clamp(0.72rem, 2.8vw, 0.82rem);
    line-height: 1.2;
    gap: 1px;
    color: rgba(var(--light-rgb), 0.6);
  }

  .hero__stat-divider {
    width: 1px;
    height: 52px;
    flex-shrink: 0;
    align-self: center;
  }

  .hero__scroll {
    display: none;
  }

  .pain__grid {
    grid-template-columns: 1fr;
  }

  .transform__comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .transform__divider {
    justify-content: center;
    padding: 0;
  }

  .transform__arrow {
    transform: rotate(90deg);
  }

  .selection__grid {
    grid-template-columns: 1fr;
  }

  .insight__grid {
    grid-template-columns: 1fr;
  }

  .authority__credentials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    margin-left: -4px;
    margin-right: -4px;
  }

  .credential {
    flex: 1;
    min-width: 0;
    padding: 0 4px;
  }

  .credential__number {
    font-size: clamp(1.5rem, 5.2vw, 1.85rem);
    margin-bottom: 6px;
  }

  .credential__label {
    font-size: clamp(0.65rem, 2.5vw, 0.75rem);
    line-height: 1.2;
    gap: 1px;
    color: rgba(var(--light-rgb), 0.55);
  }

  .credential__divider {
    display: block;
    height: 52px;
    align-self: center;
  }

  .process__steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process__step-line {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .application__form {
    padding: 32px 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand p {
    margin: 16px auto 0;
  }

  .footer__links {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--lg {
    padding: 16px 28px;
  }
}
