/* ==============================================
   THRIVE WITH NAOMI — Main Stylesheet
   ============================================== */

:root {
  --cream:        #F5F0EB;
  --cream-dark:   #EDE8E1;
  --sage-dark:    #124370;
  --sage-mid:     #2386C7;
  --sage-light:   #a8d0e8;
  --terracotta:   #e06c9f;
  --terra-light:  #f283b6;
  --gold:         #F99F1F;
  --white:        #ffffff;
  --charcoal:     #1C1A18;
  --text-mid:     #5A5652;
  --border:       rgba(18, 67, 112, 0.14);

  --font-heading: 'EB Garamond', Georgia, serif;
  --font-body:    'Lato', -apple-system, sans-serif;

  --max-w:        1240px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --section-py:   clamp(5rem, 9vw, 9rem);
  --nav-h:        120px;
  --radius:       8px;
  --radius-lg:    20px;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--sage-dark);
}
h1 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
p  { font-size: clamp(1rem, 1.25vw, 1.1rem); line-height: 1.85; color: var(--charcoal); }

/* ── Legal pages (privacy policy, terms) ───────── */
.legal-content h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.5rem; }
.legal-content h2 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-top: 2rem; margin-bottom: 0.5rem; }

/* ── Utilities ──────────────────────────────── */
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-py) 0; }
.section--dark  {
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(249,159,31,.05) 0%, transparent 55%),
    linear-gradient(180deg, #0a2540 0%, var(--sage-dark) 55%, #0a2540 100%);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--cream {
  background: #ffffff;
  position: relative;
  overflow: clip;
}
.section--cream:not(.quote-section)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(249,159,31,0.52) 36%, transparent 95%);
  pointer-events: none;
}
.section--cream::after { display: none; }
.section--credentials {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.section--credentials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
  opacity: 0.5;
}
.section--credentials::after { display: none; }
.section--credentials .orb-tl { display: none; }
.section--white {
  background: #ffffff;
  position: relative;
  overflow: clip;
}
.section--white:not(.section--stats)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(249,159,31,0.42) 50%, transparent 100%);
  pointer-events: none;
}
.section--white:not(.section--stats)::after { display: none; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1.25rem;
}
.section--dark .section-label { color: var(--sage-light); }

.text-center { text-align: center; }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2.5rem; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), background 0.32s var(--ease-out), border-color 0.32s var(--ease-out), color 0.32s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--sage-mid);
  color: var(--white);
  border-color: var(--sage-mid);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(35,134,199,0.5), 0 0 0 4px rgba(35,134,199,0.14);
}
.btn-gold {
  background: var(--gold);
  color: var(--sage-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #e88e10;
  border-color: #e88e10;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(249,159,31,0.55), 0 0 0 4px rgba(249,159,31,0.18);
}
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn-outline:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(18,67,112,0.3);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--sage-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.2);
}
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.72rem; }

/* ── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(12, 48, 90, 0.38);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease, transform 0.35s ease;
}
.nav--hidden { transform: translateY(-100%); }
.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.nav__logo { padding: 15px 0; display: flex; align-items: center; }
.nav__logo img { width: 150px; height: auto; }
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  border-radius: 2px;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.5rem; }

.nav.scrolled {
  background: rgba(10, 40, 70, 0.96);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
  padding: 4px 0;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(18, 67, 112, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: var(--nav-h);
  pointer-events: none;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.mobile-nav.open {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}
/* Link stagger — items slide up on open */
.mobile-nav > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav.open > * { opacity: 1; transform: translateY(0); }
/* child 1=Home, 2=close btn (absolute), 3=About, 4=Services, 5=Free, 6=Contact */
.mobile-nav.open > *:nth-child(1) { transition-delay: 0.15s; }
.mobile-nav.open > *:nth-child(2) { transition-delay: 0.50s; }
.mobile-nav.open > *:nth-child(3) { transition-delay: 0.22s; }
.mobile-nav.open > *:nth-child(4) { transition-delay: 0.29s; }
.mobile-nav.open > *:nth-child(5) { transition-delay: 0.36s; }
.mobile-nav.open > *:nth-child(6) { transition-delay: 0.43s; }
.mobile-nav:not(.open) > * { transition-delay: 0s !important; }
.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(255,255,255,0.9);
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav__services-group { display: flex; flex-direction: column; align-items: center; gap: 0; }
.mobile-nav__services-toggle {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 1.4rem;
  letter-spacing: 0.08em; text-transform: none;
  color: rgba(255,255,255,0.9); transition: color 0.25s;
  display: flex; align-items: center; gap: 0.5rem;
}
.mobile-nav__services-toggle:hover { color: var(--gold); }
.mobile-nav__chevron { font-size: 1.1rem; transition: transform 0.25s; display: inline-block; }
.mobile-nav__services-toggle.open .mobile-nav__chevron { transform: rotate(90deg); }
.mobile-nav .btn { font-family: var(--font-body); font-size: 0.85rem; }
.mobile-nav__services-sub {
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-nav__services-sub.open { max-height: 400px; padding-top: 1.5rem; }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.mobile-nav__close:hover { background: rgba(255,255,255,0.15); }

/* ── Nav dropdown ───────────────────────────── */
.nav__has-dropdown { position: relative; }
.nav__dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  vertical-align: middle;
}
.nav__dropdown-toggle svg {
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}
.nav__has-dropdown.open .nav__dropdown-toggle { color: var(--white); }
.nav__has-dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); opacity: 1; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10, 40, 70, 0.97);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.35rem 0;
  min-width: 185px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s var(--ease-out);
  pointer-events: none;
  list-style: none;
}
.nav__has-dropdown.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown li { list-style: none; }
.nav__dropdown a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__dropdown a:hover,
.nav__dropdown a.active { color: var(--gold); background: rgba(255,255,255,0.04); }
.nav__dropdown a::after { display: none !important; }

/* Mobile services label */
.mobile-nav__label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}
.mobile-nav__sub {
  font-size: 1.4rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.65) !important;
  letter-spacing: 0.01em;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #061828 0%, #0a2540 35%, #0f3560 70%, #124370 100%);
  overflow: hidden;
  position: relative;
}

/* Animated gradient mesh orbs */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-mesh__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.85;
  will-change: transform;
}
.hero-mesh__orb:nth-child(1) {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(35,134,199,0.38) 0%, transparent 70%);
  top: -180px; left: -120px;
  animation: meshFloat1 12s ease-in-out infinite;
}
.hero-mesh__orb:nth-child(2) {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(249,159,31,0.22) 0%, transparent 70%);
  top: 30%; right: -80px;
  animation: meshFloat2 15s ease-in-out infinite;
}
.hero-mesh__orb:nth-child(3) {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(35,134,199,0.18) 0%, transparent 70%);
  bottom: -120px; left: 35%;
  animation: meshFloat3 18s ease-in-out infinite;
}
.hero-mesh__orb:nth-child(4) {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(168,208,232,0.2) 0%, transparent 70%);
  top: 20%; left: 45%;
  animation: meshFloat1 10s ease-in-out infinite reverse;
}

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.06); }
  66%       { transform: translate(-20px, 40px) scale(0.94); }
}
@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-50px, 25px) scale(1.08); }
  66%       { transform: translate(30px, -40px) scale(0.96); }
}
@keyframes meshFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -50px) scale(1.05); }
  66%       { transform: translate(-35px, 20px) scale(0.97); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100dvh - var(--nav-h));
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero__title { margin-bottom: 1.75rem; color: var(--white); }
.hero__title .line-wrap { display: block; overflow: hidden; }
.hero__title .line-inner { display: block; }
.hero__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
}

.hero__img-wrap {
  position: relative;
}
.hero__img-blob {
  border-radius: 62% 38% 55% 45% / 55% 48% 52% 45%;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1a5a94 0%, #0a2540 100%);
  position: relative;
}
.hero__img-blob img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__img-ring {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 220px; height: 220px;
  border: 1.5px solid var(--gold);
  border-radius: 60% 40% 55% 45%;
  opacity: 0.35;
  z-index: -1;
}
.hero__img-dot {
  position: absolute;
  top: -16px; right: -16px;
  width: 110px; height: 110px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.09;
  z-index: -1;
}

/* ── Check list ─────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 0.95rem; }
.check-list li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 1rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--sage-mid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.5 3.5 6.5-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.x-list { display: flex; flex-direction: column; gap: 0.95rem; }
.x-list li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 1rem;
}
.x-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--sage-mid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 6l8 8M14 6l-8 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── Problem section ─────────────────────────── */
.section--problem {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.section--problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-mid) 0%, var(--gold) 55%, transparent 100%);
  opacity: 0.55;
}
.section--problem::after { display: none; }
.problem__sticky h2::before {
  content: '';
  display: block;
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.problem__sticky {
  position: sticky;
  top: calc(var(--nav-h) + 2.5rem);
}
.problem__body p + p { margin-top: 1.25rem; }
.problem__bullets { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.95rem; }
.problem__bullets li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.65;
}
.problem__bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--sage-mid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.5 3.5 6.5-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── Quote section ───────────────────────────── */
.quote-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  font-family: var(--font-heading);
  font-size: clamp(16rem, 28vw, 26rem);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  color: rgba(255,255,255,0.08);
}
.section--cream.quote-section::before { color: rgba(18,67,112,0.05); }
.section--dark.quote-section::before  { color: rgba(255,255,255,0.08); }
.quote-block__text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.quote-block__text::before { content: '\201C'; }
.quote-block__text::after  { content: '\201D'; }
.section--dark .quote-block__text { color: var(--cream); }
.section--cream .quote-block__text,
.section--white .quote-block__text { color: var(--sage-dark); }
.quote-block__attr {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 600;
}
.section--cream .quote-block__attr,
.section--white .quote-block__attr { color: var(--sage-mid); }

/* ── Services grid ───────────────────────────── */
.section--services {
  background: linear-gradient(180deg, #0f2035 0%, #1a3a6a 40%, #0d2a4a 70%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}
.section--services::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(35,134,199,.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 90% 100%, rgba(249,159,31,.07) 0%, transparent 55%);
  pointer-events: none;
}
.section--services .section-label { color: var(--sage-light); }
.section--services h2             { color: var(--white); }
.services-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 4rem;
}
.services-header p { color: rgba(255,255,255,.65); margin-top: 1rem; }
.section--credentials .services-header p { color: var(--text-mid); }
.section--credentials .services-header h2 { color: var(--sage-dark); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.52);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 8px 32px rgba(18,67,112,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 32px 64px rgba(18,67,112,0.14), inset 0 1px 0 rgba(255,255,255,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__title { font-size: clamp(1.3rem, 2vw, 1.75rem); margin-bottom: 1rem; }
.service-card__text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 2rem; }
.service-card__link {
  font-size: 0.85rem; font-weight: 700;
  color: var(--sage-mid); letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.25s, color 0.25s;
}
.service-card__link:hover { gap: 0.75rem; color: var(--sage-dark); }
.service-card__link::after { content: '→'; }

/* Glass overrides when inside dark services section */
.section--services .service-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 8px 32px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.14);
}
.section--services .service-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 24px 64px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.22);
}
.section--services .service-card::before {
  background: linear-gradient(90deg, var(--gold), rgba(168,208,232,.8));
}
.section--services .service-card__title { color: var(--white); }
.section--services .service-card__text  { color: rgba(255,255,255,.65); }
.section--services .service-card__link  { color: var(--gold); }
.section--services .service-card__link:hover { color: var(--white); }

/* Pricing section — dark bg, investment-card style */
.section--pricing .pricing-card {
  background: var(--sage-dark);
  border: none;
  box-shadow: none;
}
.section--pricing .pricing-card.featured {
  border: 1px solid rgba(249,159,31,0.35);
  box-shadow: 0 0 0 1px rgba(249,159,31,0.15), 0 8px 36px rgba(249,159,31,0.12);
}
.section--pricing .pricing-card h3       { color: var(--white); }
.section--pricing .pricing-card__price   { color: var(--white); }
.section--pricing .pricing-card__currency{ color: rgba(249,159,31,0.75); }
.section--pricing .pricing-card__note    { color: var(--sage-light); }
.section--pricing .pricing-card p        { color: rgba(255,255,255,0.65); }
.section--pricing .pricing-card:hover    { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(0,0,0,0.3); }

/* ── About preview ───────────────────────────── */
.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-preview__img {
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--sage-light), var(--sage-mid));
  position: relative;
}
.about-preview__img::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius-lg) + 14px);
  border: 1.5px solid rgba(35,134,199,0.2);
  pointer-events: none;
  z-index: 1;
}
.about-preview__img::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35,134,199,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.about-preview__img img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  position: relative; z-index: 1;
}
.about-preview__content p + p { margin-top: 1.25rem; }

/* ── Photo break (Sanctuary) ─────────────────── */
.photo-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 630px;
  max-height: 630px;
  overflow: hidden;
}
.photo-break__content {
  background: linear-gradient(160deg, #050d17 0%, #0a2540 55%, #0f3560 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem clamp(2rem, 6vw, 5rem);
}
.photo-break__mesh { position: absolute; inset: 0; pointer-events: none; }
.photo-break__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.photo-break__orb--1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(249,159,31,0.2) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation: meshFloat1 13s ease-in-out infinite;
}
.photo-break__orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(35,134,199,0.15) 0%, transparent 70%);
  bottom: -60px; left: -40px;
  animation: meshFloat2 16s ease-in-out infinite;
}
.photo-break__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 440px;
}
.photo-break__line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(249,159,31,0.55), transparent);
  margin: 0 auto 2rem;
}
.photo-break__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin: 0 0 1.25rem;
  quotes: '\201C' '\201D';
}
.photo-break__quote::before { content: open-quote;  color: var(--gold); }
.photo-break__quote::after  { content: close-quote; color: var(--gold); }
.photo-break__attr {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 2rem;
}
.photo-break__img {
  overflow: hidden;
  position: relative;
}
.photo-break__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 6s ease;
}
.photo-break__img:hover img { transform: scale(1.03); }

@media (max-width: 768px) {
  .photo-break { grid-template-columns: 1fr; height: auto; max-height: none; }
  .photo-break__content { height: 280px; padding: 3rem var(--gutter); }
  .photo-break__img { height: 340px; }
}
.credential-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--sage-mid);
}

/* ── CTA section ─────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}
.cta-section::before,
.cta-section::after { display: none; }
.cta-ring,
.cta-mesh { display: none; }

/* Top fade mask — blends with stats section above */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, #0a2540, transparent);
  pointer-events: none;
  z-index: 1;
}
.cta-section__body { position: relative; z-index: 2; }

/* Background mesh orbs */
.cta-mesh { position: absolute; inset: 0; pointer-events: none; }
.cta-mesh__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.cta-mesh__orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(249,159,31,0.22) 0%, transparent 70%);
  top: 80px; right: -100px;
  animation: meshFloat2 14s ease-in-out infinite;
}
.cta-mesh__orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(35,134,199,0.2) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: meshFloat1 11s ease-in-out infinite;
}
.cta-mesh__orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(249,159,31,0.16) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: meshFloat3 18s ease-in-out infinite;
}

/* Decorative pulsing rings */
.cta-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-ring--outer {
  width: min(800px, 110vw); height: min(800px, 110vw);
  border: 1px solid rgba(249,159,31,0.12);
  animation: ringPulse 7s ease-in-out infinite;
}
.cta-ring--mid {
  width: min(560px, 80vw); height: min(560px, 80vw);
  border: 1px solid rgba(249,159,31,0.18);
  animation: ringPulse 7s ease-in-out infinite 2.3s;
}
.cta-ring--inner {
  width: min(320px, 55vw); height: min(320px, 55vw);
  border: 1px solid rgba(249,159,31,0.28);
  animation: ringPulse 7s ease-in-out infinite 4.6s;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.5; }
  50%       { transform: translate(-50%, -50%) scale(1.05); opacity: 1;   }
}

/* Content */
.cta-section__body {
  position: relative;
  z-index: 1;
}
.cta-section__label {
  color: var(--gold);
  opacity: 0.9;
  letter-spacing: 0.28em;
}
.cta-section h2 {
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.cta-section__gold {
  font-style: italic;
  background: linear-gradient(120deg, #ffd060 0%, var(--gold) 50%, #e8920a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.05em 0.15em 0.15em;
  margin: -0.05em -0.15em -0.15em;
  display: inline-block;
}
.cta-section p {
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* Glowing button */
.cta-section__btn {
  animation: btnGlow 3.5s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(249,159,31,0.25); }
  50%       { box-shadow: 0 0 42px rgba(249,159,31,0.55), 0 0 0 6px rgba(249,159,31,0.1); }
}
.cta-section__btn:hover { animation: none; }

/* Gold divider */
.cta-divider {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 260px;
  margin: 2.75rem auto 0;
}
.cta-divider span:first-child,
.cta-divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,159,31,0.45), transparent);
}
.cta-divider__gem {
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.75;
  flex: none;
}

/* ── Page hero (inner pages) ─────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--cream);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(12,50,100,0.38) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.page-hero--img {
  background-size: cover;
  background-position: center 15%;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6,24,50,0.80) 0%, rgba(18,67,112,0.55) 100%);
}
.page-hero--img .page-hero__eyebrow { color: var(--sage-light); }
.page-hero--img h1                  { color: var(--white); }
.page-hero--img .page-hero__sub     { color: rgba(255,255,255,0.78); }
.page-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-mid);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.page-hero h1 { max-width: 860px; margin: 0 auto 0.75rem; }
.page-hero__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8d4f2;
  margin-bottom: 0.75rem;
}
.page-hero__credentials {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-left: 0.5rem;
}
.page-hero__sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--sage-mid);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* ── Story article (magazine layout) ─────── */
.story-article {
  max-width: 960px;
  margin: 0 auto;
}
.story-article h2 { margin-bottom: 0.5rem; }
.story-article__body { margin-top: 2rem; }

/* Top: photo + intro text side by side */
.story-article__top {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 3.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}
.story-article__img {
  border-radius: 20px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 12px 40px rgba(18,67,112,0.14);
}
.story-article__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.story-article__intro { padding-top: 0.5rem; }
.story-article__intro h2 { margin-bottom: 1rem; }
.story-article__intro .divider { margin-bottom: 1.5rem; }
.story-article__intro p + p { margin-top: 1.25rem; }

/* Bottom: two equal columns */
.story-article__cols {
  column-count: 2;
  column-gap: 3.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.story-article__cols p + p { margin-top: 1.25rem; }
.story-article__cols p { break-inside: avoid; }

@media (max-width: 768px) {
  .story-article__top { grid-template-columns: 1fr; gap: 2rem; }
  .story-article__img { min-height: unset; width: 70%; max-width: 280px; margin: 0 auto; aspect-ratio: 3/4; }
  .story-article__cols { column-count: 1; }
}

/* ── Approach section ────────────────────────── */
.section--approach {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.section--approach p + p { margin-top: 1.5rem; }
.section--approach::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, rgba(249,159,31,0.6) 35%, rgba(35,134,199,0.35) 65%, transparent 95%);
  pointer-events: none;
}
.section--approach::after {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,159,31,0.09) 0%, transparent 70%);
  top: -190px; right: -140px;
  pointer-events: none;
}

/* ── Journey section (Problem + Shift combined) ── */
.section--journey {
  padding: 0;
  background:
    radial-gradient(ellipse 90% 50% at 98% 2%,  rgba(35,134,199,0.10) 0%, transparent 52%),
    radial-gradient(ellipse 75% 45% at 2%  98%, rgba(249,159,31,0.09) 0%, transparent 50%),
    linear-gradient(170deg, var(--white) 0%, #edf5fc 38%, #e9f3fb 58%, var(--cream-dark) 100%);
  position: relative;
}
.section--journey::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(35,134,199,0.3) 40%, rgba(249,159,31,0.35) 65%, transparent);
  pointer-events: none;
}
.section--journey .quote-block__text { color: var(--sage-dark); }
.section--journey .quote-block__attr { color: var(--sage-mid); }

.journey-block { padding: var(--section-py) 0; }

.journey-num {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(35,134,199,0.10);
  margin-bottom: -0.25rem;
  letter-spacing: -0.02em;
  user-select: none;
}

.journey-connector {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.journey-connector__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35,134,199,0.22) 45%, rgba(249,159,31,0.28) 55%, transparent);
}
.journey-connector__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(249,159,31,0.38);
  border-radius: 50px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-mid);
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(18,67,112,0.07), 0 0 0 5px rgba(249,159,31,0.06);
}
.journey-connector__gem { color: var(--gold); font-size: 0.6rem; }

/* ── Two-col text section ────────────────────── */
.two-col__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.two-col__left { position: sticky; top: calc(var(--nav-h) + 2.5rem); }
.two-col__right p + p { margin-top: 1.25rem; }

/* ── Bullet list ─────────────────────────────── */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.5rem 0;
}
.bullet-list li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage-light);
}
.bullet-list.terra li::before  { background: var(--sage-mid); }
.bullet-list.dark  li          { color: rgba(253,250,247,0.8); }
.bullet-list.dark  li::before  { background: var(--sage-light); }

/* ── Pricing cards ───────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.pricing-card::before { display: none; }
.pricing-card.featured {
  border-color: rgba(249,159,31,0.35);
  box-shadow: 0 0 0 1px rgba(249,159,31,0.15), 0 8px 36px rgba(249,159,31,0.10), 0 4px 24px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}
.pricing-card__badge {
  display: inline-block;
  background: var(--gold); color: var(--charcoal);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,1);
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 8rem);
  color: var(--charcoal); margin-bottom: 0.25rem;
  line-height: 1;
}
.pricing-card__currency {
  font-size: 1rem;
  color: var(--text-mid);
  vertical-align: middle;
}
.pricing-card__note { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.pricing-card h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 1rem; color: var(--charcoal); }
.pricing-card p  { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.pricing-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  cursor: pointer;
}
.pricing-card__footer {
  margin-top: auto;
  padding-top: 1.75rem;
  position: relative;
  z-index: 2;
}
.pricing-card__btn {
  box-shadow: 0 6px 20px rgba(249,159,31,0.35);
}
.pricing-card__btn:hover {
  box-shadow: 0 10px 30px rgba(249,159,31,0.5);
}

/* ── Who cards ───────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(18,67,112,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
}
.who-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(18,67,112,0.13), inset 0 1px 0 rgba(255,255,255,1);
}
.who-card h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); margin-bottom: 1.5rem; color: var(--sage-dark); }

/* ── FAQ ─────────────────────────────────────── */
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(18,67,112,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s, transform 0.35s var(--ease-out);
}
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.faq-item:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(18,67,112,0.1), inset 0 1px 0 rgba(255,255,255,1); }
.faq-item:hover::before { transform: scaleX(1); }
.faq-item.open {
  border-color: rgba(35,134,199,0.28);
  box-shadow: 0 14px 44px rgba(18,67,112,0.13), 0 0 0 1px rgba(35,134,199,0.1), inset 0 1px 0 rgba(255,255,255,1);
  transform: none;
}
.faq-item.open::before { transform: scaleX(1); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.4rem 1.75rem; text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  color: var(--sage-dark); cursor: pointer;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--sage-mid); }
.faq-item.open .faq-q { color: var(--sage-dark); }
.faq-icon {
  flex-shrink: 0; width: 30px; height: 30px;
  border: 1.5px solid rgba(35,134,199,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--sage-mid);
  background: rgba(35,134,199,0.06);
  transition: all 0.35s var(--ease-out);
}
.faq-item:hover .faq-icon {
  background: rgba(35,134,199,0.1);
  border-color: rgba(35,134,199,0.5);
}
.faq-item.open .faq-icon {
  background: var(--gold); border-color: var(--gold);
  color: white; transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(249,159,31,0.35);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.3s;
  color: var(--text-mid); font-size: 1rem; line-height: 1.85;
  padding: 0 1.75rem;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 1.75rem; }

/* ── Components list (Sanctuary) ─────────────── */
/* ── How It Works section ────────────────────── */
.section--how {
  background:
    radial-gradient(ellipse 75% 65% at 97% 0%,   rgba(249,159,31,0.11)  0%, transparent 52%),
    radial-gradient(ellipse 75% 65% at 3%  100%, rgba(35,134,199,0.13)  0%, transparent 52%),
    linear-gradient(160deg, #eaf3ff 0%, #d4e9f7 38%, #ddf0fa 60%, var(--cream-dark) 100%);
  position: relative;
  overflow: clip;
}
.section--how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(35,134,199,0.42) 38%, rgba(249,159,31,0.38) 64%, transparent 95%);
  pointer-events: none;
}
.section--how::after {
  content: '';
  position: absolute;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(35,134,199,0.08) 0%, transparent 70%);
  bottom: -190px; left: -140px;
  pointer-events: none;
}

.components-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.components-list::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(18,67,112,0.25),
    rgba(35,134,199,0.15),
    rgba(249,159,31,0.2),
    rgba(18,67,112,0.1));
  border-radius: 2px;
  z-index: 0;
}

.component-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.75rem;
  align-items: start;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(18,67,112,0.07), inset 0 1px 0 rgba(255,255,255,1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s;
}
.component-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
}
.component-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(18,67,112,0.13), inset 0 1px 0 rgba(255,255,255,1);
}

.component-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid rgba(249,159,31,0.35);
  box-shadow: 0 0 0 5px rgba(18,67,112,0.08), 0 4px 14px rgba(18,67,112,0.2);
  transition: box-shadow 0.35s, transform 0.35s;
}
.component-block:hover .component-num {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(249,159,31,0.12), 0 6px 18px rgba(18,67,112,0.25);
}

.component-block h3 {
  margin-bottom: 0.4rem;
  color: var(--sage-dark);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}
.component-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  color: var(--sage-mid);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.component-block p[style] { margin-top: 0 !important; }
.component-block .bullet-list li::before { background: var(--sage-mid); }
.component-block .testimonial {
  border-left-color: var(--gold);
  background: linear-gradient(135deg, rgba(249,159,31,0.06) 0%, rgba(18,67,112,0.04) 100%);
  margin-top: 1.5rem;
}
.component-block .testimonial p {
  color: var(--sage-dark);
  font-size: 1rem;
}

/* ── Investment card ─────────────────────────── */
.investment-card {
  background: var(--sage-dark); border-radius: var(--radius-lg);
  padding: 3rem; max-width: 600px; margin: 0 auto; text-align: center;
}
.investment-card__price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  color: var(--white); margin-bottom: 0.5rem;
}
.investment-card__note { color: var(--sage-light); font-size: 0.9rem; margin-bottom: 2rem; }
.investment-card__heading {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(253,250,247,0.55); font-weight: 600; margin-bottom: 1rem;
  font-family: var(--font-body);
}

/* ── Testimonial ─────────────────────────────── */
.testimonial {
  position: relative;
  padding: 2rem 2rem 1.75rem 2.25rem;
  border-radius: var(--radius-lg);
  margin-top: 1.75rem;
  background: linear-gradient(135deg, #e8f2fb 0%, #eef6ff 50%, #f5f0eb 100%);
  border: 1px solid rgba(35,134,199,0.15);
  box-shadow:
    0 6px 24px rgba(18,67,112,0.1),
    0 1px 4px rgba(18,67,112,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; left: 1rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  pointer-events: none;
}
.testimonial::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,159,31,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial p {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.1rem; color: var(--sage-dark);
  line-height: 1.65;
  position: relative; z-index: 1;
}

/* ── Testimonial band ────────────────────────── */
.section--testimonial-band {
  background:
    radial-gradient(ellipse 80% 70% at 5%  10%, rgba(35,134,199,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 95% 90%, rgba(249,159,31,0.11) 0%, transparent 55%),
    linear-gradient(155deg, var(--cream-dark) 0%, #cde5f6 40%, #d8edf9 60%, #f0e8de 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.section--testimonial-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, rgba(249,159,31,0.55) 38%, rgba(35,134,199,0.35) 62%, transparent 95%);
}
.testimonial-band__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-band__mark {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.28;
  margin-bottom: -1rem;
  user-select: none;
}
.testimonial-band__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  color: var(--sage-dark);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
.testimonial-band__divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
  border-radius: 2px;
  margin: 0 auto 1.25rem;
}
.testimonial-band__attr {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-mid);
}

/* ── Credentials (About) ─────────────────────── */
.credentials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
}
.credential-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(18,67,112,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.credential-group::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
}
.credential-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(18,67,112,0.13), inset 0 1px 0 rgba(255,255,255,1);
}
.credential-group h3 {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage-dark); font-weight: 700; font-family: var(--font-body);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}

/* ── Symptom grid ────────────────────────────── */
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(18,67,112,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}
.symptom-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
}
.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.65;
}
.symptom-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage-mid);
  opacity: 0.55;
  margin-top: 0.5em;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, #0a2540 0%, var(--sage-dark) 60%, #1a5a94 100%);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: clip;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(249,159,31,0.85) 25%, rgba(249,159,31,1) 52%, transparent 90%);
  pointer-events: none;
}
.footer h1,
.footer h2,
.footer h3,
.footer h4 { color: var(--white); }
.footer p  { color: rgba(255,255,255,0.72); }
.footer a  { color: rgba(255,255,255,0.72); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand img { height: 64px; margin-bottom: 1rem; }
.footer__brand > p:not(.footer__name) { display: none; }
.footer__name {
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
}
.footer__name span { color: rgba(255,255,255,0.45); font-weight: 400; }
.footer__col-head {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.9rem; transition: color 0.25s;
  display: flex; align-items: center; gap: 0.55rem;
}
.footer__links a svg { flex-shrink: 0; opacity: 0.65; }
.footer__links a:hover svg { opacity: 1; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 1.75rem; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  gap: 1rem;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { transition: color 0.25s; }
.footer__legal a:hover { color: var(--gold); }

/* Newsletter bar — full bleed */
.footer__newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem clamp(1.5rem, 6vw, 5rem);
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 3.5rem;
}
.footer__newsletter-text .footer__col-head {
  margin-bottom: 0.3rem;
  color: var(--gold);
  opacity: 0.9;
}
.footer__newsletter-text p {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 400px;
  max-width: 100%;
}
.footer__form .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.footer__input {
  width: 100%;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  box-sizing: border-box;
}
.footer__input:focus {
  border-color: rgba(249,159,31,0.55);
  background: rgba(255,255,255,0.12);
}
.footer__input::placeholder { color: rgba(255,255,255,0.32); }
.footer__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.74rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.6);
  margin: 0.25rem 0;
}
.footer__checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.footer__form__feedback {
  font-size: 0.8rem;
  margin-top: 0.15rem;
  min-height: 1.2em;
}
.footer__form__feedback--success { color: #7de0a8; }
.footer__form__feedback--error   { color: #f0a0a0; }

/* ── Stats ───────────────────────────────────── */
.section--stats {
  background: #0a2540;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}
.stat-item:hover { transform: none; box-shadow: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.stat-number::after {
  content: '';
  position: absolute;
  bottom: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.stat-number .stat-suffix { color: #fff; }
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin-top: 1.1rem;
  letter-spacing: 0.02em;
  max-width: 150px;
  margin-inline: auto;
}

/* ── Film grain overlay ──────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.038;
  background-image: 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");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grainAnim 0.4s steps(1) infinite;
  will-change: background-position;
}
@keyframes grainAnim {
  0%   { background-position:   0%   0%; }
  10%  { background-position: -5%  -10%; }
  20%  { background-position: -15%   5%; }
  30%  { background-position:  7%  -25%; }
  40%  { background-position: -5%   25%; }
  50%  { background-position: -15%  10%; }
  60%  { background-position:  15%   0%; }
  70%  { background-position:   0%  15%; }
  80%  { background-position:   3%  35%; }
  90%  { background-position: -10%  10%; }
  100% { background-position:   0%   0%; }
}

/* ── Service card 3D tilt setup ──────────────── */
.service-card { transform-style: preserve-3d; }

/* GSAP reveal: no initial hidden state — elements visible by default, JS animates from hidden */

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .problem__inner { grid-template-columns: 1fr; gap: 3rem; }
  .problem__sticky { position: static; }
  .two-col__inner { grid-template-columns: 1fr; gap: 3rem; }
  .two-col__left  { position: static; }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__img-wrap { max-width: 400px; margin: 0 auto; order: -1; }
  .hero__img-blob { aspect-ratio: 1; }
  .about-preview__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-preview__img { max-width: 480px; aspect-ratio: 3/2; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; }
  .who-grid      { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .symptom-grid  { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__newsletter { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__form { min-width: 0; width: 100%; }
}

/* ── Newsletter Standalone Section ─────────────── */
.newsletter-section {
  background: #0a2540;
  color: rgba(255,255,255,0.75);
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
  position: relative;
}
@media (max-width: 640px) {
  .newsletter-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.newsletter-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.newsletter-section__inner > .footer__newsletter-text {
  flex: 1 1 260px;
}
.newsletter-section__inner > .footer__form {
  flex: 0 0 400px;
  max-width: 100%;
}

/* ── Contact Page ──────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form__field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.contact-form__field input:not([type="checkbox"]),
.contact-form__field select,
.contact-form__field textarea {
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232386C7' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form__field input:not([type="checkbox"]):focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--sage-mid);
  box-shadow: 0 0 0 3px rgba(35,134,199,0.12);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.contact-form__field--checkbox {
  flex-direction: row;
}

.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
  line-height: 1.55;
}

.contact-form__checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--sage-mid);
  cursor: pointer;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.contact-form__feedback {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form__feedback--success {
  background: #edf7f0;
  color: #1a5c35;
  border: 1px solid #b3dfc5;
}

.contact-form__feedback--error {
  background: #fdf3f3;
  color: #7a2020;
  border: 1px solid #f0bebe;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem 2.25rem;
  box-shadow: 0 4px 24px rgba(18,67,112,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-mid), var(--gold));
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.contact-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-detail-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sage-mid);
}

.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color 0.2s;
}

.contact-detail-item a:hover { color: var(--sage-mid); }
.contact-detail-item small { color: var(--text-mid); font-size: 0.85rem; }

/* Steps row */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.step-item__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(35,134,199,0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--sage-dark);
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.step-item__connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(35,134,199,0.2), rgba(249,159,31,0.3));
  margin-top: 1.5rem;
}

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info-col { position: static; }
  .steps-row { flex-direction: column; align-items: center; gap: 2rem; }
  .step-item__connector { width: 1px; height: 40px; }
}

@media (max-width: 640px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 4rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__inner { padding-top: 2rem; padding-bottom: 2rem; min-height: 0; }
  .component-block { grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.5rem 1.25rem; }
  .component-num { width: 44px; height: 44px; font-size: 1.1rem; }
  .components-list::before { left: 21px; }
  .investment-card { padding: 2rem; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .page-hero { padding-top: calc(var(--nav-h) + 3rem); }
  .btn { padding: 0.75rem 1.6rem; font-size: 0.8rem; }
  .btn-sm { padding: 0.5rem 1.1rem; font-size: 0.68rem; }
}
