/* ============================================================
   KandidatenPilot - Sales Landing Page
   Design: Soft Structuralism + Editorial Split + Asymmetric Bento
   Vibe: Trust-driven, founder-led, premium German Mittelstand
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Color */
  --c-bg: #fdfdfc;
  --c-bg-alt: #f5f3ee;
  --c-bg-section: #faf9f6;
  --c-ink: #0c0d0e;
  --c-ink-soft: #2a2c30;
  --c-ink-mute: #5b6066;
  --c-ink-faint: #93989f;
  --c-line: #e8e5dc;
  --c-line-soft: #efece4;

  --c-navy: #0f1a3d;
  --c-navy-soft: #1a2a5c;
  --c-navy-deep: #050a24;

  --c-amber: #d97706;
  --c-amber-bright: #f59e0b;
  --c-amber-soft: #fef3e2;

  --c-success: #166534;

  /* Type */
  --f-display: "Clash Display", "PP Editorial New", Georgia, serif;
  --f-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-overshoot: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-snap: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1240px;
  --section-py: clamp(80px, 12vw, 160px);

  /* Radii */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 38px;
  --r-2xl: 48px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
em { font-style: italic; color: var(--c-amber); font-family: var(--f-display); font-weight: 600; }
strong { font-weight: 600; }

/* Subtle film grain on body background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1' /%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 2;
}

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--c-ink);
}

.display em { color: var(--c-amber); font-style: italic; }
.display .emphasis { font-style: italic; color: var(--c-amber); }

.headline {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 32px;
  max-width: 18ch;
  color: var(--c-ink);
}

.headline em { font-style: italic; color: var(--c-amber); }

.sub-headline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--c-ink);
}

.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--c-ink-soft);
  margin: 0 0 32px;
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--c-bg-alt);
  color: var(--c-ink-mute);
  margin-bottom: 22px;
  border: 1px solid var(--c-line-soft);
}

.eyebrow-dark { background: var(--c-navy); color: rgba(255, 255, 255, 0.85); border-color: transparent; }
.eyebrow-amber { background: var(--c-amber-soft); color: var(--c-amber); border-color: rgba(217, 119, 6, 0.2); }

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: none;
  text-decoration: none;
  transition: transform 380ms var(--ease-soft), box-shadow 380ms var(--ease-soft), background 380ms var(--ease-soft);
  position: relative;
  cursor: pointer;
}

.btn-primary {
  background: var(--c-ink);
  color: var(--c-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 8px 24px -8px rgba(15, 26, 61, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 14px 32px -8px rgba(15, 26, 61, 0.45);
}

.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-secondary {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.btn-secondary:hover { background: var(--c-bg-alt); }

.btn-lg { padding: 18px 22px 18px 28px; font-size: 16px; }
.btn-xl { padding: 22px 26px 22px 32px; font-size: 18px; }
.btn-sm { padding: 10px 14px 10px 18px; font-size: 14px; }

/* Button-in-Button trailing icon (Soft-Skill spec) */
.cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 380ms var(--ease-overshoot), background 380ms var(--ease-soft);
}

.btn-primary:hover .cta-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: translate(2px, -2px) scale(1.06);
}

.btn-lg .cta-icon { width: 38px; height: 38px; font-size: 16px; }
.btn-xl .cta-icon { width: 44px; height: 44px; font-size: 18px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 0 0 1px rgba(15, 26, 61, 0.06),
    0 12px 32px -12px rgba(15, 26, 61, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  transition: opacity 280ms var(--ease-soft);
}

.nav-brand:hover { opacity: 0.78; }

.brand-logo {
  height: 26px;
  width: auto;
  display: block;
}

/* Legacy classes kept for fallback if needed */
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--c-ink);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name {
  font-size: 15px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--c-ink-soft);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 4px 2px;
  transition: color 280ms var(--ease-soft);
}

.nav-links a:hover { color: var(--c-ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 8px 8px 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 380ms var(--ease-soft);
}

.nav-cta:hover { transform: translateY(-1px); }

.nav-cta .cta-icon {
  width: 26px;
  height: 26px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; padding: 6px 6px 6px 16px; }
  .nav-cta span:first-child { display: none; }
  .nav-cta { padding: 6px; }
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  transition: transform 480ms var(--ease-soft);
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

@media (min-width: 769px) {
  .sticky-cta { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 110px;
  padding-bottom: clamp(60px, 9vw, 120px);
  background: linear-gradient(180deg, #fdfdfc 0%, #fdfdfc 60%, var(--c-bg-section) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero-copy { position: relative; }

/* Hero Promise Bezel (the guarantee callout under the lead) */
.hero-promise { margin: 24px 0; }

.promise-bezel {
  padding: 6px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(217, 119, 6, 0.18), rgba(217, 119, 6, 0.05));
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.promise-inner {
  padding: 18px 22px;
  background: var(--c-bg);
  border-radius: calc(var(--r-lg) - 6px);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.promise-inner i {
  color: var(--c-amber);
  font-size: 24px;
  margin-top: 2px;
}

.promise-inner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-ink-soft);
}

.promise-inner strong { color: var(--c-ink); }

/* Hero CTA Row */
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 24px;
}

.hero-subcta {
  font-size: 13px;
  color: var(--c-ink-mute);
  letter-spacing: 0.01em;
  padding-left: 4px;
}

.trust-row { margin-top: 16px; }

.trust-bezel {
  display: inline-block;
  padding: 4px;
  border-radius: var(--r-md);
  background: rgba(15, 26, 61, 0.04);
  border: 1px solid rgba(15, 26, 61, 0.06);
}

.trust-inner {
  padding: 12px 18px;
  background: var(--c-bg);
  border-radius: calc(var(--r-md) - 4px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--c-ink-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.trust-inner i { color: var(--c-success); font-size: 18px; }

/* VSL */
.hero-vsl { position: relative; }

.vsl-bezel {
  padding: 8px;
  border-radius: var(--r-2xl);
  background: linear-gradient(160deg, rgba(15, 26, 61, 0.08), rgba(15, 26, 61, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 30px 60px -30px rgba(15, 26, 61, 0.4);
}

.vsl-frame {
  position: relative;
  border-radius: calc(var(--r-2xl) - 8px);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--c-navy-deep);
  isolation: isolate;
  max-height: 720px;
  margin-left: auto;
}

.vsl-thumbnail {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  font-family: inherit;
}

.vsl-thumbnail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transition: transform 800ms var(--ease-soft);
  display: block;
  pointer-events: none;
  user-select: none;
}

.vsl-thumbnail:hover .vsl-thumbnail-img {
  transform: scale(1.02);
}

.vsl-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  padding-left: 5px;
  box-shadow:
    0 24px 56px -16px rgba(0, 0, 0, 0.55),
    inset 0 0 0 6px rgba(255, 255, 255, 0.2);
  transition: transform 480ms var(--ease-overshoot), box-shadow 480ms var(--ease-soft);
  pointer-events: none;
  z-index: 2;
}

.vsl-thumbnail:hover .vsl-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 32px 72px -16px rgba(0, 0, 0, 0.6),
    inset 0 0 0 8px rgba(255, 255, 255, 0.28);
}

.vsl-thumbnail:focus-visible {
  outline: 3px solid var(--c-amber);
  outline-offset: 4px;
}

.vsl-caption {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--c-ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding-top: 110px; }
  .vsl-play {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
}

/* ---------- SECTION: PAIN ---------- */
.section-pain {
  background: var(--c-bg-section);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.pain-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 48px 0;
  max-width: 880px;
}

.pain-bezel {
  padding: 6px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--c-line);
}

.pain-inner {
  background: var(--c-bg);
  border-radius: calc(var(--r-lg) - 6px);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pain-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--c-amber);
  letter-spacing: -0.02em;
}

.pain-inner p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-ink-soft);
}

.pain-conclusion {
  margin: 56px 0 0;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 28ch;
  color: var(--c-ink);
}

@media (max-width: 600px) {
  .pain-inner { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .pain-num { font-size: 22px; }
}

/* ---------- SECTION: CLASSICAL ---------- */
.section-classical { background: var(--c-bg); }

.classical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.card-bezel {
  padding: 6px;
  border-radius: var(--r-lg);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  height: 100%;
}

.card-inner {
  background: var(--c-bg);
  border-radius: calc(var(--r-lg) - 6px);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--c-navy);
  margin-bottom: 20px;
}

.classical-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  color: var(--c-ink);
}

.card-meta {
  font-size: 13px;
  color: var(--c-ink-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px;
}

.classical-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.classical-card li {
  font-size: 15px;
  color: var(--c-ink-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.classical-card li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-ink-faint);
}

.classical-conclusion {
  margin: 48px 0 0;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--c-ink-soft);
  max-width: 820px;
}

@media (max-width: 880px) {
  .classical-grid { grid-template-columns: 1fr; }
}

/* ---------- SECTION: ANDROMEDA ---------- */
.section-andromeda {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.92);
}

.section-andromeda .headline { color: white; }
.section-andromeda .lead { color: rgba(255, 255, 255, 0.72); max-width: 75ch; }
.section-andromeda .lead strong { color: var(--c-amber-bright); }

.lead-andromeda { margin-bottom: 48px; }

.andromeda-compare { margin: 32px 0 64px; }

.compare-bezel {
  padding: 8px;
  border-radius: var(--r-2xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-inner {
  background: rgba(5, 10, 36, 0.5);
  border-radius: calc(var(--r-2xl) - 8px);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  overflow: hidden;
}

.compare-col { padding: 36px 40px; }
.compare-divider { background: rgba(255, 255, 255, 0.08); }

.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-label-active {
  color: var(--c-amber-bright);
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.3);
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-list li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.compare-list-active li { color: rgba(255, 255, 255, 0.92); }
.compare-list-active li::before { background: var(--c-amber-bright); }

.compare-rule {
  margin-top: 12px !important;
  padding-left: 18px;
  font-weight: 600 !important;
  font-family: var(--f-display);
  font-size: 18px !important;
  letter-spacing: -0.01em;
}

.compare-rule::before { display: none !important; }

.andromeda-tech {
  max-width: 820px;
  margin: 0 0 48px;
}

.section-andromeda .andromeda-tech p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.section-andromeda .sub-headline { color: white; }

.andromeda-bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bullet-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.bullet-item strong { color: white; }

.bullet-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(217, 119, 6, 0.12);
  color: var(--c-amber-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.andromeda-conclusion { margin-top: 48px; }

.conclusion-bezel {
  padding: 8px;
  border-radius: var(--r-2xl);
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.conclusion-inner {
  padding: 36px 40px;
  background: rgba(5, 10, 36, 0.4);
  border-radius: calc(var(--r-2xl) - 8px);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: white;
}

.conclusion-inner em { color: var(--c-amber-bright); font-style: italic; }
.conclusion-inner strong { color: var(--c-amber-bright); font-weight: 600; }

@media (max-width: 780px) {
  .compare-inner { grid-template-columns: 1fr; }
  .compare-divider { height: 1px; width: 100%; }
  .compare-col { padding: 28px; }
}

/* ---------- SECTION: METHODE ---------- */
.section-method { background: var(--c-bg); }

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step-bezel {
  padding: 6px;
  border-radius: var(--r-lg);
  background: var(--c-bg-section);
  border: 1px solid var(--c-line);
  height: 100%;
}

.step-inner {
  padding: 32px 32px 36px;
  background: var(--c-bg);
  border-radius: calc(var(--r-lg) - 6px);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--c-navy);
  letter-spacing: -0.02em;
}

.step-time {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--c-amber-soft);
  color: var(--c-amber);
}

.method-step h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.method-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-ink-soft);
}

@media (max-width: 780px) {
  .method-grid { grid-template-columns: 1fr; }
}

/* ---------- SECTION: GUARANTEE ---------- */
.section-guarantee {
  background: var(--c-bg-section);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.g-bezel {
  padding: 8px;
  border-radius: var(--r-2xl);
  height: 100%;
}

.g-bezel-outcome {
  background: linear-gradient(160deg, rgba(15, 26, 61, 0.08), rgba(15, 26, 61, 0.04));
  border: 1px solid rgba(15, 26, 61, 0.06);
}

.g-bezel-speed {
  background: linear-gradient(160deg, rgba(217, 119, 6, 0.16), rgba(217, 119, 6, 0.06));
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.g-inner {
  padding: 36px 36px 40px;
  background: var(--c-bg);
  border-radius: calc(var(--r-2xl) - 8px);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.g-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.g-bezel-outcome .g-icon { background: var(--c-navy); color: white; }
.g-bezel-speed .g-icon { background: var(--c-amber); color: white; }

.g-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.g-bezel-outcome .g-tag { background: var(--c-bg-alt); color: var(--c-ink-mute); }
.g-bezel-speed .g-tag { background: var(--c-amber-soft); color: var(--c-amber); }

.guarantee-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--c-ink);
}

.g-promise {
  font-size: 19px;
  line-height: 1.4;
  color: var(--c-ink);
  margin: 0 0 16px;
}

.g-detail {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-ink-mute);
  margin: 0;
}

.guarantee-footnote {
  margin: 40px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--c-ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

/* Conditions Box (under guarantee cards) */
.conditions {
  margin-top: 56px;
  max-width: 760px;
}

.conditions-bezel {
  padding: 8px;
  border-radius: var(--r-xl);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
}

.conditions-inner {
  padding: 32px 36px 28px;
  background: var(--c-bg);
  border-radius: calc(var(--r-xl) - 8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.conditions-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--c-ink);
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.conditions-list li {
  display: flex;
  align-items: start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-ink-soft);
}

.conditions-list li i {
  flex-shrink: 0;
  color: var(--c-success);
  font-size: 20px;
  margin-top: 2px;
}

.conditions-note {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--c-line-soft);
  font-size: 14px;
  color: var(--c-ink-mute);
  line-height: 1.55;
}

@media (max-width: 780px) {
  .guarantee-grid { grid-template-columns: 1fr; }
  .conditions-inner { padding: 24px 26px 22px; }
}

/* ---------- SECTION: INCLUDED ---------- */
.section-included { background: var(--c-bg); }

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.package { position: relative; }

.pkg-bezel {
  padding: 6px;
  border-radius: var(--r-xl);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  height: 100%;
}

.package-popular .pkg-bezel {
  background: linear-gradient(160deg, var(--c-navy), var(--c-navy-soft));
  border-color: var(--c-navy);
  box-shadow: 0 30px 60px -30px rgba(15, 26, 61, 0.45);
}

.pkg-inner {
  padding: 36px 32px 40px;
  background: var(--c-bg);
  border-radius: calc(var(--r-xl) - 6px);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.package-popular .pkg-inner {
  background: var(--c-bg);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--c-amber);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(217, 119, 6, 0.4);
}

.pkg-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  flex-wrap: wrap;
  gap: 12px;
}

.pkg-head h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.025em;
  margin: 0;
}

.pkg-price {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--c-amber);
}

.pkg-meta {
  font-size: 13px;
  color: var(--c-ink-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 28px;
}

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-ink-soft);
}

.pkg-list li i {
  flex-shrink: 0;
  color: var(--c-success);
  font-size: 18px;
  margin-top: 2px;
}

.pkg-base-note {
  font-style: italic;
  color: var(--c-ink-faint);
  font-size: 14px;
  margin-bottom: 4px;
  padding-left: 0 !important;
}

.pkg-base-note::before { display: none; }

/* Add-Ons */
.addons { margin-top: 64px; }

.addons-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.addon-bezel {
  padding: 6px;
  border-radius: var(--r-lg);
  background: var(--c-amber-soft);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.addon-inner {
  padding: 28px;
  background: var(--c-bg);
  border-radius: calc(var(--r-lg) - 6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.addon-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.addon-head i {
  font-size: 28px;
  color: var(--c-amber);
  flex-shrink: 0;
}

.addon-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
}

.addon-price {
  margin-left: auto;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-amber);
  letter-spacing: -0.01em;
}

.addon-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.addon-card li {
  font-size: 14px;
  color: var(--c-ink-soft);
  padding-left: 18px;
  position: relative;
}

.addon-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 1px;
  background: var(--c-amber);
}

@media (max-width: 780px) {
  .included-grid, .addon-grid { grid-template-columns: 1fr; }
}

/* ---------- SECTION: PRICING ---------- */
.section-pricing { background: var(--c-bg-section); }

.pricing-table { margin-top: 48px; }

.pt-bezel {
  padding: 8px;
  border-radius: var(--r-xl);
  background: rgba(15, 26, 61, 0.04);
  border: 1px solid var(--c-line);
}

.pt-inner {
  background: var(--c-bg);
  border-radius: calc(var(--r-xl) - 8px);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pt-table {
  width: 100%;
  border-collapse: collapse;
}

.pt-table th, .pt-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--c-line-soft);
}

.pt-table th {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  background: var(--c-bg-alt);
  vertical-align: top;
}

.pt-table th:first-child { background: transparent; }

.pt-amount {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-amber);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.pt-amount-sm {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-mute);
  margin-top: 4px;
  letter-spacing: 0;
}

.pt-table td { color: var(--c-ink-soft); }
.pt-table td:first-child { font-weight: 500; color: var(--c-ink); }

.pt-table .pt-highlight { background: var(--c-amber-soft); color: var(--c-amber); font-weight: 600; }
.pt-table .pt-highlight i { color: var(--c-amber); }

.pt-table tbody tr:last-child td { border-bottom: none; }
.pt-table tbody tr:hover { background: var(--c-bg-alt); }

.pt-table i.ph-x { color: var(--c-ink-faint); font-size: 16px; }
.pt-table i.ph-check-bold { color: var(--c-success); font-size: 18px; }

.pricing-cta {
  text-align: center;
  margin-top: 48px;
}

.pricing-note {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--c-ink-mute);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .pt-inner { overflow-x: auto; }
  .pt-table { min-width: 640px; }
}

/* ---------- SECTION: NOT FOR ---------- */
.section-not-for { background: var(--c-bg); }

.notfor-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  max-width: 720px;
}

.notfor-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--c-bg-section);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-size: 16px;
  color: var(--c-ink-soft);
  transition: transform 280ms var(--ease-soft);
}

.notfor-item:hover {
  transform: translateX(4px);
  background: var(--c-bg-alt);
}

.notfor-item i {
  color: var(--c-amber);
  font-size: 22px;
  flex-shrink: 0;
}

.notfor-conclusion {
  margin: 40px 0 0;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}

/* ---------- SECTION: FOUNDING ---------- */
.section-founding {
  background: var(--c-bg-section);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.founding-card { margin-top: 48px; }

.f-bezel {
  padding: 8px;
  border-radius: var(--r-2xl);
  background: linear-gradient(160deg, rgba(217, 119, 6, 0.18), rgba(217, 119, 6, 0.04));
  border: 1px solid rgba(217, 119, 6, 0.25);
}

.f-inner {
  padding: 48px 48px 52px;
  background: var(--c-bg);
  border-radius: calc(var(--r-2xl) - 8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.f-counter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 36px;
}

.f-counter-num {
  font-family: var(--f-display);
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-amber);
}

.f-counter-label {
  font-size: 16px;
  color: var(--c-ink-soft);
  margin-top: 4px;
}

.f-progress {
  margin-top: 20px;
  width: 100%;
  height: 8px;
  background: var(--c-bg-alt);
  border-radius: 999px;
  overflow: hidden;
}

.f-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-amber-bright), var(--c-amber));
  border-radius: 999px;
  transition: width 1200ms var(--ease-soft);
}

.f-perks {
  margin-bottom: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}

.f-perks h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}

.f-perks ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-perks li {
  display: flex;
  align-items: start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-ink-soft);
}

.f-perks li i {
  color: var(--c-success);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .f-inner { padding: 32px 28px 36px; }
}

/* ---------- SECTION: FOUNDER ---------- */
.section-founder { background: var(--c-bg); }

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

.photo-bezel {
  padding: 8px;
  border-radius: var(--r-2xl);
  background: linear-gradient(160deg, var(--c-bg-alt), rgba(217, 119, 6, 0.06));
  border: 1px solid var(--c-line);
  position: sticky;
  top: 100px;
}

.photo-inner {
  border-radius: calc(var(--r-2xl) - 8px);
  background: var(--c-bg-section);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.photo-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--c-ink-faint);
  font-size: 14px;
  background: linear-gradient(160deg, var(--c-bg-section), var(--c-bg-alt));
}

.photo-placeholder i { font-size: 48px; }

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
  transition: transform 800ms var(--ease-soft);
}

.photo-bezel:hover .photo-img {
  transform: scale(1.02);
}

.founder-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink-soft);
  margin: 0 0 20px;
}

.founder-copy em { color: var(--c-ink); font-family: inherit; font-weight: 500; }

.inline-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--c-amber);
  transition: color 280ms var(--ease-soft), border-color 280ms var(--ease-soft);
}

.inline-link:hover {
  color: var(--c-amber);
  border-bottom-color: var(--c-amber-bright);
}

.inline-link strong { color: inherit; }

.founder-promise {
  margin-top: 8px !important;
  margin-bottom: 28px !important;
  padding: 18px 22px;
  border-left: 3px solid var(--c-amber);
  background: var(--c-amber-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 18px !important;
  line-height: 1.4 !important;
}

.founder-promise em {
  font-family: var(--f-display) !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: var(--c-amber) !important;
  letter-spacing: -0.01em;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  transition: transform 280ms var(--ease-soft), background 280ms var(--ease-soft);
}

.founder-link:hover {
  background: var(--c-ink);
  color: var(--c-bg);
  transform: translateY(-1px);
}

.founder-link:hover i { color: var(--c-bg); }

@media (max-width: 880px) {
  .founder-grid { grid-template-columns: 1fr; max-width: 600px; }
  .photo-bezel { position: static; }
}

/* ---------- SECTION: FAQ ---------- */
.section-faq { background: var(--c-bg-section); }

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
}

.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 280ms var(--ease-soft), box-shadow 280ms var(--ease-soft);
}

.faq-item[open] {
  border-color: rgba(15, 26, 61, 0.16);
  box-shadow: 0 12px 32px -16px rgba(15, 26, 61, 0.18);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  transition: background 280ms var(--ease-soft);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--c-bg-section); }

.faq-item summary i {
  font-size: 22px;
  color: var(--c-ink-mute);
  transition: transform 380ms var(--ease-overshoot), color 280ms var(--ease-soft);
  flex-shrink: 0;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
  color: var(--c-amber);
}

.faq-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--c-line-soft);
  padding-top: 20px;
}

.faq-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-soft);
}

/* ---------- SECTION: CTA ---------- */
.section-cta {
  background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(217, 119, 6, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(15, 26, 61, 0.4), transparent 50%);
  pointer-events: none;
}

.cta-wrap {
  text-align: center;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.headline-cta {
  color: white;
  margin-bottom: 24px;
}

.headline-cta em { color: var(--c-amber-bright); }

.cta-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 40px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.section-cta .btn-primary {
  background: white;
  color: var(--c-ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 16px 40px -12px rgba(0, 0, 0, 0.45);
}

.section-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 24px 56px -12px rgba(0, 0, 0, 0.55);
}

.section-cta .cta-icon {
  background: var(--c-bg-alt);
  color: var(--c-ink);
}

/* Calendly */
.calendly-bezel {
  margin-top: 56px;
  padding: 8px;
  border-radius: var(--r-2xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendly-inner {
  background: white;
  border-radius: calc(var(--r-2xl) - 8px);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.calendly-placeholder {
  text-align: center;
  padding: 48px;
  color: var(--c-ink-mute);
}

.calendly-placeholder i {
  font-size: 56px;
  color: var(--c-amber);
  margin-bottom: 16px;
}

.calendly-placeholder p { margin: 8px 0; }

.calendly-hint {
  font-size: 13px;
  color: var(--c-ink-faint);
}

.calendly-placeholder code {
  background: var(--c-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, monospace;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand-name {
  color: white;
  font-size: 18px;
  margin-left: 8px;
}

.footer-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: block;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: white;
  margin: 0;
}

.brand-mark-light {
  background: white;
  color: var(--c-navy-deep);
}

.footer-tagline {
  margin: 20px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 28ch;
  line-height: 1.5;
}

.footer-links, .footer-company {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.footer h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 280ms var(--ease-soft);
  width: fit-content;
}

.footer-links a:hover { color: white; }

.footer-company p { margin: 0 0 12px; line-height: 1.55; }

.footer-mail a {
  color: var(--c-amber-bright);
  border-bottom: 1px solid rgba(217, 119, 6, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-from a {
  color: var(--c-amber-bright);
  border-bottom: 1px solid rgba(217, 119, 6, 0.3);
}

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 95;
  display: flex;
  justify-content: center;
  transform: translateY(150%);
  transition: transform 600ms var(--ease-soft);
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-bezel {
  padding: 4px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 0 0 1px rgba(15, 26, 61, 0.06),
    0 16px 36px -12px rgba(15, 26, 61, 0.25);
  max-width: 720px;
  width: 100%;
}

.cookie-inner {
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: calc(var(--r-md) - 4px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.5;
}

.cookie-text i {
  color: var(--c-amber);
  font-size: 22px;
  flex-shrink: 0;
}

.cookie-text a {
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-ink-faint);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  padding-top: 130px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  background: var(--c-bg);
  min-height: 100vh;
}

.container-narrow {
  max-width: 760px !important;
}

.legal-headline {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 16px 0 48px;
  color: var(--c-ink);
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-line-soft);
}

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

.legal-section h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--c-ink);
}

.legal-section h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 28px 0 12px;
  color: var(--c-ink);
}

.legal-section p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-soft);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0 0 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink-soft);
  padding-left: 22px;
  position: relative;
}

.legal-section li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--c-amber);
}

.legal-section a {
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-amber);
  transition: color 280ms var(--ease-soft), border-color 280ms var(--ease-soft);
  word-break: break-word;
}

.legal-section a:hover {
  color: var(--c-amber);
  border-bottom-color: var(--c-amber-bright);
}

.legal-meta {
  font-size: 13px;
  color: var(--c-ink-faint);
  margin: 0 0 32px;
  font-style: italic;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  text-decoration: none;
  transition: transform 280ms var(--ease-soft), background 280ms var(--ease-soft);
}

.back-home:hover {
  background: var(--c-ink);
  color: var(--c-bg);
  transform: translateX(-2px);
}

.back-home:hover i { color: var(--c-bg); }

@media (max-width: 600px) {
  .legal-page { padding-top: 110px; padding-bottom: 60px; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition:
    opacity 900ms var(--ease-soft),
    transform 900ms var(--ease-soft),
    filter 900ms var(--ease-soft);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
