/* ============================================================
   Michael Friedl · Finanzberatung mit tecis — Stylesheet
   Palette: Navy + tecis-Blau · Serif-Headlines
   ============================================================ */

:root {
  --navy:        #0A2540;
  --navy-700:    #0E3054;
  --navy-600:    #164073;
  --tecis:       #0A5DA5;   /* tecis-nahes Blau (Accent/Aktion) */
  --tecis-600:   #084B86;
  --tecis-300:   #6FA8D6;
  --tecis-050:   #EAF2FA;
  --ink:         #0A2540;
  --slate:       #4A5A6B;
  --slate-300:   #8496a6;
  --line:        #E4E9EF;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FC;
  --bg-softer:   #EEF3F9;
  --white:       #FFFFFF;
  --green:       #21B36A;
  --gold:        #C6A15B;
  --blue:        var(--tecis);

  --radius:      16px;
  --radius-sm:   11px;
  --radius-lg:   24px;
  --shadow-sm:   0 1px 2px rgba(10,37,64,.06), 0 2px 6px rgba(10,37,64,.05);
  --shadow:      0 10px 30px -12px rgba(10,37,64,.20);
  --shadow-lg:   0 30px 60px -20px rgba(10,37,64,.30);
  --container:   1160px;
  --ease:        cubic-bezier(.22,.61,.36,1);

  --font-serif:  "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:   "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .85em; background: rgba(10,93,165,.1); padding: 1px 6px; border-radius: 5px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 2000; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15.5px;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--tecis-300); outline-offset: 2px; }
.btn-primary { --btn-bg: var(--tecis); }
.btn-primary:hover { background: var(--tecis-600); }
.btn-gold { --btn-bg: #fff; --btn-fg: var(--navy); }
.btn-gold:hover { background: #EAF2FA; }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--navy); border-color: rgba(10,37,64,.22); }
.btn-ghost:hover { background: rgba(10,37,64,.04); box-shadow: none; transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16.5px; }
.btn-sm { padding: 10px 17px; font-size: 14.5px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.section-navy .btn-ghost, .final-cta .btn-ghost, .booking .btn-ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.4); }
.section-navy .btn-ghost:hover, .final-cta .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(10,37,64,.4); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: var(--navy); color: #fff; font-family: var(--font-serif); font-weight: 700; font-size: 16px;
  letter-spacing: .5px; flex: none; border: 1px solid var(--tecis-600);
}
.brand-mark.sm { width: 30px; height: 30px; font-size: 13px; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-serif); font-size: 17px; color: var(--ink); }
.brand-text em { font-style: normal; font-size: 12px; color: var(--slate); letter-spacing: .02em; }
.brand-divider { width: 1px; height: 30px; background: var(--line); margin: 0 2px; }
.brand-tecis { display: flex; flex-direction: column; line-height: 1.1; }
.tecis-wordmark { font-family: var(--font-sans); font-weight: 700; font-size: 19px; letter-spacing: .5px; color: var(--tecis); }
.tecis-role { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-300); }
.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--slate); transition: color .2s; }
.main-nav a:hover { color: var(--navy); }
.header-cta { margin-left: 4px; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; margin: 4px 0; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 10px 24px 22px; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav a { padding: 12px 4px; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 12px; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--tecis); margin-bottom: 16px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tecis); box-shadow: 0 0 0 4px rgba(10,93,165,.18); }
.eyebrow-light { color: #9EC7EC; }
.eyebrow-dark { color: var(--tecis); }

.section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-sub { margin-top: 16px; color: var(--slate); font-size: 18px; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #EAF1F8; }
.section-navy h2 { color: #fff; }
.section-navy .section-head { color: #EAF1F8; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 76px 0 84px;
  background: radial-gradient(1000px 500px at 88% -10%, rgba(10,93,165,.12), transparent 60%),
              radial-gradient(700px 400px at -5% 10%, rgba(10,93,165,.07), transparent 55%),
              linear-gradient(180deg, #FBFCFE, #F5F8FC); }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(38px, 5.4vw, 60px); font-weight: 600; letter-spacing: -.02em; }
.hero-copy h1 .accent { color: var(--tecis); font-style: italic; }
.hero .lead { margin-top: 22px; font-size: clamp(17px, 1.6vw, 20px); color: var(--slate); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-size: 15px; color: var(--navy); font-weight: 500; }
.ht-icon { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--tecis-050); color: var(--tecis); flex: none; }
.ht-icon svg { width: 15px; height: 15px; }

.hero-card { position: relative; }
.hero-portrait { position: relative; aspect-ratio: 4/4.4; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-600) 100%); box-shadow: var(--shadow-lg); display: grid; place-items: center; }
.hero-portrait img, .about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; z-index: 1; }
.hero-portrait::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; box-shadow: inset 0 -80px 90px -40px rgba(10,37,64,.5); }
.hero-portrait.is-empty::after { display: none; }
.portrait-fallback { display: none; position: relative; z-index: 1; color: rgba(255,255,255,.65); font-size: 13px; text-align: center; line-height: 1.6; letter-spacing: .02em; }
.portrait-fallback code { background: rgba(255,255,255,.14); color: #fff; }
.hero-portrait.is-empty .portrait-fallback, .about-photo.is-empty .portrait-fallback { display: block; }
.hero-badge { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px); padding: 8px 15px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--navy); box-shadow: var(--shadow); white-space: nowrap; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(33,179,106,.25); }
.hero-quote { position: absolute; left: -8px; right: -8px; bottom: -26px; z-index: 3; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; font-family: var(--font-serif); font-size: 15.5px; font-style: italic; color: var(--navy); box-shadow: var(--shadow); }
.hero-quote span { display: block; margin-top: 10px; font-family: var(--font-sans); font-style: normal; font-size: 13px; color: var(--slate); font-weight: 600; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy); color: #cfe0f0; padding: 26px 0; }
.trust-strip p { text-align: center; font-size: 14px; letter-spacing: .02em; margin-bottom: 14px; }
.trust-strip strong { color: #fff; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.trust-logos span { font-size: 13.5px; font-weight: 600; letter-spacing: .03em; color: #EAF1F8; padding: 7px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; }

/* ---------- Section head variants ---------- */
.section-head-left { text-align: left; margin: 0 0 44px; max-width: 660px; }

/* ---------- Ziele (editorial, ohne Icon-Kacheln) ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.goals-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px 44px; }
.goal { padding-top: 26px; border-top: 2px solid var(--tecis); }
.goal-num { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--tecis); letter-spacing: .08em; }
.goal h3 { font-size: 22px; margin: 14px 0 10px; }
.goal p { color: var(--slate); font-size: 15.5px; }

/* ---------- Promise ---------- */
.promise { max-width: 800px; margin: 0 auto; text-align: center; }
.promise h2 { font-size: clamp(30px, 4vw, 46px); color: #fff; }
.promise-lead { margin: 22px auto 0; font-size: 19px; color: #C9D8E8; max-width: 640px; }
.promise-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-top: 40px; text-align: left; max-width: 660px; margin-inline: auto; }
.promise-points div { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: #E7EEF6; font-weight: 500; }
.promise-points svg { width: 22px; height: 22px; flex: none; color: var(--tecis-300); margin-top: 1px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7e2ee; }
.service-icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--bg-softer); color: var(--tecis); margin-bottom: 18px; }
.service-icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 20px; margin-bottom: 9px; }
.service p { color: var(--slate); font-size: 15px; }
.service-cta { background: linear-gradient(160deg, var(--navy), var(--navy-600)); color: #fff; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; }
.service-cta h3 { color: #fff; }
.service-cta p { color: #C9D8E8; }
.service-cta .btn { margin-top: 4px; }

/* ---------- Leistungen Split (asymmetrisch) ---------- */
.services-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.services-intro { position: sticky; top: 100px; }
.services-intro h2 { font-size: clamp(26px, 3vw, 38px); margin: 6px 0 16px; }
.services-intro p { color: var(--slate); font-size: 16.5px; margin-bottom: 26px; }
.services-list { display: grid; gap: 2px; }
.svc-row { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 22px 6px; border-top: 1px solid var(--line); transition: background .2s; border-radius: 10px; }
.services-list .svc-row:first-child { border-top: 0; }
.svc-row:hover { background: var(--bg-soft); }
.svc-ic { width: 38px; height: 38px; color: var(--tecis); flex: none; }
.svc-ic svg { width: 30px; height: 30px; }
.svc-tx h3 { font-size: 19px; margin-bottom: 6px; }
.svc-tx p { color: var(--slate); font-size: 15px; }

/* ---------- About media (Video-Herzstück) ---------- */
.about-media { position: relative; margin: 0; }
.play-btn { position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.94); color: var(--tecis); display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .2s var(--ease), background .2s; z-index: 6; }
.play-btn:hover { transform: scale(1.07); background: #fff; }
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.play-btn:focus-visible { outline: 3px solid var(--tecis-300); outline-offset: 3px; }
.media-cap { position: absolute; left: 16px; bottom: 16px; z-index: 6; background: rgba(10,37,64,.74); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(4px); }
.about-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 7; border-radius: var(--radius-lg); background: #000; }

/* ---------- Signatur ---------- */
.signature { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 30px; color: var(--navy); margin: 2px 0 22px; opacity: .92; transform: rotate(-3deg); transform-origin: left center; width: max-content; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; list-style: none; padding: 0; margin: 0; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); }
.step-num { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--tecis); color: #fff; font-family: var(--font-serif); font-weight: 700; font-size: 20px; margin-bottom: 18px; }
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { color: var(--slate); font-size: 14.5px; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; aspect-ratio: 4/4.6; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, var(--navy), var(--navy-600)); display: grid; place-items: center; box-shadow: var(--shadow); }
.about-copy h2 { font-size: clamp(28px, 3.4vw, 40px); margin-block: 10px 20px; }
.about-copy p { color: var(--slate); font-size: 16.5px; margin-bottom: 16px; }
.about-copy p strong { color: var(--navy); }
.about-project { margin: 24px 0 4px; padding: 20px 22px; background: var(--bg-soft);
  border-left: 3px solid var(--tecis); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.ap-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--tecis); margin-bottom: 8px; }
.about-project p { color: var(--slate); font-size: 15.5px; margin-bottom: 0; }
.about-project > a { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: 15px; font-weight: 600; color: var(--tecis); transition: gap .2s var(--ease); }
.about-project > a:hover { gap: 11px; }
.about-project > a:focus-visible { outline: 2px solid var(--tecis-300); outline-offset: 3px; border-radius: 4px; }
.about-project svg { width: 16px; height: 16px; flex: none; }

.about-creds { margin: 22px 0 30px; display: grid; gap: 12px; }
.about-creds li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: var(--navy); font-weight: 500; }
.about-creds svg { width: 21px; height: 21px; flex: none; color: var(--green); margin-top: 2px; }
.about-creds em { font-style: italic; color: var(--slate-300); font-weight: 400; }

/* ---------- Fit (nur positiv) ---------- */
.fit .section-head { color: #EAF1F8; }
.fit-grid-single { max-width: 780px; margin-inline: auto; }
.fit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.fit-list li { position: relative; padding-left: 34px; color: #D6E2EE; font-size: 15.5px; }
.fit-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700; background: rgba(33,179,106,.18); color: #63E6A0; }

/* ---------- Booking ---------- */
.booking { max-width: 900px; margin-inline: auto; }
.booking-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; border: 1px solid var(--line); }
.booking-embed iframe { width: 100%; min-height: 720px; border: 0; display: block; }
.booking-placeholder { padding: 54px 32px; text-align: center; }
.bp-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--tecis-050); color: var(--tecis); display: grid; place-items: center; margin: 0 auto 20px; }
.bp-icon svg { width: 32px; height: 32px; }
.booking-placeholder h3 { font-size: 23px; margin-bottom: 10px; }
.booking-placeholder p { color: var(--slate); font-size: 16px; max-width: 520px; margin: 0 auto 8px; }
.booking-hint { font-size: 13.5px; color: var(--slate-300); margin-top: 8px; }
.booking-fallback-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 600; font-size: 17px; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.chev { width: 12px; height: 12px; border-right: 2px solid var(--slate); border-bottom: 2px solid var(--slate); transform: rotate(45deg); transition: transform .25s var(--ease); flex: none; }
.faq details[open] .chev { transform: rotate(-135deg); }
.faq details p { padding: 0 22px 22px; color: var(--slate); font-size: 15.5px; }
.faq details p a { color: var(--tecis); text-decoration: underline; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 96px 0; background: linear-gradient(160deg, var(--navy) 0%, #071B30 100%); color: #fff; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -10%, rgba(10,93,165,.28), transparent 60%); }
.final-cta-inner { position: relative; max-width: 680px; margin-inline: auto; text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); }
.final-cta p { color: #C9D8E8; font-size: 18px; margin-top: 16px; }
.final-cta .btn { margin-top: 30px; }
.final-cta-note { font-size: 14px; color: #9fb2c4; margin-top: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: #071B30; color: #A9BED2; padding: 64px 0 26px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text em { color: #8CA3B8; }
.footer-brand p { margin-top: 16px; font-size: 14.5px; max-width: 300px; }
.social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.social a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; font-size: 13.5px; font-weight: 500; color: #A9BED2; transition: color .2s, border-color .2s, background .2s; }
.social a:hover { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.social a:focus-visible { outline: 2px solid var(--tecis-300); outline-offset: 2px; }
.social svg { width: 17px; height: 17px; flex: none; }

.footer-col h4 { font-family: var(--font-sans); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #7f97ad; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: #A9BED2; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #7f97ad; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   FUNNEL MODAL
   ============================================================ */
.funnel-overlay { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.funnel-backdrop { position: absolute; inset: 0; background: rgba(7,20,35,.62); backdrop-filter: blur(4px); animation: fadeIn .25s var(--ease); }
.funnel-dialog { position: relative; width: 100%; max-width: 560px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px 30px 28px; max-height: calc(100dvh - 40px); overflow-y: auto; animation: popIn .32s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .funnel-backdrop, .funnel-dialog { animation: none; } }

.funnel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.funnel-brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; color: var(--navy); }
.funnel-close { background: var(--bg-soft); border: 0; width: 38px; height: 38px; border-radius: 10px; cursor: pointer; color: var(--slate); display: grid; place-items: center; transition: background .2s, color .2s; }
.funnel-close:hover { background: var(--bg-softer); color: var(--navy); }
.funnel-close svg { width: 18px; height: 18px; }

.funnel-progress { height: 7px; background: var(--bg-softer); border-radius: 999px; overflow: hidden; }
.funnel-progress-bar { height: 100%; width: 16.66%; background: linear-gradient(90deg, var(--navy), var(--tecis)); border-radius: 999px; transition: width .4s var(--ease); }
.funnel-step-label { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--tecis); margin: 14px 0 4px; }

.funnel-body { min-height: 240px; padding-top: 6px; }
.funnel-q { font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.2; }
.funnel-help { font-size: 14.5px; color: var(--slate); margin-bottom: 20px; }

.funnel-options { display: grid; gap: 11px; }
.funnel-option { display: flex; align-items: center; gap: 14px; text-align: left; width: 100%; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; font-size: 16px; font-weight: 500; color: var(--navy); cursor: pointer; transition: border-color .18s, background .18s, transform .12s; }
.funnel-option:hover { border-color: var(--tecis); background: #F5F9FE; }
.funnel-option:focus-visible { outline: 3px solid var(--tecis-300); outline-offset: 2px; }
.funnel-option.selected { border-color: var(--tecis); background: var(--tecis-050); }
.funnel-option .opt-label { flex: 1; }
.funnel-option .opt-check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex: none; display: grid; place-items: center; transition: border-color .18s, background .18s; }
.funnel-option.selected .opt-check { border-color: var(--tecis); background: var(--tecis); }
.funnel-option.selected .opt-check::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; }

.funnel-fields { display: grid; gap: 15px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 16px; font-family: var(--font-sans); color: var(--ink); transition: border-color .18s, box-shadow .18s; }
.field input:focus { outline: none; border-color: var(--tecis); box-shadow: 0 0 0 3px rgba(10,93,165,.15); }
.field input.invalid { border-color: #E0483B; box-shadow: 0 0 0 3px rgba(224,72,59,.14); }
.field .err { display: none; color: #C43325; font-size: 13px; margin-top: 5px; }
.field.show-err .err { display: block; }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; color: var(--slate); line-height: 1.5; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--tecis); }
.consent a { color: var(--tecis); text-decoration: underline; }

.funnel-summary { background: var(--bg-soft); border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; font-size: 13.5px; color: var(--slate); }
.funnel-summary b { color: var(--navy); font-weight: 600; }

.funnel-nav { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.funnel-nav-spacer { flex: 1; }
.funnel-nav .btn { min-width: 120px; }

.funnel-success { text-align: center; padding: 20px 6px 8px; }
.success-check { width: 74px; height: 74px; border-radius: 50%; background: rgba(33,179,106,.12); display: grid; place-items: center; margin: 0 auto 22px; animation: popIn .4s var(--ease); }
.success-check svg { width: 38px; height: 38px; color: var(--green); }
.funnel-success h3 { font-size: 26px; color: var(--navy); margin-bottom: 12px; }
.funnel-success p { color: var(--slate); font-size: 16px; max-width: 400px; margin: 0 auto 8px; }
.funnel-success-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-card { max-width: 420px; margin-inline: auto; width: 100%; }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about-media { max-width: 380px; margin-inline: auto; width: 100%; }
  .cards-3, .services-grid, .steps, .goals-row { grid-template-columns: 1fr 1fr; }
  .services-split { grid-template-columns: 1fr; gap: 36px; }
  .services-intro { position: static; }
}
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav[data-open] { display: flex; }
  .brand-divider, .brand-tecis { display: none; }
}
@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .hero { padding: 44px 0 70px; }
  .cards-3, .services-grid, .steps, .promise-points, .footer-inner, .fit-list, .goals-row { grid-template-columns: 1fr; }
  .signature { font-size: 26px; }
  .hero-quote { position: static; margin-top: 30px; left: 0; right: 0; }
  .funnel-dialog { padding: 22px 20px 24px; border-radius: 18px; }
  .funnel-q { font-size: 21px; }
  .footer-bottom { flex-direction: column; }
}
