:root {
  --bg: #f0f4fc;
  --surface: #ffffff;
  --surface-soft: #e8f0fa;
  --ink: #1b1464;
  --ink-muted: #3a4a9e;
  --ink-faint: #8b96d4;
  --primary: #00A1E9;
  --primary-strong: #002984;
  --primary-dark: #1b1464;
  --accent: #e8721a;
  --accent-soft: #fff4ec;
  --line: #c5d3f0;
  --hero-bg: #1b1464;
  --shadow-sm: 0 2px 8px rgba(27, 20, 100, 0.06);
  --shadow: 0 8px 32px rgba(27, 20, 100, 0.09);
  --shadow-lg: 0 20px 48px rgba(27, 20, 100, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
body > nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 20, 100, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  line-height: 0;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .nav-logo img {
    height: 28px;
    max-width: min(200px, 52vw);
    object-fit: contain;
    object-position: left center;
  }
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 999px;
  flex: 0 0 auto;
}

/* ── SHELL ── */
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 80px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #00A1E9, #002984);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 161, 233, 0.36);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0093d4, #001f6b);
  box-shadow: 0 10px 28px rgba(0, 161, 233, 0.44);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 161, 233, 0.18);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(27, 20, 100, 0.28);
}

.btn-dark:hover { background: #1a1870; }

/* ── HERO ── */
.hero {
  background: var(--hero-bg);
  border-radius: 0 0 32px 32px;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(0, 161, 233, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 41, 132, 0.22) 0%, transparent 55%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 161, 233, 0.14);
  border: 1px solid rgba(0, 161, 233, 0.3);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  max-width: 15ch;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.68);
  max-width: 60ch;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.hero-price-note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.hero-price-note strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* ── SECTION BASE ── */
section.section {
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line);
}

section.section:last-of-type { border-bottom: none; }

.section-eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 60ch;
  line-height: 1.65;
}

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.problem-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.problem-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.problem-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.problem-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

.problem-item p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.quote-box {
  margin-top: 32px;
  background: linear-gradient(135deg, #1b1464 0%, #002984 100%);
  border-radius: var(--radius);
  padding: 28px 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  line-height: 1.6;
  position: relative;
}

.quote-box::before {
  content: "\201C";
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  font-style: normal;
  color: var(--primary);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
  opacity: 0.7;
}

.quote-box p { padding-left: 12px; }

/* ── PROCESS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  position: relative;
}

.steps-grid::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  opacity: 0.3;
  pointer-events: none;
}

.step {
  padding: 0 16px;
  position: relative;
  text-align: center;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(27, 20, 100, 0.2);
}

.step:first-child .step-num { background: var(--primary); }

.step strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}

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

/* ── REQUIREMENTS TOOL CTA ── */
.tool-section {
  background: linear-gradient(135deg, #1b1464 0%, #002984 100%);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 64px);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tool-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(0, 161, 233, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 90%, rgba(0, 41, 132, 0.2) 0%, transparent 55%);
}

.tool-section .section-eyebrow {
  color: rgba(0, 161, 233, 0.9);
}

.tool-section .section-headline {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
}

.tool-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.tool-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.tool-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.tool-cta-note {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.service-card.featured {
  background: var(--ink);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card.featured .service-tag {
  color: rgba(0, 161, 233, 0.9);
}

.service-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}

.service-card.featured .service-title { color: #fff; }

.service-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-strong);
  margin-bottom: 6px;
}

.service-card.featured .service-price { color: var(--primary); }

.service-desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.service-card.featured .service-desc { color: rgba(255, 255, 255, 0.55); }

.service-features {
  list-style: none;
  display: grid;
  gap: 9px;
  flex: 1;
}

.service-features li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  align-items: flex-start;
}

.service-card.featured .service-features li { color: rgba(255, 255, 255, 0.72); }

.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
  margin-top: 0.55em;
}

.service-dsgvo {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.featured .service-dsgvo {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(0, 161, 233, 0.8);
}

.featured-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ── TECH SLIDER ── */
.tech-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-slider-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: techScroll 32s linear infinite;
}

.tech-slider-wrap:hover .tech-slider-track {
  animation-play-state: paused;
}

.tech-slide {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 140px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  flex: 0 0 auto;
}

.tech-slide:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.tech-slide-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tech-slide-logo-text {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00A1E9, #002984);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tech-slide-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

.tech-slide-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.tech-slide-eu {
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 600;
}

@keyframes techScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── CASE STUDIES ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary-dark);
  background: rgba(0, 161, 233, 0.1);
  border: 1px solid rgba(0, 161, 233, 0.2);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 14px;
}

.case-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 18px;
}

.case-section {
  margin-bottom: 12px;
}

.case-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 5px;
}

.case-section p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.case-metrics {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 90px;
  background: linear-gradient(135deg, rgba(0, 161, 233, 0.08), rgba(0, 161, 233, 0.04));
  border: 1px solid rgba(0, 161, 233, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.metric-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.metric-label {
  font-size: 0.76rem;
  color: var(--ink-muted);
  margin-top: 5px;
  line-height: 1.3;
}

/* ── TRUST SECTION ── */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.logo-placeholder {
  background: var(--surface);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-faint);
  height: 52px;
  display: flex;
  align-items: center;
}

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

.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  gap: 10px;
  align-items: center;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-soft);
  border: 2px solid var(--line);
  flex: 0 0 auto;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.author-role {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 161, 233, 0.08);
  border: 1px solid rgba(0, 161, 233, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  transition: background 0.2s;
}

.trust-badge:hover { background: rgba(0, 161, 233, 0.15); }

/* ── LEAD FORM ── */
.lead-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.lead-side h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.lead-side ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.lead-side li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  align-items: flex-start;
}

.lead-side li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex: 0 0 auto;
}

.lead-form-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.lead-form-box h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

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

.field { display: grid; gap: 6px; }

.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  padding: 11px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}

.field textarea { min-height: 100px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 161, 233, 0.14);
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.consent-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--primary);
  cursor: pointer;
}

.consent-row label {
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.5;
  cursor: pointer;
}

.consent-row a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(0, 161, 233, 0.4);
}

.form-actions {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-divider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-divider-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.form-divider-text {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  line-height: 1.5;
}

.form-status {
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status.success { color: var(--primary-dark); }
.form-status.error { color: #b91c1c; }

/* ── FORM SUCCESS STATE ── */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 32px;
  gap: 16px;
  animation: fadeUp 0.4s ease-out both;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 161, 233, 0.35);
}

.form-success-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.form-success-msg {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}

.form-success-cta {
  margin-top: 4px;
  min-width: 220px;
  justify-content: center;
}

.form-success-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin: 0;
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #1b1464 0%, #002984 100%);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(0, 161, 233, 0.22) 0%, transparent 65%);
}

.final-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.58);
  max-width: 50ch;
  font-size: 1rem;
}

/* ── FOOTER ── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.footer-logo {
  height: 36px;
  width: auto;
  display: block;
  max-width: min(260px, 100%);
}

.footer-tagline {
  font-size: 0.84rem;
  color: var(--ink-muted);
  margin-top: 10px;
  max-width: 38ch;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-copy {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-copy span {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  margin: 36px 0 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child { border-right: none; }

.stat-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.4;
}


@media (max-width: 640px) {
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:last-child { border-bottom: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lead-wrap { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .shell { width: min(1180px, calc(100% - 32px)); }
  .hero { border-radius: 0 0 20px 20px; padding: 44px 24px 48px; }
  .hero h1 { font-size: 2.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .final-cta { text-align: center; justify-content: center; }
  .nav-inner { width: calc(100% - 32px); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.5s ease-out both; }
.hero h1 { animation: fadeUp 0.6s 0.1s ease-out both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease-out both; }
.hero-actions { animation: fadeUp 0.6s 0.3s ease-out both; }
.hero-price-note { animation: fadeUp 0.6s 0.4s ease-out both; }