/* ═══════════════════════════════════════════════════
   DMSKI – Landing + Login
   Swiss Legal Precision × Silent Luxury
   Fluid · OLED · Touch-First · 50+ Readable
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #0F1E2B;
  --bg-deep: #1A2B3C;
  --bg-card: rgba(26, 43, 60, 0.85);
  --ink: #ffffff;
  --ink-soft: #dce4ed;
  --ink-muted: rgba(255,255,255,0.65);
  --gold: #C5A059;
  --gold-soft: rgba(197,160,89,0.15);
  --gold-glow: rgba(197,160,89,0.08);
  --gold-strong: #B8904A;
  --line: rgba(255,255,255,0.1);
  --surface: rgba(255,255,255,0.05);
  --ok: #166534;
  --error: #C0392B;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Poppins", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
  --space-section: clamp(3.5rem, 8vw, 6rem);
  --space-page: clamp(1.2rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ═══ TOP BAR ═══ */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem var(--space-page);
  /* Transparent glass: subtler tint + strong blur for crisp legibility */
  background: linear-gradient(180deg, rgba(6,12,24,0.32), rgba(6,12,24,0.18));
  backdrop-filter: blur(28px) saturate(1.7);
  -webkit-backdrop-filter: blur(28px) saturate(1.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 30px rgba(0,0,0,0.18);
  transition: background 250ms ease, backdrop-filter 250ms ease;
}

.top-bar-logo { display: inline-flex; align-items: center; text-decoration: none; }
.top-bar-logo img { height: 2.4rem; width: auto; opacity: 0.95; }

.top-bar-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.8rem); }

.top-bar-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}
.top-bar-link:hover { color: var(--gold); }

.top-bar-login {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 180ms ease;
}
.top-bar-login:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.top-bar-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0f172a;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 180ms ease;
  box-shadow: 0 2px 12px rgba(197,160,89,0.25);
}
.top-bar-cta:hover {
  box-shadow: 0 4px 20px rgba(197,160,89,0.4);
  transform: translateY(-1px);
}

/* ═══ HAMBURGER MENU ═══ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0.4rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all 180ms ease;
}
.hamburger:hover { border-color: rgba(197,160,89,0.3); background: rgba(197,160,89,0.06); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-soft);
  border-radius: 2px;
  transition: all 250ms ease;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(3px, 5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(3px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  padding: 5rem var(--space-page) 2rem;
  background: rgba(6, 10, 20, 0.95);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  transition: all 180ms ease;
  text-align: center;
  width: 100%;
  max-width: 280px;
}
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-nav a.mobile-nav-login {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.mobile-nav a.mobile-nav-login:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}
.mobile-nav a.mobile-nav-cta {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0f172a;
  font-weight: 700;
  margin-top: 0.5rem;
}
.mobile-nav a.mobile-nav-cta:hover {
  box-shadow: 0 4px 20px rgba(197,160,89,0.35);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 12vw, 8rem) var(--space-page) var(--space-section);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(197,160,89,0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(8,12,28,0.25) 0%, rgba(8,12,28,0.45) 50%, var(--bg) 100%),
    url("assets/dmski-file-scan.jpg") center / cover no-repeat;
}

/* Subtle forensic grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(197,160,89,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
}

/* Hero card with animated gold border glow */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  border-radius: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(197,160,89,0.15);
  background: rgba(11,17,32,0.42);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(197,160,89,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(197,160,89,0.05);
  animation: hero-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Rotating gold gradient border */
.hero-content::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 0%,
    rgba(197,160,89,0.3) 10%,
    transparent 20%,
    transparent 80%,
    rgba(197,160,89,0.2) 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: border-rotate 8s linear infinite;
  pointer-events: none;
}

@keyframes border-rotate {
  to { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Corner accents */
.hero-content::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-top: 2px solid rgba(197,160,89,0.35);
  border-left: 2px solid rgba(197,160,89,0.35);
  border-radius: 4px 0 0 0;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: 100px;
  background: var(--gold-glow);
  font-size: clamp(0.72rem, 0.7rem + 0.15vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Decorative gold accent line */
.hero-accent-line {
  width: 48px;
  height: 2px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.hero-highlight {
  background: linear-gradient(135deg, #dfc07a 0%, var(--gold) 40%, #e8d5a0 70%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.75;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

/* Button icon */
.btn-icon {
  margin-right: 0.5rem;
  opacity: 0.85;
  flex-shrink: 0;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 2.4rem;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, #dfc07a, var(--gold), var(--gold-strong));
  color: #0f172a;
  font-family: inherit;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 220ms ease;
  box-shadow: 0 4px 24px rgba(197,160,89,0.3), 0 0 0 0 rgba(197,160,89,0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(197,160,89,0.4), 0 0 20px rgba(197,160,89,0.15);
}
.btn-lg { padding: 1.1rem 3rem; font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink-soft);
  font-family: inherit;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 180ms ease;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ═══ TRUST BADGES ═══ */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.85rem);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.hero-trust-item svg { color: var(--gold); opacity: 0.7; flex-shrink: 0; }

/* ═══ SECTION SHARED ═══ */
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-eyebrow {
  font-size: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

/* ═══ HOW IT WORKS / STRATEGIC PILLARS ═══ */
.how-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.how-step {
  text-align: left;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.how-step:hover { border-color: rgba(197,160,89,0.25); background: rgba(197,160,89,0.06); transform: translateY(-2px); }
.how-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.how-step h3 {
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.how-step p {
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ═══ AUDIENCES / EXPERTISE ═══ */
.audience-section { padding: var(--space-section) var(--space-page); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.audience-card {
  text-align: left;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 250ms ease;
}
.audience-card:hover {
  border-color: rgba(197,160,89,0.25);
  transform: translateY(-3px);
  background: rgba(197,160,89,0.06);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.audience-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.audience-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--gold); }
.audience-card h3 {
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.audience-card p {
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ═══ TRUST / DACH SECTION ═══ */
.trust-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.trust-intro {
  max-width: 720px;
  margin: 0 auto clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  font-size: clamp(0.95rem, 0.92rem + 0.2vw, 1.05rem);
  color: var(--ink-soft);
  line-height: 1.7;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.trust-card {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  text-align: center;
  transition: all 250ms ease;
}
.trust-card:hover {
  border-color: rgba(197,160,89,0.25);
  transform: translateY(-2px);
  background: rgba(197,160,89,0.06);
}
.trust-flag { font-size: 2rem; display: block; margin-bottom: 0.7rem; }
.trust-card h3 {
  font-size: clamp(0.95rem, 0.92rem + 0.15vw, 1.05rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.95rem);
  color: var(--ink-soft);
  line-height: 1.6;
}
.trust-service-note {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--radius);
  background: rgba(197,160,89,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.trust-service-note p {
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.95rem);
  color: var(--gold);
  line-height: 1.6;
  font-weight: 500;
}

/* ═══ PRIVACY SECTION ═══ */
.privacy-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.privacy-item {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.privacy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 12px;
  background: rgba(197,160,89,0.12);
  margin-bottom: 1rem;
}
.privacy-icon svg { width: 1.4rem; height: 1.4rem; stroke: var(--gold); }
.privacy-item h3 {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.privacy-item p {
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ═══ COOKIE BANNER ═══ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem var(--space-page);
  background: rgba(6,10,20,0.9);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}
.cookie-banner p {
  font-size: clamp(0.85rem, 0.82rem + 0.15vw, 0.92rem);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner a { color: var(--gold); text-decoration: none; }
.cookie-banner a:hover { color: #fff; }
.cookie-accept {
  flex-shrink: 0;
  min-height: 48px;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(197,160,89,0.35);
  border-radius: var(--radius-sm);
  background: rgba(197,160,89,0.1);
  color: var(--gold);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease;
}
.cookie-accept:hover {
  background: rgba(197,160,89,0.2);
  border-color: rgba(197,160,89,0.55);
}

/* ═══ CTA SECTION ═══ */
.cta-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.cta-sub {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  color: var(--ink-soft);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.cta-classified {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 0.68rem + 0.1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 1.2rem;
  border: 1px solid rgba(197,160,89,0.35);
  background: rgba(197,160,89,0.06);
  margin-bottom: 1.2rem;
  animation: pulse-border 3s ease-in-out infinite;
}

/* ═══ DILEMMA / WACHRÜTTLER SECTION ═══ */
.dilemma-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg);
}
.dilemma-card {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius);
  border: 1px solid rgba(197,160,89,0.2);
  background: linear-gradient(160deg, rgba(197,160,89,0.04), rgba(11,17,32,0.8));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 16px 64px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.dilemma-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.dilemma-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.66rem + 0.1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.dilemma-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}
.dilemma-body p {
  font-size: clamp(0.95rem, 0.92rem + 0.2vw, 1.05rem);
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.dilemma-body p:last-child { margin-bottom: 0; }
.dilemma-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.3rem) !important;
  font-weight: 600;
  font-style: italic;
  color: var(--gold) !important;
  padding: clamp(0.8rem, 2vw, 1.2rem) 0;
  border-left: 3px solid rgba(197,160,89,0.4);
  padding-left: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(0.8rem, 2vw, 1.2rem) 0 !important;
  background: rgba(197,160,89,0.03);
}
.dilemma-punchline {
  font-weight: 700;
  color: #fff !important;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem) !important;
  margin-top: 0.5rem !important;
}

/* ═══ FORENSIC SCANLINES ═══ */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(197,160,89,0.015) 2px,
    rgba(197,160,89,0.015) 4px
  );
  pointer-events: none;
}

/* ═══ EYEBROW DOT (LIVE INDICATOR) ═══ */
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(197,160,89,0.5);
}

/* ═══ PROFILING CARDS ═══ */
.profiling-card {
  position: relative;
  overflow: hidden;
}
.profiling-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), rgba(197,160,89,0.15));
  border-radius: 3px 0 0 3px;
}
.profiling-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.profiling-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(197,160,89,0.1);
  border: 1px solid rgba(197,160,89,0.2);
}
.profiling-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--gold);
}
.profiling-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(197,160,89,0.55);
}

/* ═══ FORENSIC ANIMATIONS ═══ */
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(197,160,89,0.5); }
  50% { opacity: 0.4; box-shadow: 0 0 2px rgba(197,160,89,0.2); }
}
@keyframes pulse-border {
  0%, 100% { border-color: rgba(197,160,89,0.35); }
  50% { border-color: rgba(197,160,89,0.7); }
}

/* ═══ LOGIN PAGE ═══ */
.login-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 10vw, 6rem) var(--space-page) clamp(1.5rem, 3vw, 2rem);
  flex: 1;
}

.login-shell {
  width: min(1020px, 100%);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(32px) saturate(1.3);
  -webkit-backdrop-filter: blur(32px) saturate(1.3);
  border-radius: clamp(16px, 3vw, 24px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}

.login-brand {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(160deg, rgba(6,10,20,0.95), rgba(15,21,32,0.9)),
    repeating-linear-gradient(-35deg, rgba(255,255,255,0.015), rgba(255,255,255,0.015) 1px, transparent 1px, transparent 22px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: rise-in 700ms ease forwards;
  opacity: 0;
  transform: translateY(14px);
}
.brand-home-link { display: inline-flex; text-decoration: none; }
.brand-logo { display: block; width: min(100%, 26rem); height: auto; margin-bottom: 1.4rem; }

.login-brand-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, rgba(197,160,89,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.login-brand-sub {
  color: var(--ink-muted);
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.6;
}

.login-no-access {
  margin-top: 0.5rem;
  font-size: clamp(0.85rem, 0.82rem + 0.15vw, 0.92rem);
  color: var(--ink-muted);
  text-align: center;
}
.login-no-access a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 180ms ease;
}
.login-no-access a:hover { color: #fff; }

/* ═══ LOGIN FORM ═══ */
.login-card {
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: rgba(255,255,255,0.02);
  animation: rise-in 750ms ease forwards;
  animation-delay: 150ms;
  opacity: 0;
  transform: translateY(14px);
}
.login-card h2 {
  margin: 0 0 0.2rem;
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card-kicker {
  margin: -0.1rem 0 0.5rem;
  color: var(--ink-muted);
  font-size: clamp(0.85rem, 0.82rem + 0.15vw, 0.92rem);
  letter-spacing: 0.02em;
}

label {
  font-weight: 500;
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 0.95rem);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}

input[type="text"],
input[type="email"],
input[type="password"],
.password-field input {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #f0f4f8;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
input::placeholder { color: rgba(255,255,255,0.3); }
input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,160,89,0.15); }

.password-field { position: relative; }
.password-field input { padding-right: 3rem; }

.icon-button {
  position: absolute; top: 50%; right: 0.5rem; transform: translateY(-50%);
  border-radius: var(--radius-sm); border: 0;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center; padding: 0;
  background: transparent; color: rgba(255,255,255,0.4); box-shadow: none; cursor: pointer;
}
.icon-button:hover { transform: translateY(-50%); background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.icon-button:active { transform: translateY(-50%); }

.eye-icon { width: 1.15rem; height: 1.15rem; fill: currentColor; }
.eye-closed { display: none; }
.icon-button.is-visible .eye-open { display: none; }
.icon-button.is-visible .eye-closed { display: block; }

.row {
  margin: 0.5rem 0 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}
.checkbox-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(0.88rem, 0.85rem + 0.1vw, 0.95rem);
  color: rgba(255,255,255,0.55);
}
.checkbox-wrap input { width: 1.1rem; height: 1.1rem; accent-color: var(--gold); }
.text-link {
  font-size: clamp(0.88rem, 0.85rem + 0.1vw, 0.95rem);
  color: var(--gold);
  text-decoration: none;
  transition: color 150ms ease;
}
.text-link:hover { color: #d4b575; }

button[type="submit"] {
  margin-top: 0.5rem; border: 0; border-radius: 12px;
  min-height: 52px;
  padding: 0.95rem 1rem; font-weight: 700;
  font-size: clamp(1rem, 0.95rem + 0.15vw, 1.1rem);
  font-family: inherit;
  background: linear-gradient(150deg, var(--gold), var(--gold-strong));
  color: #0f172a; cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
button[type="submit"]:hover { box-shadow: 0 12px 28px rgba(197,160,89,0.3); transform: translateY(-1px); }
button[type="submit"]:active { opacity: 0.9; }
button[type="submit"]:disabled { cursor: not-allowed; opacity: 0.5; }

.message { min-height: 1.25rem; margin: 0.3rem 0 0; font-size: 0.92rem; }
.message.success { color: var(--ok); }
.message.error { color: var(--error); }

/* ═══ FOOTER ═══ */
.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 2.5rem);
  padding: clamp(3rem, 6vw, 4.5rem) var(--space-page) clamp(2.5rem, 5vw, 3.5rem);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  background: linear-gradient(175deg, #0e1f3d 0%, #0a1628 40%, #081020 100%);
  border-top: 1px solid rgba(197,160,89,0.2);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,0.5), transparent);
}
.site-footer a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 180ms ease; }
.site-footer a:hover { color: var(--gold); }

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer-brand-logo {
  height: 2.2rem;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}
.footer-brand-tagline {
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.95rem);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.footer-social a.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 12px;
  border: 1px solid rgba(197,160,89,0.2);
  background: rgba(197,160,89,0.06);
  color: rgba(255,255,255,0.7);
  transition: all 200ms ease;
}
.footer-social a.footer-icon:hover {
  border-color: rgba(197,160,89,0.5);
  color: var(--gold);
  background: rgba(197,160,89,0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197,160,89,0.15);
}
.footer-social svg { width: 1.2rem; height: 1.2rem; fill: currentColor; }

.footer-contact {
  text-align: center;
}
.footer-mail {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: clamp(0.95rem, 0.9rem + 0.15vw, 1.05rem);
  padding: 0.55rem 1.4rem;
  border-radius: 10px;
  border: 1px solid rgba(197,160,89,0.25);
  background: rgba(197,160,89,0.06);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 200ms ease !important;
}
.footer-mail:hover {
  background: rgba(197,160,89,0.14);
  border-color: rgba(197,160,89,0.45);
  box-shadow: 0 4px 16px rgba(197,160,89,0.12);
}

.footer-divider {
  width: 100%;
  max-width: 500px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.5vw, 1rem);
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem) !important;
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  transition: color 180ms ease;
}
.footer-legal a:hover { color: var(--gold) !important; }
.footer-dot { color: rgba(255,255,255,0.3); font-size: clamp(0.85rem, 0.8rem + 0.1vw, 0.92rem); }

.footer-copyright {
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.95rem);
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ═══ ANIMATIONS ═══ */
@keyframes rise-in {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes hero-rise {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Responsive rules consolidated below new sections */

/* ═══ HERO PRICE HOOK ═══ */
.hero-price-hook {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  border: 1px solid rgba(52,208,88,0.3);
  background: rgba(52,208,88,0.08);
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.95rem);
  font-weight: 600;
  color: #C5A059;
  letter-spacing: 0.01em;
}
.hero-price-sep {
  display: inline-block;
  width: 1px;
  height: 1em;
  background: rgba(52,208,88,0.4);
  margin: 0 0.8rem;
  flex-shrink: 0;
}

/* ═══ CTA ACTIONS ═══ */
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-secondary {
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  color: var(--ink-muted);
}
.cta-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 180ms ease;
}
.cta-link:hover { color: #fff; }

/* ═══ SOCIAL PROOF BAR ═══ */
.proof-bar {
  padding: clamp(1.2rem, 2.5vw, 1.8rem) var(--space-page);
  background: rgba(197,160,89,0.04);
  border-top: 1px solid rgba(197,160,89,0.1);
  border-bottom: 1px solid rgba(197,160,89,0.1);
}
.proof-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.2rem + 0.4vw, 1.6rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: clamp(0.78rem, 0.75rem + 0.1vw, 0.85rem);
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.proof-divider {
  width: 1px;
  height: 2.2rem;
  background: rgba(197,160,89,0.2);
}

/* ═══ 3-STEP PROCESS ═══ */
.steps-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg);
}
.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  position: relative;
  transition: all 250ms ease;
}
.step-card:hover {
  border-color: rgba(197,160,89,0.3);
  background: rgba(197,160,89,0.05);
  transform: translateY(-3px);
}
.step-num {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(197,160,89,0.4);
}
.step-icon {
  width: 3rem;
  height: 3rem;
  margin: 0.5rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gold-soft);
}
.step-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--gold); }
.step-card h3 {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.95rem);
  color: var(--ink-soft);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  flex-shrink: 0;
}
.step-connector svg { width: 1.5rem; height: 1.5rem; stroke: rgba(197,160,89,0.3); }
.steps-cta { text-align: center; margin-top: clamp(1.5rem, 3vw, 2.5rem); }

/* ═══ DEMO / BEISPIEL-ANALYSE ═══ */
.demo-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.demo-intro {
  max-width: 640px;
  margin: -1rem auto clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  font-size: clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  color: var(--ink-soft);
  line-height: 1.65;
}
.demo-card {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(197,160,89,0.2);
  background: rgba(11,17,32,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.4);
}
.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1rem, 2vw, 1.5rem);
  background: rgba(197,160,89,0.06);
  border-bottom: 1px solid rgba(197,160,89,0.15);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.demo-header-left { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.demo-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: 4px;
  background: rgba(197,160,89,0.08);
}
.demo-case {
  font-size: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  color: var(--ink-muted);
}
.demo-status {
  font-size: clamp(0.78rem, 0.75rem + 0.1vw, 0.85rem);
  color: var(--ink-muted);
  font-weight: 500;
}
.demo-body {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
}
.demo-finding {
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 1rem);
  padding: clamp(0.8rem, 1.5vw, 1.2rem);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: background 180ms ease;
}
.demo-finding:hover { background: rgba(255,255,255,0.04); }
.demo-finding-severity {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  height: fit-content;
  white-space: nowrap;
}
.demo-severity-high {
  color: #C0392B;
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.2);
}
.demo-severity-medium {
  color: #C5A059;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
}
.demo-severity-info {
  color: #C5A059;
  background: rgba(52,208,88,0.1);
  border: 1px solid rgba(52,208,88,0.2);
}
.demo-finding-content h4 {
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.demo-finding-content p {
  font-size: clamp(0.85rem, 0.82rem + 0.15vw, 0.92rem);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
.demo-ref {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(197,160,89,0.6);
  letter-spacing: 0.02em;
}
.demo-footer {
  padding: 0.7rem clamp(1rem, 2vw, 1.5rem);
  background: rgba(197,160,89,0.04);
  border-top: 1px solid rgba(197,160,89,0.1);
  text-align: center;
}
.demo-footer-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ═══ PRICING ═══ */
.pricing-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.pricing-intro {
  max-width: 600px;
  margin: -1rem auto clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  font-size: clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Pricing 3-station explainer */
.pricing-intro-lead {
  max-width: 640px;
  margin: -0.5rem auto clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  font-size: clamp(1.02rem, 0.98rem + 0.2vw, 1.12rem);
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 500;
}
.pricing-stations {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 920px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}
.pricing-station {
  text-align: center;
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.2rem, 2.5vw, 1.8rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid rgba(197,160,89,0.15);
  background: rgba(197,160,89,0.03);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 250ms ease;
}
.pricing-station:hover {
  border-color: rgba(197,160,89,0.35);
  background: rgba(197,160,89,0.07);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(197,160,89,0.1);
}
.pricing-station-num {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0f172a;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(197,160,89,0.4);
}
.pricing-station-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0.6rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid rgba(197,160,89,0.2);
}
.pricing-station-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: var(--gold);
}
.pricing-station-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(197,160,89,0.5);
  margin-bottom: 0.4rem;
}
.pricing-station h4 {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.pricing-station p {
  font-size: clamp(0.85rem, 0.82rem + 0.12vw, 0.92rem);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 auto;
  padding-bottom: 1rem;
}
.pricing-station-cost {
  margin-top: auto;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(197,160,89,0.25);
  background: rgba(197,160,89,0.06);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-station-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(0.3rem, 0.8vw, 0.6rem);
}
.pricing-station-connector span {
  display: block;
  width: clamp(1.2rem, 2.5vw, 2rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(197,160,89,0.15), rgba(197,160,89,0.4), rgba(197,160,89,0.15));
  border-radius: 2px;
  position: relative;
}
.pricing-station-connector span::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 5px solid rgba(197,160,89,0.4);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.pricing-steps-note {
  max-width: 680px;
  margin: 0 auto clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  font-size: clamp(0.9rem, 0.87rem + 0.12vw, 0.98rem);
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 680px) {
  .pricing-stations {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 340px;
  }
  .pricing-station-connector {
    justify-content: center;
    padding: 0;
  }
  .pricing-station-connector span {
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(180deg, rgba(197,160,89,0.15), rgba(197,160,89,0.4), rgba(197,160,89,0.15));
  }
  .pricing-station-connector span::after {
    right: -3px;
    top: auto;
    bottom: -3px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(197,160,89,0.4);
    border-bottom: none;
  }
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid-6 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
}
.pricing-grid-7 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1200px;
}
.pricing-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.8rem;
  margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  padding-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  border-bottom: 1px solid var(--line);
}
.pricing-credits {
  font-size: clamp(0.85rem, 0.82rem + 0.1vw, 0.92rem);
  color: var(--ink-soft);
  font-weight: 600;
}
.pricing-per-credit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.pricing-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transition: all 250ms ease;
}
.pricing-card:hover {
  border-color: rgba(197,160,89,0.25);
  transform: translateY(-3px);
  background: rgba(197,160,89,0.04);
}
.pricing-card-featured {
  border-color: rgba(197,160,89,0.4);
  background: rgba(197,160,89,0.06);
  box-shadow: 0 16px 48px rgba(197,160,89,0.12), 0 0 0 1px rgba(197,160,89,0.15);
}
.pricing-card-featured:hover {
  border-color: rgba(197,160,89,0.6);
  box-shadow: 0 24px 64px rgba(197,160,89,0.18), 0 0 0 1px rgba(197,160,89,0.25);
}
.pricing-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(197,160,89,0.35);
}
.pricing-card-header { margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem); }
.pricing-card-featured .pricing-card-header { margin-top: 0.5rem; }
.pricing-card-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.1rem + 0.3vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.pricing-card-scope {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.15rem 0 0.25rem;
}
.pricing-card-desc {
  font-size: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  color: var(--ink-muted);
  line-height: 1.5;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.pricing-currency {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
  align-self: flex-start;
  margin-top: 0.45em;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 2rem + 0.6vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-unit {
  font-size: clamp(0.78rem, 0.75rem + 0.1vw, 0.85rem);
  color: var(--ink-muted);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 0.15rem;
}

/* Free card */
.pricing-card-free {
  border-color: rgba(52,208,88,0.3);
  background: rgba(52,208,88,0.04);
}
.pricing-card-free:hover {
  border-color: rgba(52,208,88,0.5);
  background: rgba(52,208,88,0.08);
}
.pricing-card-free .pricing-card-header h3 { color: #C5A059; }
.pricing-card-free .pricing-card-scope { color: #C5A059; }
.pricing-free-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #C5A059, #B8904A);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(52,208,88,0.35);
}
.pricing-amount-free {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 2rem + 0.6vw, 2.8rem);
  font-weight: 700;
  color: #C5A059;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-btn-free {
  border: none;
  background: linear-gradient(135deg, #C5A059, #B8904A);
  color: #fff;
  box-shadow: 0 4px 16px rgba(52,208,88,0.3);
}
.pricing-btn-free:hover {
  box-shadow: 0 8px 28px rgba(52,208,88,0.4);
  background: linear-gradient(135deg, #d4b46a, #C5A059);
  color: #fff;
}
.pricing-per {
  font-size: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  color: var(--ink-muted);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.pricing-save {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: rgba(52,208,88,0.12);
  color: #C5A059;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 0.3rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.2rem, 2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 0.82rem + 0.1vw, 0.92rem);
  color: var(--ink-soft);
}
.pricing-features li svg { flex-shrink: 0; color: var(--gold); }
.pricing-btn {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197,160,89,0.3);
  background: rgba(197,160,89,0.08);
  color: var(--gold);
  font-family: inherit;
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  font-weight: 700;
  text-decoration: none;
  transition: all 200ms ease;
}
.pricing-btn:hover {
  background: rgba(197,160,89,0.18);
  border-color: rgba(197,160,89,0.5);
  transform: translateY(-1px);
}
.pricing-btn-featured {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(197,160,89,0.3);
}
.pricing-btn-featured:hover {
  box-shadow: 0 8px 28px rgba(197,160,89,0.4);
  background: linear-gradient(135deg, #dfc07a, var(--gold));
  color: #0f172a;
}

/* Compact pricing card layout for 6-card grid */
.pricing-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gold-soft);
  margin-bottom: 0.8rem;
}
.pricing-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--gold);
}
.pricing-card-featured .pricing-card-icon {
  background: rgba(197,160,89,0.2);
  border: 1px solid rgba(197,160,89,0.3);
}
.pricing-card-pages {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: -0.3rem 0 0.15rem;
}
.pricing-card-example {
  font-size: clamp(0.78rem, 0.75rem + 0.1vw, 0.85rem);
  color: var(--ink-muted);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.pricing-price-compact {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
}
.pricing-amount-compact {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.3rem + 0.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.pricing-credits-compact {
  font-size: clamp(0.78rem, 0.75rem + 0.1vw, 0.85rem);
  color: var(--ink-muted);
  font-weight: 500;
}
.pricing-btn-compact {
  display: block;
  text-align: center;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197,160,89,0.3);
  background: rgba(197,160,89,0.08);
  color: var(--gold);
  font-family: inherit;
  font-size: clamp(0.85rem, 0.82rem + 0.1vw, 0.92rem);
  font-weight: 700;
  text-decoration: none;
  transition: all 200ms ease;
  margin-top: auto;
}
.pricing-btn-compact:hover {
  background: rgba(197,160,89,0.18);
  border-color: rgba(197,160,89,0.5);
  transform: translateY(-1px);
}
.pricing-btn-compact.pricing-btn-featured {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(197,160,89,0.3);
}
.pricing-btn-compact.pricing-btn-featured:hover {
  box-shadow: 0 8px 28px rgba(197,160,89,0.4);
  background: linear-gradient(135deg, #dfc07a, var(--gold));
  color: #0f172a;
}

/* Stripe logo image */
.stripe-logo-img {
  height: 1.6rem;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 200ms ease;
}
.stripe-logo-img:hover { opacity: 0.9; }
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  color: var(--ink-muted);
  font-weight: 500;
}
.pricing-trust-item svg { stroke: var(--gold); opacity: 0.7; flex-shrink: 0; }

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.testimonials-grid--featured {
  max-width: 780px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
.testimonial-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease;
  margin: 0;
}
.testimonial-card:hover {
  border-color: rgba(197,160,89,0.25);
  transform: translateY(-2px);
}
.testimonial-card--featured {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  gap: 1.25rem;
  background: linear-gradient(180deg, rgba(197,160,89,0.06), rgba(255,255,255,0.02));
  border-color: rgba(197,160,89,0.2);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.6);
}
.testimonial-card--featured .testimonial-stars {
  font-size: 1.1rem;
}
.testimonial-quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: clamp(0.98rem, 0.92rem + 0.2vw, 1.08rem);
  color: var(--ink-soft);
  line-height: 1.75;
  font-style: normal;
}
.testimonial-quote p { margin: 0; }
.testimonial-quote strong { color: #fff; font-weight: 600; }
.testimonial-lead {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}
.testimonial-outro {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.testimonial-heart {
  color: #e25555;
  margin-left: 0.15em;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-card blockquote {
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(197,160,89,0.25);
  overflow: hidden;
}
.testimonial-avatar--photo {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  background: transparent;
  border-color: rgba(197,160,89,0.35);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.8);
}
.testimonial-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.testimonial-name {
  font-size: clamp(0.88rem, 0.85rem + 0.1vw, 0.95rem);
  font-weight: 700;
  color: #fff;
}
.testimonial-role {
  font-size: clamp(0.78rem, 0.75rem + 0.1vw, 0.85rem);
  color: var(--ink-muted);
}

/* ═══ FAQ ═══ */
.faq-section {
  padding: var(--space-section) var(--space-page);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: border-color 200ms ease;
}
.faq-item:hover { border-color: rgba(197,160,89,0.2); }
.faq-item[open] { border-color: rgba(197,160,89,0.3); background: rgba(197,160,89,0.04); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.3rem) clamp(1rem, 2vw, 1.5rem);
  cursor: pointer;
  list-style: none;
  font-size: clamp(0.95rem, 0.92rem + 0.15vw, 1.05rem);
  font-weight: 600;
  color: #fff;
  transition: color 180ms ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ""; }
.faq-question:hover { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--ink-muted);
  transition: transform 250ms ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.3rem);
}
.faq-answer p {
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.95rem);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.faq-contact {
  max-width: 720px;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  text-align: center;
}
.faq-contact p {
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  color: var(--ink-muted);
}
.faq-contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 180ms ease;
}
.faq-contact a:hover { color: #fff; }

/* ═══ FOOTER PAYMENT ═══ */
.footer-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-payment-label {
  font-size: clamp(0.78rem, 0.75rem + 0.1vw, 0.85rem);
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.stripe-logo {
  color: rgba(255,255,255,0.6);
  transition: color 200ms ease;
}
.stripe-logo:hover { color: var(--gold); }
.footer-payment-methods {
  font-size: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ═══ RESPONSIVE ═══ */

/* Tablet (max 880px) */
@media (max-width: 880px) {
  /* Nav */
  .top-bar-nav { display: none; }
  .hamburger { display: flex; }
  .top-bar-logo img { height: 2rem; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: clamp(3rem, 6vw, 4rem); }
  .hero-content { padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 3vw, 2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .hero-headline { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero-price-hook { font-size: 0.82rem; }

  /* Proof bar */
  .proof-bar-inner { gap: 1rem; }
  .proof-divider { display: none; }

  /* Steps */
  .step-connector { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-card { max-width: 100%; }

  /* Demo */
  .demo-finding { flex-direction: column; }
  .demo-card { margin: 0 -0.5rem; }

  /* Pricing grid */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-grid-6 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .pricing-grid-7 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Audience */
  .audience-grid { grid-template-columns: 1fr; }

  /* Login / Signup shells */
  .login-shell { grid-template-columns: 1fr; }
  .signup-shell { grid-template-columns: 1fr; }

  /* Kontakt */
  .kontakt-shell { grid-template-columns: 1fr; }

  /* Footer payment */
  .footer-payment-icons { flex-wrap: wrap; justify-content: center; }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
  /* Global spacing */
  :root { --space-page: 1rem; }

  /* Hero */
  .hero-content { padding: 1.5rem 1rem 1.2rem; }
  .hero-headline { font-size: 1.5rem; }
  .hero-sub { font-size: 0.92rem; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
  .hero-price-hook { font-size: 0.78rem; padding: 0.4rem 1rem; }

  /* Proof bar */
  .proof-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    justify-items: center;
  }

  /* Dilemma */
  .dilemma-card { padding: 1.5rem 1.2rem; }

  /* Demo */
  .demo-header { flex-direction: column; align-items: flex-start; }
  .demo-finding-severity { font-size: 0.55rem; }

  /* Pricing stations */
  .pricing-stations {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 100%;
  }
  .pricing-station-connector {
    justify-content: center;
    padding: 0;
  }
  .pricing-station-connector span {
    width: 2px;
    height: 1.2rem;
    background: linear-gradient(180deg, rgba(197,160,89,0.15), rgba(197,160,89,0.4), rgba(197,160,89,0.15));
  }
  .pricing-station-connector span::after {
    right: -3px;
    top: auto;
    bottom: -3px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(197,160,89,0.4);
    border-bottom: none;
  }
  .pricing-station { padding: 1.5rem 1rem 1.2rem; }

  /* Pricing grid */
  .pricing-grid-6 { grid-template-columns: 1fr; }
  .pricing-grid-7 { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { padding: 0.9rem 1rem; font-size: 0.92rem; }
  .faq-answer { padding: 0 1rem 0.9rem; }

  /* Footer */
  .site-footer { padding: 2rem var(--space-page) 1.5rem; gap: 1.2rem; }
  .footer-payment-icons { flex-direction: column; align-items: center; gap: 0.3rem; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; gap: 0.8rem; text-align: center; }

  /* Signup name row */
  .signup-name-row { grid-template-columns: 1fr; }

  /* Zugang */
  .zugang-shell { grid-template-columns: 1fr; }
  .zugang-name-row { grid-template-columns: 1fr !important; }
}

/* ═══ OLED Enhancement ═══ */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-deep: #071222;
  }
}
