/**
 * Achse 16247 — Premium Landing (Deutschland)
 * Design: Graphit-Signal / Editorial Diagonal
 * Cursor: mix-blend-mode + :has() States
 */

/* --- Font faces (Google Fonts loaded in HTML) --- */
:root {
  --c-bg: #f4f5f7;
  --c-bg-elevated: #ffffff;
  --c-ink: #1c2433;
  --c-ink-soft: #2a3344;
  --c-muted: #8b94a7;
  --c-accent: #3d7c78;
  --c-accent-dark: #2f5f5c;
  --c-gold: #c9a227;
  --c-gold-soft: rgba(201, 162, 39, 0.14);
  --c-line: rgba(28, 36, 51, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 18px 50px rgba(28, 36, 51, 0.08);
  --shadow-card: 0 8px 30px rgba(28, 36, 51, 0.06);
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space-section: clamp(3.5rem, 8vw, 7rem);
  --max: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

/* Default cursor restored when custom cursor inactive */
body:not(.cursor-active) {
  cursor: auto;
}

body.cursor-active {
  cursor: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--c-ink);
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* --- Layout primitives --- */
.shell {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--dark {
  background: linear-gradient(165deg, #171d28 0%, #1c2433 45%, #222b3a 100%);
  color: #e7e9ee;
}

.section--dark a {
  color: #9ed4cf;
}

.section--dark a:hover {
  color: #fff;
}

.noise {
  position: relative;
}

.noise::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(14px);
  background: rgba(244, 245, 247, 0.82);
  border-bottom: 1px solid var(--c-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--c-ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  box-shadow: 0 6px 20px rgba(61, 124, 120, 0.35);
  position: relative;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  transform: rotate(8deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.brand__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* --- Multi-level nav --- */
.nav-toggle {
  display: none;
  border: 1px solid var(--c-line);
  background: var(--c-bg-elevated);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  color: var(--c-ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--c-ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s var(--ease-out), color 0.2s;
}

.nav__link:hover,
.nav__item.is-open > .nav__link {
  background: rgba(28, 36, 51, 0.06);
  color: var(--c-ink);
}

.nav__chev {
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.55;
}

.nav__sub {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  min-width: 240px;
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out),
    visibility 0.2s;
  z-index: 950;
}

.nav__item:hover .nav__sub,
.nav__item:focus-within .nav__sub,
.nav__item.is-open .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sub a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--c-ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.nav__sub a:hover {
  background: rgba(61, 124, 120, 0.1);
  color: var(--c-accent-dark);
}

.nav__sub small {
  display: block;
  font-weight: 500;
  color: var(--c-muted);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-gold) 0%, #b8921f 100%);
  color: #1a1406;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(201, 162, 39, 0.45);
  color: #1a1406;
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 64px;
    background: rgba(244, 245, 247, 0.97);
    border-bottom: 1px solid var(--c-line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    max-height: min(78vh, 560px);
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.25s, visibility 0.25s;
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.5rem 0.75rem;
    background: transparent;
    display: none;
  }

  .nav__item.is-open .nav__sub {
    display: block;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 10vw, 6rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  margin-bottom: 1rem;
}

.hero__kicker span {
  width: 28px;
  height: 2px;
  background: var(--c-gold);
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin: 0 0 1.25rem;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--c-muted);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--c-ink);
  color: #fff;
  box-shadow: 0 14px 36px rgba(28, 36, 51, 0.22);
}

.btn--primary:hover {
  transform: translateY(-1px);
  color: #fff;
}

.btn--ghost {
  background: var(--c-bg-elevated);
  border-color: var(--c-line);
  color: var(--c-ink);
}

.btn--ghost:hover {
  border-color: rgba(28, 36, 51, 0.18);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--c-ink);
  line-height: 1.1;
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.hero__visual {
  position: relative;
  min-height: 340px;
}

.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: skewY(-3deg) scale(0.98);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-line);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewY(3deg) scale(1.06);
}

.hero__float {
  position: absolute;
  right: 6%;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  max-width: 220px;
  box-shadow: var(--shadow-card);
}

.hero__float strong {
  font-family: var(--font-display);
  display: block;
  font-size: 1.1rem;
  color: var(--c-ink);
}

/* --- Typography scale --- */
h2,
.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

h3,
.h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin: 0 0 0.5rem;
}

.section__intro {
  max-width: 62ch;
  color: var(--c-muted);
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--c-muted);
}

/* --- Cards & grids --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-card);
}

.card--accent {
  border-color: rgba(61, 124, 120, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--c-gold-soft);
  color: #6b5610;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Value ladder steps --- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-line);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--c-gold);
  line-height: 1;
}

.section--dark .step {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .step::before {
  color: #e6cf7a;
}

/* --- Testimonials --- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 800px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

.quote {
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius-lg);
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-line);
  position: relative;
}

.quote p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--c-ink-soft);
}

.quote footer {
  font-size: 0.88rem;
  color: var(--c-muted);
  font-weight: 600;
}

/* --- Pricing strip --- */
.price-band {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(61, 124, 120, 0.12), rgba(201, 162, 39, 0.12));
  border: 1px solid var(--c-line);
}

.price-band strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--c-ink);
}

/* --- Forms --- */
.form {
  display: grid;
  gap: 1rem;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 640px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-ink);
  display: grid;
  gap: 0.35rem;
}

input,
textarea,
select {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  width: 100%;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.alert--ok {
  background: rgba(61, 124, 120, 0.12);
  color: var(--c-accent-dark);
  border: 1px solid rgba(61, 124, 120, 0.25);
}

.alert--err {
  background: rgba(180, 60, 60, 0.08);
  color: #7a1f1f;
  border: 1px solid rgba(180, 60, 60, 0.2);
}

/* --- Footer --- */
.site-footer {
  background: #141922;
  color: #c5cad6;
  padding-block: 3rem 2rem;
  margin-top: 0;
}

.site-footer a {
  color: #b8ded9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-list a {
  text-decoration: none;
}

.footer-list a:hover {
  color: #fff;
}

.footer-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: #8b94a7;
}

/* --- Custom cursor layers --- */
.cursor-layer {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: exclusion;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #fff;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
    margin 0.35s var(--ease-out), border-radius 0.35s var(--ease-out),
    opacity 0.25s;
}

/* Pointer states via :has() on body — keeps JS thin, leverages 2026 browsers */
body.cursor-active:has(a:hover) .cursor-ring,
body.cursor-active:has(button:hover) .cursor-ring,
body.cursor-active:has([data-cursor="pointer"]:hover) .cursor-ring,
body.cursor-active:has(.cursor-pointer:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 999px;
}

body.cursor-active:has([data-cursor="view"]:hover) .cursor-ring,
body.cursor-active:has(img:hover) .cursor-ring,
body.cursor-active:has(figure:hover) .cursor-ring {
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  border-radius: 18px;
}

body.cursor-active:has([data-cursor="text"]:hover) .cursor-ring {
  width: 4px;
  height: 32px;
  margin: -16px 0 0 -2px;
  border-radius: 2px;
  border-width: 0;
  background: rgba(255, 255, 255, 0.85);
}

/* Variant hooks (see README) */
body[data-cursor-variant="neon"] .cursor-ring {
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.35);
}

body[data-cursor-variant="neon"] .cursor-dot {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

body[data-cursor-variant="minimal"] .cursor-ring {
  border-width: 1px;
  opacity: 0.55;
}

/* Reduced motion: hide custom layers */
@media (prefers-reduced-motion: reduce) {
  .cursor-layer {
    display: none !important;
  }
}

/* --- Utility --- */
.mt-0 {
  margin-top: 0;
}
.mb-sm {
  margin-bottom: 0.75rem;
}
.mb-md {
  margin-bottom: 1.25rem;
}
.mb-lg {
  margin-bottom: 2rem;
}
.text-muted {
  color: var(--c-muted);
}
.text-balance {
  text-wrap: balance;
}

.split-diagonal {
  position: relative;
  padding-block: var(--space-section);
}

.split-diagonal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(61, 124, 120, 0.06) 35%, rgba(61, 124, 120, 0.06) 65%, transparent 65%);
  pointer-events: none;
}

.tagline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  background: rgba(28, 36, 51, 0.06);
  color: var(--c-ink-soft);
}

.section--dark .tag {
  background: rgba(255, 255, 255, 0.06);
  color: #dbe0ea;
}

/* --- Conversion: Countdown, Sticky CTA, Modal, Exit, Wizard --- */
body.has-sticky-cta {
  padding-bottom: 76px;
}

.countdown-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.18), rgba(61, 124, 120, 0.12));
  border: 1px solid var(--c-line);
  font-weight: 700;
  color: var(--c-ink);
}

.countdown-strip--compact {
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem;
}

.countdown-strip [data-countdown-days] {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--c-accent-dark);
}

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8500;
  background: rgba(28, 36, 51, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.55rem 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

.sticky-cta-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.sticky-cta-bar__btn {
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.sticky-cta-bar__link {
  color: #e7e9ee !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.conv-modal {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: grid;
  place-items: center end;
  padding: 1rem;
}

.conv-modal[hidden] {
  display: none;
}

.conv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 26, 0.55);
  backdrop-filter: blur(4px);
}

.conv-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 1.25rem 1.35rem 1.5rem;
  margin-left: auto;
  box-shadow: var(--shadow-soft);
}

.conv-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.conv-modal__x {
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--c-muted);
  padding: 0.15rem 0.35rem;
}

.exit-intent {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.exit-intent[hidden] {
  display: none;
}

.exit-intent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 26, 0.45);
  backdrop-filter: blur(3px);
}

.exit-intent__box {
  position: relative;
  z-index: 1;
  max-width: 420px;
  padding: 1.5rem;
  text-align: center;
}

.exit-intent__box .btn {
  margin-top: 0.5rem;
}

.foerder-wizard__progress {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
}

.foerder-wizard__q {
  font-weight: 600;
  color: var(--c-ink);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.foerder-wizard__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.foerder-wizard__opts--stack {
  flex-direction: column;
}

.foerder-wizard__form {
  display: grid;
  gap: 0.75rem;
}

.foerder-wizard__form label {
  display: grid;
  gap: 0.35rem;
}

.foerder-wizard__check {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--c-muted);
}

.foerder-wizard__check input {
  width: auto;
  margin-right: 0.35rem;
}

.foerder-wizard__result .btn {
  margin-top: 0.75rem;
  margin-right: 0.5rem;
}

.header-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.header-cta--ghost {
  background: transparent !important;
  color: var(--c-ink) !important;
  border: 1px solid var(--c-line) !important;
  box-shadow: none !important;
  font-size: 0.88rem;
  padding: 0.55rem 0.85rem !important;
}
