/* ═══════════════════════════ VARIABLES ════════════════════════════════════ */
:root {
  --bg:        #070c0b;
  --bg-deep:   #060908;
  --surface:   rgba(255,255,255,0.04);
  --line:      rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --text:      #ffffff;
  --muted:     #9ba09f;
  --muted-2:   #636967;
  --aqua:      #68f5df;
  --aqua-dim:  rgba(104,245,223,0.18);
  --aqua-glow: rgba(104,245,223,0.12);
  --max:       1240px;
  --ease:      cubic-bezier(0.22,1,0.36,1);
  --r-card:    18px;
}

/* ═══════════════════════════ RESET / BASE ══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--bg-deep); }

body {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 68% 12%, rgba(19,78,72,0.36), transparent 38rem),
    radial-gradient(ellipse at 76% 44%, rgba(28,95,88,0.22), transparent 42rem),
    radial-gradient(ellipse at 30% 85%, rgba(15,55,50,0.16), transparent 38rem),
    linear-gradient(180deg, #0d1413 0%, #080b0a 40%, #090b0b 100%);
}

body.is-locked { overflow: hidden; }

button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.1; }

/* ══════════════════════════ GRAIN OVERLAY ══════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ══════════════════════════ ANIMATED BG CANVAS ═════════════════════════════ */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.bg-glow--1 {
  width: 900px;
  height: 700px;
  top: -10%;
  right: -5%;
  background: radial-gradient(ellipse, rgba(22,85,80,0.28) 0%, transparent 70%);
  animation: glowDrift1 18s ease-in-out infinite alternate;
}

.bg-glow--2 {
  width: 700px;
  height: 600px;
  top: 30%;
  right: 10%;
  background: radial-gradient(ellipse, rgba(40,160,148,0.14) 0%, transparent 70%);
  animation: glowDrift2 22s ease-in-out infinite alternate;
}

.bg-glow--3 {
  width: 800px;
  height: 600px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(15,55,50,0.18) 0%, transparent 70%);
  animation: glowDrift3 16s ease-in-out infinite alternate;
}

@keyframes glowDrift1 {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: 0.8; }
  100% { transform: translate3d(-60px, 80px, 0) scale(1.1); opacity: 1; }
}
@keyframes glowDrift2 {
  0%   { transform: translate3d(0,0,0) scale(0.95); opacity: 0.6; }
  100% { transform: translate3d(50px,-60px,0) scale(1.08); opacity: 1; }
}
@keyframes glowDrift3 {
  0%   { transform: translateX(-50%) translate3d(0,0,0) scale(1); opacity: 0.7; }
  100% { transform: translateX(-50%) translate3d(40px,-30px,0) scale(1.12); opacity: 0.95; }
}

/* ══════════════════════════ SHELL (CONTAINER) ══════════════════════════════ */
.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* ══════════════════════════════ HEADER ═════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 18px 0;
  transition: background 400ms ease, backdrop-filter 400ms ease;
}

.site-header.is-scrolled {
  background: rgba(7,12,11,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}
.logo-dot { color: var(--aqua); }

.header-cta {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ═══════════════════════════════ BUTTONS ═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), background 250ms ease, opacity 250ms ease;
  -webkit-tap-highlight-color: transparent;
}

.btn span[aria-hidden] { font-size: 1.1em; transition: transform 280ms var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover span[aria-hidden] { transform: translate(2px,-2px); }

.btn--primary {
  background: var(--aqua);
  color: #03110e;
  box-shadow: 0 10px 36px rgba(104,245,223,0.2);
}
.btn--primary:hover {
  background: #88ffee;
  box-shadow: 0 14px 48px rgba(104,245,223,0.3);
}
.btn--primary:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: rgba(104,245,223,0.35);
  background: rgba(104,245,223,0.05);
}
.btn--ghost:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

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

/* Large size variant */
.btn--lg { min-height: 60px; padding: 0 28px; font-size: 1rem; }

/* ══════════════════════════ SHARED SECTION STYLES ══════════════════════════ */
.eyebrow {
  display: block;
  margin: 0 0 22px;
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow--center { text-align: center; }

.section-h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.08;
  color: var(--text);
}
.section-h2--center { text-align: center; }

.section-intro {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 580px;
}
.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.cost-note {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 0.78rem;
}
.cost-note--center { text-align: center; }

.microcopy {
  color: var(--muted-2);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

/* ════════════════════════════ SCROLL REVEAL ════════════════════════════════ */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms ease, transform 1000ms var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════ HERO ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 80px; /* header height */
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  min-height: calc(100svh - 80px);
  padding: 60px 0 56px;
}

/* Hero copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin: 0;
  color: var(--text);
}

.hero-accent {
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.05;
  color: var(--aqua);
}

.hero-desc {
  margin-top: 26px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 20px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
}

.trust-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.65);
  font-size: 0.73rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Hero image area */
.hero-image-wrap {
  position: relative;
  isolation: isolate;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.hero-chart-glow {
  position: absolute;
  width: 80%;
  height: 130%;
  right: -8%;
  top: -15%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 68% 52%,
    rgba(68,240,215,0.20) 0%,
    rgba(28,180,160,0.08) 35%,
    transparent 65%
  );
  filter: blur(55px);
  animation: chartGlowPulse 16s ease-in-out infinite alternate;
}

@keyframes chartGlowPulse {
  0%   { transform: translate3d(-3%,5%,0) scale(0.95); opacity: 0.55; }
  50%  { transform: translate3d(4%,-3%,0) scale(1.07); opacity: 0.9; }
  100% { transform: translate3d(-2%,2%,0) scale(1.02); opacity: 0.65; }
}

.hero-chart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

/* ── Chart draw-on animation ─────────────────────────────────────────────────
   Tune these three values to adjust feel:
   • drawChart duration (currently 12s) → speed of the draw
   • 87.5% keyframe             → when the pause starts (0.875 × 12s = 10.5s draw)
   • dotFade 93% keyframe       → how early dot fades before reset
   ───────────────────────────────────────────────────────────────────────── */
/* Tune: drawChart duration = speed · 87.5% = draw phase (87.5%×16s = 14s draw, 2s pause) */
.chart-draw-line {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawChart 16s linear infinite;
}

.chart-dot-group {
  animation: dotFade 16s linear infinite;
}

@keyframes drawChart {
  0%     { stroke-dashoffset: 1600; }
  87.5%  { stroke-dashoffset: 0; }
  100%   { stroke-dashoffset: 0; }
}

/* Dot fades in at start and out before loop reset */
@keyframes dotFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  84%  { opacity: 1; }
  93%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: 100%;
  height: min(78svh, 750px);
  min-height: 580px;
  object-fit: contain;
  object-position: center top;
  opacity: 0.93;
  filter: saturate(0.96) contrast(1.02);
  -webkit-mask-image:
    linear-gradient(90deg,
      transparent 0%,
      rgba(0,0,0,0.4) 6%,
      #000 18%,
      #000 82%,
      rgba(0,0,0,0.2) 92%,
      transparent 100%
    ),
    linear-gradient(180deg,
      #000 0%,
      #000 64%,
      rgba(0,0,0,0.5) 80%,
      rgba(0,0,0,0.06) 92%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg,
      transparent 0%,
      rgba(0,0,0,0.4) 6%,
      #000 18%,
      #000 82%,
      rgba(0,0,0,0.2) 92%,
      transparent 100%
    ),
    linear-gradient(180deg,
      #000 0%,
      #000 64%,
      rgba(0,0,0,0.5) 80%,
      rgba(0,0,0,0.06) 92%,
      transparent 100%
    );
  mask-composite: intersect;
}

/* ═══════════════════════ WO STEHST DU GERADE? ══════════════════════════════ */
.concerns {
  padding: 110px 0 120px;
  position: relative;
}

.concerns .section-h2 {
  margin-top: 0;
}

.concerns-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
}

.concern-item {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: rgba(255,255,255,0.025);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 250ms ease,
    background 250ms ease,
    box-shadow 250ms ease,
    transform 300ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.concern-item:hover {
  border-color: rgba(104,245,223,0.3);
  background: rgba(104,245,223,0.04);
  box-shadow: 0 0 0 1px rgba(104,245,223,0.08) inset,
              0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.concern-item:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}

.concern-item[aria-pressed="true"],
.concern-item.is-selected {
  border-color: rgba(104,245,223,0.45);
  background: rgba(104,245,223,0.07);
  box-shadow: 0 0 0 1px rgba(104,245,223,0.12) inset;
}

.concern-num {
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--aqua);
  opacity: 0.8;
  align-self: start;
  padding-top: 4px;
}

.concern-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.concern-body strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.3;
}

.concern-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.concern-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 1.4rem;
  line-height: 1;
  transition: color 250ms ease, transform 250ms ease;
  justify-self: end;
}

.concern-item:hover .concern-arrow,
.concern-item.is-selected .concern-arrow {
  color: var(--aqua);
  transform: translateX(2px);
}

/* ═══════════════════════ DAS ERWARTET DICH ═════════════════════════════════ */
.process {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
}

.process-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 400px;
  opacity: 0.55;
  pointer-events: none;
}
.process-deco--left  { left: 0; }
.process-deco--right { right: 0; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 72px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(104,245,223,0.2);
  border-radius: 50%;
  background: rgba(104,245,223,0.05);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.process-num {
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--aqua);
  opacity: 0.7;
  margin-bottom: 14px;
}

.process-step h3 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 240px;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 28px; /* align with icon center */
  padding-inline: 4px;
  flex-shrink: 0;
}

.process-connector span {
  display: block;
  width: 5px;
  height: 1px;
  background: rgba(104,245,223,0.28);
  border-radius: 1px;
}

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
}

.proof-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ═══════════════════════════ FORM / CONTACT ════════════════════════════════ */
.contact {
  padding: 110px 0 140px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy .eyebrow { margin-bottom: 24px; }

.contact-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.05;
  color: var(--text);
}

.contact-accent {
  margin-top: 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.1;
  color: var(--aqua);
}

.contact-desc {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 420px;
}

/* Form panel */
.form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10,13,13,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Concern wrap */
.form-concern-wrap {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.form-concern-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-concern-text {
  font-size: 0.82rem;
  color: var(--muted);
}
.form-concern-text strong {
  color: var(--aqua);
  font-weight: 600;
}

.concern-change-btn {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms ease;
  padding: 0;
}
.concern-change-btn:hover { color: var(--text); }
.concern-change-btn:focus-visible { outline: 2px solid var(--aqua); border-radius: 3px; }

.form-concern-picker-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.concern-pick-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.concern-pick-btn {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  text-align: left;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}
.concern-pick-btn:hover {
  border-color: rgba(104,245,223,0.35);
  background: rgba(104,245,223,0.05);
  color: var(--text);
}
.concern-pick-btn:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}

.field-optional {
  font-weight: 400;
  color: var(--muted-2);
}

.form-field input {
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 200ms ease, background 200ms ease;
  outline: none;
}

.form-field input::placeholder {
  color: rgba(255,255,255,0.28);
}

.form-field input:focus {
  border-color: rgba(104,245,223,0.55);
  background: rgba(104,245,223,0.03);
}
.form-field input:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 0;
  border-color: transparent;
}

.form-microcopy {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.73rem;
  margin-top: 4px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--muted-2);
  line-height: 1.55;
  margin-top: 4px;
}
.form-privacy svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.form-privacy a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms ease;
}
.form-privacy a:hover { color: var(--text); }

.form-error {
  font-size: 0.82rem;
  color: #ff9f9a;
  text-align: center;
  margin: 4px 0 0;
}

/* Form success */
.form-success {
  padding: 32px 0 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--aqua);
  color: #03110e;
  font-size: 1.3rem;
  font-weight: 700;
}

.form-success h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.form-success p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 360px;
}

/* ════════════════════════════ FOOTER ═══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0 max(28px, env(safe-area-inset-bottom));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner a {
  text-decoration: none;
  color: var(--muted-2);
  transition: color 200ms ease;
}
.footer-inner a:hover { color: var(--text); }
.footer-inner a:focus-visible { outline: 2px solid var(--aqua); border-radius: 2px; }

/* ═══════════════════════ MOBILE STICKY CTA ═════════════════════════════════ */
.mobile-sticky {
  position: fixed;
  z-index: 25;
  left: 14px;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: rgba(10,14,14,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 350ms ease, transform 450ms var(--ease);
  pointer-events: none;
}

.mobile-sticky.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-sticky .btn {
  font-size: 0.9rem;
  min-height: 48px;
}

/* ════════════════════════ DESKTOP BREAK (< 1024) ═══════════════════════════ */
@media (min-width: 768px) {
  .mobile-sticky { display: none; }
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-connector {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    height: 36px;
    justify-content: center;
  }

  .process-connector span {
    width: 1px;
    height: 6px;
    flex-shrink: 0;
  }

  .process-step {
    padding: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 44px 0 52px;
    gap: 40px;
  }

  .hero-copy {
    max-width: 100%;
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
    justify-self: center;
    width: min(100%, 480px);
    align-self: auto;
  }

  .hero-portrait {
    height: min(80vw, 480px);
    min-height: 0;
  }

  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .hero-accent { font-size: clamp(2rem, 9vw, 3.2rem); }
}

/* ════════════════════════ MOBILE (< 768px) ═════════════════════════════════ */
@media (max-width: 767px) {
  body {
    background:
      radial-gradient(ellipse at 54% 22%, rgba(22,90,84,0.32), transparent 24rem),
      radial-gradient(ellipse at 78% 54%, rgba(28,95,88,0.14), transparent 20rem),
      linear-gradient(180deg, #0d1413 0%, #080b0a 46%, #090b0b 100%);
  }

  .shell { width: min(calc(100% - 32px), var(--max)); }

  .site-header { padding: 14px 0; }

  .logo { font-size: 0.95rem; }
  .header-cta { font-size: 0.75rem; min-height: 40px; padding: 0 14px; }

  .hero {
    min-height: 100svh;
    padding-top: 68px;
  }

  .hero-grid {
    padding: 36px 0 44px;
    gap: 32px;
  }

  .hero h1 { font-size: clamp(2.6rem, 14vw, 3.6rem); }
  .hero-accent { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero-desc { font-size: 1rem; margin-top: 20px; }

  .hero-actions { margin-top: 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-row { gap: 5px 8px; }
  .trust-item { font-size: 0.7rem; }

  .proof-row { margin-top: 12px; }
  .proof-chip { font-size: 0.7rem; padding: 5px 10px; }

  .cost-note { font-size: 0.73rem; margin-top: 10px; }

  .hero-image-wrap {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero-portrait {
    height: clamp(300px, 88vw, 400px);
    min-height: 0;
  }

  /* Sections */
  .concerns, .process, .contact {
    padding: 88px 0 96px;
  }

  .section-h2 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .section-intro { font-size: 0.95rem; }

  .concerns-list { margin-top: 36px; gap: 8px; }

  .concern-item {
    grid-template-columns: 40px 1fr 22px;
    gap: 14px;
    padding: 18px 16px;
  }

  .concern-body strong { font-size: 0.98rem; }
  .concern-body p { font-size: 0.82rem; }

  .process-steps { margin-top: 52px; }

  .process-step { padding: 0 8px; }
  .process-step h3 { font-size: 1.05rem; }
  .process-step p { font-size: 0.84rem; max-width: 100%; }

  .proof-badges { gap: 14px; margin-top: 44px; }
  .proof-badges span { font-size: 0.8rem; }

  .contact-copy h2 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .contact-accent { font-size: clamp(1.3rem, 6.5vw, 1.75rem); }

  .form-panel { padding: 20px 16px; border-radius: 18px; }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-field input { height: 52px; font-size: 1rem; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-inner nav { gap: 14px; }
}

/* ═══════════════════════ REDUCED MOTION ════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero-chart-glow { animation: none; }
  .bg-glow { animation: none; }
  .chart-draw-line { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; animation: none !important; opacity: 1 !important; }
  .chart-dot-group { display: none !important; }
}

/* ═════════════════════ FOCUS / ACCESSIBILITY ═══════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) { outline: none; }
