/* ============================================================
   REFLEXIV — Main Stylesheet
   Warm Ivory editorial · Cormorant Garamond + DM Sans
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #fafaf8;
  color: #1a1825;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --ivory:        #fafaf8;
  --navy:         #1a1825;
  --purple:       #534AB7;
  --purple-light: #AFA9EC;
  --purple-deep:  #3d3487;
  --white:        #ffffff;
  --stone:        #f4f3f0;
  --muted:        #5a5770;
  --border:       rgba(26,24,37,0.08);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --max-width:       1200px;
  --section-pad:     120px;
  --nav-h:           120px;
  --radius:          2px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.5rem); }
h2 { font-size: clamp(2rem,   4vw,   3.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); }

p { font-size: 1rem; line-height: 1.85; color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
}

em { font-style: italic; color: var(--purple); }
.dark-section em { color: var(--purple-light); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: var(--section-pad) 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, transform 0.2s ease,
              box-shadow 0.25s ease;
}
.btn--primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn--primary:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(83,74,183,0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn--ghost:hover {
  background: var(--purple);
  color: var(--white);
}
.btn--ghost-light {
  background: transparent;
  color: var(--purple-light);
  border-color: rgba(175,169,236,0.45);
}
.btn--ghost-light:hover {
  background: rgba(175,169,236,0.12);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover {
  background: #2d2a3d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,24,37,0.2);
}
.btn--light {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--ivory);
  transform: translateY(-2px);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  inset-block-start: 0;
  left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(26,24,37,0.06);
}
.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img { height: 126px; width: auto; }
.nav__logo-text { display: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.65;
  transition: opacity 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width 0.3s ease;
}
.nav__links a:hover,
.nav__links a.active { opacity: 1; }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: 16px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 199;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--navy);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav__mobile-menu a:hover { background: rgba(83,74,183,0.06); }
.nav__mobile-menu .btn { margin-top: 16px; text-align: center; justify-content: center; }

/* ── HOME HERO ── */
/* ── HOME HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 64px) 0 100px; /* no horizontal padding — canvas spans full width */
  position: relative;
  overflow: hidden;
}

/* Full-hero canvas behind everything */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* Prevent canvas from rendering in the nav area on mobile */
  clip-path: inset(var(--nav-h) 0 0 0);
}

/* Raise direct hero children above the canvas */
.hero__logo,
.hero__inner,
.hero__scroll { position: relative; z-index: 1; }

.hero__logo {
  width: clamp(140px, 18vw, 220px);
  margin: 0 auto 32px;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 10px 44px rgba(83,74,183,0.40));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero__inner {
  padding: 0 48px;
  width: 100%;
}
.hero__title {
  max-width: 960px;
  margin: 0 auto 28px;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 6rem);
}
.hero__subtitle {
  max-width: 580px;
  margin: 0 auto 52px;
  font-size: 1.1rem;
  color: var(--muted);
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__ctas .btn { min-width: 200px; justify-content: center; }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--navy), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header__rule {
  width: 36px; height: 1px;
  background: var(--purple);
  margin-bottom: 20px;
}
.section-header--center .section-header__rule { margin-inline: auto; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; }
.services-overview .section-header p { max-width: none; }
.section-header--center p { margin-inline: auto; }

/* ── PROBLEM / DARK SECTION ── */
.problem {
  background: var(--navy);
}
.problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem__text { }
.problem__text h2 { color: var(--white); margin-bottom: 24px; }
.problem__text p { color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.problem__text p:last-of-type { margin-bottom: 36px; }

.problem__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stat {
  border-left: 2px solid var(--purple-light);
  padding-left: 24px;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── OUTCOMES ── */
.outcomes { background: var(--ivory); }
.outcomes__intro {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
}
.outcomes__intro p { font-size: 0.9375rem; color: var(--muted); line-height: 1.8; }
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.outcome-item {
  border-top: 2px solid var(--purple-light);
  padding-top: 28px;
}
.outcome-item p { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; }
.outcomes__funnel {
  width: 100%;
  height: 72px;
  margin-top: 40px;
}
.outcomes__funnel svg { width: 100%; height: 100%; }
.outcomes__thesis {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
}

/* ── SERVICES GRID (home) ── */
.services-overview { background: var(--stone); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(26,24,37,0.09); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--purple-light);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 24px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--navy);
}
.service-card__text {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.75;
}
.service-card__expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover .service-card__expand,
.service-card.expanded .service-card__expand {
  max-height: 320px;
  opacity: 1;
}
.service-card__bullets {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.service-card__bullets li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.service-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-light);
}
.service-card__expand .btn { width: 100%; justify-content: center; margin-bottom: 20px; }
.service-card__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 10px; }

/* ── FOUNDER TEASER (home) ── */
.founder-teaser { background: var(--ivory); }
.founder-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}
.founder-teaser__content {
  display: flex;
  flex-direction: column;
}
.founder-teaser__content .btn { margin-top: auto; align-self: flex-start; }
.founder-teaser__image-wrap { position: relative; }
.founder-teaser__img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #ede9f5 0%, #d4cee8 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.founder-teaser__img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder-teaser__img-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 55%; height: 55%;
  border: 1px solid var(--purple-light);
  border-radius: var(--radius);
  z-index: -1;
}
.founder-teaser__content .eyebrow { margin-bottom: 16px; }
.founder-teaser__content h2 { margin-bottom: 24px; }
.founder-teaser__content p { margin-bottom: 18px; }
.founder-standout {
  margin-top: 6px; /* preceding p adds 18px, so 18+6 = 24px total above */
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--purple);
  line-height: 1.7;
}
.founder-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 36px;
}
.founder-cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}
.founder-cred__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ── SOCIAL PROOF ── */
.social-proof { background: var(--stone); }

.testimonials-wrap { position: relative; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* Arrow nav — hidden on desktop */
.testimonials-nav {
  display: none;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--purple-light);
  font-weight: 300;
}
.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}
.testimonial-card__author { margin-top: 8px; }
.testimonial-card__name {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--navy);
}
.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 2px;
}

.trusted-by {
  margin-top: 72px;
  text-align: center;
}
.trusted-by__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.logo-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logo-marquee__track:hover { animation-play-state: paused; }
.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.logo-img:hover { opacity: 1; }
.logo-img[src*="kearney"]    { height: 28px; }
.logo-img[src*="BNY"]        { height: 26px; }
.logo-img[src*="investcorp"] { height: 26px; }
.logo-img[src*="meridianlink"] { margin-inline: -24px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 100px 48px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 720px; margin: 0 auto 40px; font-size: 1.05rem; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
.footer__brand-name {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  font-size: 0;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social-btn:hover { border-color: var(--purple-light); color: var(--purple-light); }
.footer__social-btn svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--purple-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero-wrap {
  padding: calc(var(--nav-h) + 88px) 48px 88px;
  text-align: center;
}
.page-hero {
  max-width: 780px;
  margin: 0 auto;
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── ABOUT — MISSION BAND ── */
/* ── ABOUT — HEADLINE BAND ── */
.about-headline {
  padding: 100px 0 88px;
  background: var(--navy);
}
.about-headline__inner h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-top: 20px;
}
.about-headline__inner h1 em { color: rgba(255,255,255,0.55); }
.eyebrow--light { color: rgba(255,255,255,0.45); }
.eyebrow--light::before { background: rgba(255,255,255,0.3); }

/* ── ABOUT — MISSION ── */
.about-mission {
  padding: 88px 0 100px;
}
.about-mission__lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(26,24,37,0.1);
}
.about-mission__body {
  margin: 0 0 28px;
}
.about-mission__body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 28px;
}
.about-mission__body p:last-child { margin-bottom: 0; }
.about-mission__bridge {
  margin: 0 0 28px;
  padding-left: 20px;
  border-left: 2px solid var(--purple);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink);
}
.about-mission__thesis {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink);
  padding-top: 28px;
  border-top: 1px solid rgba(26,24,37,0.1);
}
.about-mission__thesis .highlight,
.highlight {
  color: var(--purple);
  font-weight: 500;
}

/* ── ABOUT — FOUNDER ── */
.about-founder { padding: var(--section-pad) 0; }
.about-founder .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-founder__sticky { position: sticky; top: 112px; }
.about-founder__img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #ede9f5 0%, #d4cee8 100%);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-founder__img img { width: 100%; height: 100%; object-fit: cover; }
.about-founder__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.about-founder__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-founder__name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}
.about-founder__title {
  font-size: 0.8125rem;
  color: #999;
}
.about-founder__card-links {
  display: flex;
  gap: 8px;
}
.founder-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(26,24,37,0.15);
  border-radius: var(--radius);
  color: var(--navy);
  transition: border-color 0.2s, color 0.2s;
}
.founder-icon-btn:hover { border-color: var(--purple); color: var(--purple); }
.founder-icon-btn svg { width: 14px; height: 14px; fill: currentColor; }

.about-founder__content .eyebrow { margin-bottom: 16px; }
.about-founder__content h2 { margin-bottom: 28px; }
.about-founder__content p { margin-bottom: 20px; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 40px 0 40px;
  border-top: 1px solid var(--border);
}
.cred-card {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.cred-card:first-child { padding-left: 0; }
.cred-card:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.cred-card:not(:first-child):not(:last-child) { padding-left: 28px; }
.cred-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--purple);
}
.cred-card__icon svg {
  width: 100%;
  height: 100%;
}
.cred-card__label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.cred-card__text {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SERVICES PAGE ── */
p.services-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.service-detail-section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.service-detail-section:last-of-type { border-bottom: 1px solid var(--border); }
.service-detail-section.alt { background: var(--stone); }

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.service-detail__meta .eyebrow { margin-bottom: 16px; }
.service-detail__meta h3 { margin-bottom: 16px; }
.service-detail__meta p { color: var(--muted); }

.feature-list {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-detail-section.alt .feature-item { background: var(--ivory); }
.feature-item:hover {
  border-color: rgba(83,74,183,0.2);
  box-shadow: 0 4px 20px rgba(83,74,183,0.06);
}
.feature-item__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  margin-top: 8px;
  flex-shrink: 0;
}
.feature-item__text {
  font-size: 0.9375rem;
  color: #3a3750;
  line-height: 1.65;
}

/* ── CONTACT PAGE ── */
/* ── CONTACT HERO ── */
.contact-hero {
  padding: calc(120px + 88px) 0 72px;
  border-bottom: 1px solid var(--border);
}
.contact-hero__intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.contact-hero__intro .eyebrow { justify-content: center; }
.contact-hero__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 0;
}

.contact-split {
  padding: var(--section-pad) 0;
}
.contact-split .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h3 { margin-bottom: 16px; font-size: 2rem; }
.contact-info > p { margin-bottom: 40px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--navy);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--purple); }
.contact-link__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(83,74,183,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 52px 48px;
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap .form-lead { font-size: 0.9rem; color: var(--muted); margin-bottom: 36px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #777;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--ivory);
  border: 1px solid rgba(26,24,37,0.12);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(83,74,183,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group 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='%231a1825' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-submit { margin-top: 4px; width: 100%; justify-content: center; font-size: 0.9rem; padding: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success h4 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 12px; color: var(--navy); }
.form-success p { color: var(--muted); }

/* Calendly Section */
.calendly-section {
  background: var(--stone);
  padding: var(--section-pad) 0;
}
.calendly-section .section-header { text-align: center; margin-bottom: 48px; }
.calendly-section .section-header__rule { margin-inline: auto; }
.calendly-inline-widget {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.credentials-grid .cred-card:nth-child(1) { transition-delay: 0.1s; }
.credentials-grid .cred-card:nth-child(2) { transition-delay: 0.25s; }
.credentials-grid .cred-card:nth-child(3) { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }
  .container { padding: 0 36px; }
  .nav__container { padding: 0 36px; }

  .problem .container,
  .founder-teaser .container,
  .about-founder .container,
  .service-detail__grid,
  .contact-split .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:last-child { grid-column: 1 / -1; max-width: 480px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-founder__sticky { position: static; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; --nav-h: 68px; }
  .container { padding: 0 24px; }
  .nav__container { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo-img { height: 52px; }

  .hero { padding: calc(var(--nav-h) + 48px) 0 80px; }
  .hero__inner { padding: 0 24px; }
  .hero__title { font-size: clamp(2.5rem, 7vw, 3.5rem); }
  .hero__ctas { flex-direction: column; align-items: center; }

  .page-hero-wrap { padding: calc(var(--nav-h) + 56px) 24px 56px; }

  .outcomes__grid { grid-template-columns: 1fr; gap: 0; }
  .outcome-item { padding: 24px 0; border-top: 1px solid rgba(26,24,37,0.08); border-top-width: 1px; }
  .outcomes__funnel { height: 48px; }
  .outcomes__thesis { font-size: 1.2rem; }

  /* Testimonials carousel */
  .testimonials-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .testimonials-grid .testimonial-card { display: none; }
  .testimonials-grid .testimonial-card.active { display: flex; }
  .testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
  }
  .testimonials-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .testimonials-btn:hover { border-color: var(--purple); color: var(--purple); }
  .testimonials-btn svg { width: 18px; height: 18px; }
  .testimonials-counter {
    font-size: 0.8125rem;
    color: var(--muted);
    font-family: var(--font-body);
    min-width: 36px;
    text-align: center;
  }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child { max-width: 100%; grid-column: auto; }

  .credentials-grid { grid-template-columns: 1fr; border-top: none; }
  .cred-card { padding: 20px 0; border-right: none; border-top: 1px solid var(--border); }
  .cred-card:last-child { padding-right: 0; padding-left: 0; }

  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .contact-form-wrap { padding: 36px 24px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

  .cta-banner { padding: 72px 24px; }
  .problem__stats { gap: 28px; }
}
