/* ==========================================================================
   KTERING · Landing Page
   Ein Stylesheet. Schwarz + Gold + warmes Cream.
   Abgeleitet aus der Ktering-Logowelt.
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Brand — aus Logo abgeleitet */
  --ink: #0F0F0F;
  --ink-2: #1C1A17;
  --ink-3: #2B2620;
  --gold: #D1A46A;
  --gold-dark: #A8814E;
  --gold-light: #E8CFA2;
  --gold-soft: #F4E6CC;

  /* Warme Neutrals */
  --paper: #FFFFFF;
  --cream: #FAF7F1;
  --cream-2: #F3EEE3;
  --cream-3: #EADFC9;
  --sand: #DCCDAF;

  /* Text */
  --text: #1F1B16;
  --text-muted: #6B6155;
  --text-subtle: #7A7064;  /* AA on cream (4.8:1) */
  --text-inverse: #F4EDDF;

  /* Lines */
  --border-subtle: #ECE4D2;
  --border: #D8CCB3;
  --border-strong: #A89A7E;

  /* Semantic */
  --success: #4E7B52;
  --warn: #C2935A;
  --error: #B8554A;

  /* Type */
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px; --s-8: 40px;
  --s-9: 56px; --s-10: 72px; --s-11: 96px; --s-12: 128px;

  /* Radii */
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 28px; --r-full: 999px;

  /* Shadow (warm, soft) */
  --shadow-xs: 0 1px 1px rgba(15, 15, 15, 0.04);
  --shadow-sm: 0 2px 4px rgba(15, 15, 15, 0.05), 0 1px 2px rgba(15, 15, 15, 0.04);
  --shadow-md: 0 8px 20px -4px rgba(15, 15, 15, 0.08), 0 2px 4px rgba(15, 15, 15, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(15, 15, 15, 0.14), 0 6px 12px -4px rgba(15, 15, 15, 0.04);
  --shadow-xl: 0 40px 80px -20px rgba(15, 15, 15, 0.28);

  /* Layout */
  --container: 1260px;
  --nav-h: 72px;
}

/* ---------- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--text);
  background: var(--cream);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography -------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 4.2rem); line-height: 1.06; font-weight: 440; letter-spacing: -0.035em; max-width: 20ch; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.08; font-weight: 460; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); line-height: 1.25; font-weight: 480; letter-spacing: -0.02em; }
h4 { font-size: 1.02rem; line-height: 1.35; font-weight: 600; letter-spacing: -0.005em; }

.lead {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 58ch;
  margin: var(--s-5) 0 0;
  font-weight: 400;
}

.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: var(--s-3);
}
.eyebrow--muted { color: var(--text-muted); }
.eyebrow--gold { color: var(--gold-dark); }

/* ---------- Layout ------------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 32px);
}
.section { padding: clamp(56px, 6vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--text-inverse); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink .lead { color: #C7BEB0; }

.section-head { max-width: 720px; margin-bottom: var(--s-8); }
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Nav --------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.72);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 200ms;
}
.nav--scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 24px -12px rgba(0,0,0,.08);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img { height: 30px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-7);
}
.nav__links a {
  font-size: 0.94rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 140ms;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: var(--s-3); }
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  background: var(--paper);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: background 160ms;
}
.nav__burger:hover { background: var(--cream-2); }
.nav__burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 220ms, opacity 160ms; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-4) clamp(20px, 3vw, 32px) var(--s-6);
  border-top: 1px solid var(--border-subtle);
  background: var(--paper);
}
.nav__mobile[hidden] { display: none !important; }
.nav__mobile a {
  padding: 12px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__mobile a.btn {
  border: 0;
  margin-top: var(--s-3);
  text-align: center;
  font-weight: 500;
  justify-content: center;
  color: var(--paper);
  background: var(--ink);
}
.nav__mobile a.btn--primary { color: var(--paper); }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav--open .nav__mobile { display: flex; }
}

/* Skip-Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--gold);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 500;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms, color 180ms, box-shadow 180ms, border-color 180ms;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 16px; font-size: 0.88rem; min-height: 40px; }
@media (max-width: 900px) {
  .btn--sm { min-height: 44px; padding: 10px 18px; }
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(168, 129, 78, 0.3);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--border-strong);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--ghost { color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--cream-2); }

.btn__arrow { display: inline-block; transition: transform 200ms; font-size: 1.1em; line-height: 1; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Hero -------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 6vw, 96px);
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -15%;
  width: 55%; aspect-ratio: 1;
  background:
    radial-gradient(closest-side, rgba(209, 164, 106, 0.22), transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31, 27, 22, .055) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 95%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 1000px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--s-5);
  box-shadow: var(--shadow-xs);
}
.hero__kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(209, 164, 106, 0.14);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 500;
}
.br-desktop { display: inline; }
@media (max-width: 520px) {
  .br-desktop { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); line-height: 1.08; }
}
.hero__num {
  font-feature-settings: "lnum";
}
.hero__ctas {
  margin-top: var(--s-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.hero__meta {
  margin-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-7);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero__meta-item { display: inline-flex; align-items: center; gap: var(--s-2); }
.hero__phone {
  margin-top: var(--s-4);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero__phone a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms, color 160ms;
  display: inline-block;
  padding: 4px 0;
  font-weight: 500;
}
.hero__phone a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero__meta-item .check {
  width: 16px; height: 16px; color: var(--gold-dark);
  flex-shrink: 0;
}

.hero__visual { position: relative; }
.hero__mark {
  position: absolute;
  top: -36px; right: -24px;
  width: 56px; height: 56px;
  opacity: 0.75;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(15, 15, 15, 0.15));
}
@media (max-width: 1000px) { .hero__mark { display: none; } }

/* ---------- Browser Mockup --------------------------------------------- */
.browser {
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: transform 500ms ease;
}
.browser--tilt { transform: perspective(1800px) rotateY(-3deg) rotateX(0); }
.browser--tilt:hover { transform: perspective(1800px) rotateY(0) rotateX(0); }
@media (max-width: 1000px) {
  .browser--tilt { transform: none; }
  .browser--tilt:hover { transform: none; }
}
.browser__chrome {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: 10px 14px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--border-subtle);
}
.browser__dots { display: flex; gap: 6px; }
.browser__dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--border-strong);
  opacity: 0.6;
}
.browser__dots span:nth-child(1) { background: #CC7567; }
.browser__dots span:nth-child(2) { background: var(--gold); }
.browser__dots span:nth-child(3) { background: #7EA185; }
.browser__url {
  flex: 1;
  background: var(--paper);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.browser__body {
  background: var(--cream);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.browser__body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 800ms ease;
}

/* ---------- Floating Stat Card ----------------------------------------- */
.hero__badge {
  position: absolute;
  bottom: -22px;
  left: -40px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 20px 40px -12px rgba(15, 15, 15, 0.18), 0 0 0 1px rgba(15, 15, 15, 0.04);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.86rem;
  z-index: 4;
}
@media (max-width: 1000px) { .hero__badge { left: 14px; bottom: 14px; } }
@media (max-width: 560px) {
  .hero__badge {
    position: static;
    margin: -22px auto 0;
    max-width: max-content;
    left: auto; bottom: auto;
  }
}
.hero__badge-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--gold);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 16px;
}
.hero__badge-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.hero__badge-text span { color: var(--text-muted); font-size: 0.8rem; }

/* ---------- Trust Bar (technical qualifiers) --------------------------- */
.trust-bar {
  background: var(--paper);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--s-5) 0;
}
.trust-bar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4) var(--s-8);
  align-items: center;
}
.trust-bar__list li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.trust-bar__icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .trust-bar__list { justify-content: center; }
}

/* ---------- Trust Strip ------------------------------------------------- */
.trust {
  padding: var(--s-10) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--cream);
}
.trust__label {
  text-align: center;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-subtle);
  margin-bottom: var(--s-6);
  font-weight: 600;
}
.trust__marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
}
.trust__marks span {
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  color: var(--text-muted);
  letter-spacing: -0.005em;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  opacity: 0.8;
}
.trust__marks span + span::before {
  content: "·";
  margin: 0 clamp(10px, 2vw, 28px);
  opacity: 0.6;
  font-style: normal;
}
.trust__marks a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color 160ms, border-color 160ms;
}
.trust__marks a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}
@media (max-width: 720px) {
  .trust__marks { flex-direction: column; gap: 10px; }
  .trust__marks span + span::before { display: none; }
}

/* ---------- Problem ----------------------------------------------------- */
.problem { background: var(--cream-2); }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (max-width: 900px) { .problem__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .problem__grid { grid-template-columns: 1fr; } }
.problem__card {
  background: var(--cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--s-7);
  transition: transform 240ms ease, border-color 240ms, box-shadow 240ms;
}
.problem__card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.problem__card strong {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 460;
  color: var(--ink);
  display: block;
  margin-bottom: var(--s-3);
  font-feature-settings: "lnum";
  letter-spacing: -0.025em;
  line-height: 1;
}
.problem__card strong em {
  color: var(--gold-dark);
  font-style: normal;
}
.problem__card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ---------- Features ---------------------------------------------------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--s-7);
}
@media (max-width: 1024px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features__grid { grid-template-columns: 1fr; } .feature { padding: var(--s-6); } }
.feature {
  background: var(--paper);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: background 220ms;
  position: relative;
}
.feature:hover { background: var(--cream); }
.feature--accent { background: var(--paper); }
.feature--accent:hover { background: var(--cream); }
.feature__icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--ink);
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: var(--s-4);
  flex-shrink: 0;
}
.feature__icon svg { width: 20px; height: 20px; }
.feature h3 { margin: 0 0 var(--s-1); }
.feature p { margin: 0; color: var(--text-muted); font-size: 0.96rem; }
.feature { position: relative; }
.feature__badge {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  padding: 4px 10px;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--r-full);
}
@media (max-width: 1024px) {
  .feature__badge {
    position: static;
    align-self: flex-start;
    margin-top: var(--s-4);
  }
}

/* ---------- Showcase ---------------------------------------------------- */
.showcase { background: var(--cream); }
.showcase__row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 6vw, 88px);
}
.showcase__row--reverse { grid-template-columns: 1.05fr 0.95fr; }
.showcase__row--reverse .showcase__text { order: 2; }
.showcase__row--reverse .showcase__visual { order: 1; }
.showcase__row:last-child { margin-bottom: 0; }
@media (max-width: 960px) {
  .showcase__row,
  .showcase__row--reverse { grid-template-columns: 1fr; gap: var(--s-7); }
  .showcase__row--reverse .showcase__text { order: 1; }
  .showcase__row--reverse .showcase__visual { order: 2; }
}
.showcase__text {
  max-width: 560px;
  margin: 0;
}
.showcase__text h2 { margin-bottom: var(--s-5); }
.showcase__h {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  max-width: 22ch;
}
.showcase__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
  line-height: 1.65;
  margin: 0;
}
.showcase__list {
  margin: var(--s-5) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  max-width: 100%;
}
.showcase__list li {
  padding-left: var(--s-6);
  position: relative;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.45;
}
.showcase__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 13px; height: 7px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.showcase__visual {
  position: relative;
  margin: 0 auto;
}
.showcase__visual .browser { margin: 0; max-width: 100%; box-shadow: 0 40px 80px -20px rgba(15, 15, 15, 0.22); }
.showcase__visual .browser__body {
  aspect-ratio: 2720 / 1720;
  background: var(--paper);
}
.showcase__visual .browser__body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Steps ------------------------------------------------------- */
.steps { background: var(--paper); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
  position: relative;
}
@media (max-width: 840px) { .steps__grid { grid-template-columns: 1fr; } }
.step {
  background: var(--cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--s-8);
  position: relative;
  transition: border-color 200ms, transform 200ms;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.step:hover { border-color: var(--gold); transform: translateY(-2px); }
.step__num {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.2em;
  display: inline-block;
  line-height: 1;
  margin-bottom: var(--s-3);
  padding: 6px 11px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-light);
  border-radius: var(--r-full);
  align-self: flex-start;
}
.step h3 { margin: 0; }
.step p { margin: 0; color: var(--text-muted); flex: 1; }
.step__time {
  align-self: flex-start;
  display: inline-block;
  margin-top: var(--s-4);
  padding: 4px 11px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 600;
  background: var(--gold-soft);
  border: 1px solid var(--gold-light);
  border-radius: var(--r-full);
}

/* ---------- Metrics ----------------------------------------------------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #000;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
@media (max-width: 720px) { .metrics { grid-template-columns: 1fr; } }
.metric {
  padding: var(--s-9) var(--s-6);
  text-align: center;
  background: var(--ink);
  transition: background 220ms;
}
.metric:hover { background: var(--ink-2); }
.metric strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  color: var(--gold);
  font-weight: 440;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-2);
  line-height: 1;
  font-feature-settings: "lnum";
}
.metric span {
  color: #C7BEB0;
  font-size: 0.92rem;
  max-width: 28ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Audience Cards ---------------------------------------------- */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.audience__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 920px) { .audience__grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .audience__grid--two { grid-template-columns: 1fr; } }

.audience__hotel-note {
  margin: var(--s-9) auto 0;
  max-width: 880px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold-dark);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-7);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
}
.audience__hotel-note strong { color: var(--ink); font-weight: 600; }
.audience__hotel-note a {
  color: var(--gold-dark);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms, color 160ms;
}
.audience__hotel-note a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.audience-card {
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--s-8);
  transition: border-color 220ms, transform 220ms;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.audience-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.audience-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 600;
  padding: 5px 12px;
  background: var(--gold-soft);
  border-radius: var(--r-full);
  margin-bottom: var(--s-3);
}
.audience-card h3 { margin: 0 0 var(--s-2); }
.audience-card p { color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ---------- Pricing ----------------------------------------------------- */
.pricing { background: var(--cream); }

/* ROI Block */
.roi {
  max-width: 860px;
  margin: 0 auto var(--s-9);
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  padding: var(--s-7) var(--s-8);
}
.roi__head { margin-bottom: var(--s-5); }
.roi__head h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.roi__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.roi__list li {
  position: relative;
  padding-left: var(--s-6);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}
.roi__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.roi__list strong { color: var(--ink); font-weight: 600; }
.roi__disclaimer {
  margin: 0;
  padding-top: var(--s-4);
  border-top: 1px dashed var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Installment hint in price cards */
.price-card__installment {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--s-6);
  margin-top: calc(-1 * var(--s-5));
  padding-bottom: var(--s-5);
  border-bottom: 1px dashed var(--border-subtle);
}
.price-card--featured .price-card__installment { color: #B5AA9A; border-color: var(--ink-3); }

/* Guarantee line */
.pricing__guarantee {
  margin: var(--s-9) auto var(--s-7);
  max-width: 720px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
  align-items: stretch;
}
@media (max-width: 1000px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--featured {
  background: var(--ink);
  color: var(--text-inverse);
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}
@media (max-width: 1000px) {
  .price-card--featured { transform: none; order: -1; }
}
.price-card--featured h3 { color: var(--paper); }
.price-card--featured .price-card__desc { color: #C7BEB0; }
.price-card--featured .price-card__price { color: var(--gold); }
.price-card--featured .price-card__price-sub { color: #9E9283; border-color: var(--ink-3); }
.price-card--featured .price-card__list li { color: #D5CCBC; }
.price-card--featured .price-card__list li::before { border-color: var(--gold); }

.price-card__badge {
  position: absolute;
  top: -14px; right: var(--s-6);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  padding: 6px 13px;
  border-radius: var(--r-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 6px 14px -4px rgba(168,129,78,0.4);
}
.price-card__name {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.price-card--featured .price-card__name { color: var(--gold); }
.price-card h3 { margin-bottom: var(--s-3); }
.price-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 3em;
  margin-bottom: var(--s-6);
  line-height: 1.5;
}
.price-card__price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 460;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: var(--s-2);
  font-feature-settings: "lnum";
}
.price-card__price-sub {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--border-subtle);
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.price-card__list li {
  padding-left: var(--s-6);
  position: relative;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.45;
}
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 13px; height: 7px;
  border-left: 1.8px solid var(--gold-dark);
  border-bottom: 1.8px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.price-card__cta { text-align: center; }
.price-card .btn { width: 100%; }

.pricing__extras {
  margin-top: var(--s-9);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 760px) { .pricing__extras { grid-template-columns: 1fr; } }
.pricing__extra {
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--s-6) var(--s-7);
  position: relative;
  transition: border-color 200ms, transform 200ms;
}
.pricing__extra:hover { border-color: var(--gold); transform: translateY(-2px); }
.pricing__extra-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.pricing__extra h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
  text-transform: none;
}
.pricing__extra p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.pricing__extra p strong { color: var(--ink); font-weight: 600; }
.pricing__extra p em { font-style: normal; color: var(--gold-dark); font-weight: 600; }

/* ---------- FAQ -------------------------------------------------------- */
.faq { background: var(--cream-2); }
.faq__list {
  max-width: 820px;
  margin: var(--s-9) auto 0;
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-top: 1px solid var(--border);
  padding: var(--s-6) 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  width: 100%;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.018em;
  padding: 0;
  cursor: pointer;
  list-style: none;
  transition: color 180ms;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold-dark); }
.faq__q::after {
  content: "";
  width: 16px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 6l5 5 5-5' stroke='%23A8814E' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 260ms cubic-bezier(.4,.2,.2,1);
}
.faq__item[open] .faq__q::after { transform: rotate(180deg); }
.faq__a {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: var(--s-4);
  max-width: 70ch;
}

/* ---------- Testimonials (Anchor section) ------------------------------- */
.anchor {
  background: var(--cream-2);
  padding: clamp(56px, 7vw, 104px) 0;
  position: relative;
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
  transition: border-color 220ms, transform 220ms;
}
.testimonial:hover { border-color: var(--gold); transform: translateY(-2px); }
.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-dark) 100%);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px -6px rgba(15,15,15,0.28);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.testimonial__avatar--img { background: var(--cream-2); }
.testimonial__avatar picture,
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  position: relative;
  padding-left: var(--s-4);
  border-left: 2px solid var(--gold);
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: var(--s-4);
}
.testimonial figcaption strong {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.98rem;
}

/* Case Study */
.case-study {
  margin: var(--s-10) auto 0;
  max-width: 1100px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-9);
  text-align: center;
}
.case-study__eyebrow {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: var(--s-6);
}
.case-study__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-5);
}
@media (max-width: 720px) { .case-study__metrics { grid-template-columns: 1fr; } }
.case-study__metric {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: 0 var(--s-4);
}
.case-study__metric + .case-study__metric {
  border-left: 1px solid var(--border-subtle);
}
@media (max-width: 720px) {
  .case-study__metric + .case-study__metric { border-left: 0; border-top: 1px solid var(--border-subtle); padding-top: var(--s-5); }
}
.case-study__metric strong {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 460;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-feature-settings: "lnum";
}
.case-study__metric span {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.case-study__note {
  margin: 0;
  padding-top: var(--s-5);
  border-top: 1px dashed var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.audience-card__role {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 var(--s-3) !important;
  min-height: 2.6em;
}
.audience-card__role strong { color: var(--ink); font-weight: 600; }
.audience-card__role a { color: var(--gold-dark); }
.audience-card__role a:hover { color: var(--ink); }

/* Herkunft section visual distinction */
#herkunft .audience__grid .audience-card {
  background: var(--cream);
  border-color: var(--cream-3);
}
#herkunft .audience-card__tag {
  background: var(--ink);
  color: var(--gold);
}

/* Founder avatar */
.founder-card { align-items: flex-start; }
.founder-card__avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-dark) 100%);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 32px -10px rgba(15,15,15,0.35);
  margin-bottom: var(--s-5);
  overflow: hidden;
}
.founder-card__avatar--img { background: var(--cream-2); }
.founder-card__avatar picture,
.founder-card__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.cta__sub {
  margin-top: var(--s-8);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 0.86rem;
  color: #9E9283;
}
.cta__sub span { opacity: 0.9; }

/* ---------- Final CTA --------------------------------------------------- */
.cta {
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(209, 164, 106, 0.35), transparent 70%),
    var(--ink);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.cta__mark {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, 70%); height: auto;
  opacity: 0.045;
  pointer-events: none;
}
.cta__inner {
  text-align: center;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta h2 { color: var(--paper); margin-bottom: var(--s-5); }
.cta p { color: #C7BEB0; font-size: 1.1rem; margin: 0 auto var(--s-8); max-width: 54ch; line-height: 1.6; }
.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.cta .btn--gold { box-shadow: 0 8px 24px rgba(209, 164, 106, 0.35); }
.cta .btn--gold:hover { transform: translateY(-2px); }
.cta .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,.18); border-width: 1px; border-style: solid; }
.cta .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }

/* ---------- Footer ----------------------------------------------------- */
.footer {
  background: var(--ink);
  color: #A6998A;
  padding: var(--s-11) 0 var(--s-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-11);
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-5);
}
.footer__brand img { height: 32px; margin-bottom: var(--s-5); width: auto; }
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 34ch;
  color: #A6998A;
  margin: 0;
}
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer__links a {
  display: inline-block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #A6998A;
  transition: color 160ms;
  min-height: 32px;
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--s-7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: 0.84rem;
  color: #9E9283;
}
.footer__bottom span strong { color: var(--gold); font-weight: 500; }

/* ---------- Scroll Reveal ---------------------------------------------- */
.reveal { opacity: 1; transform: none; transition: opacity 700ms cubic-bezier(.2,.6,.2,1), transform 700ms cubic-bezier(.2,.6,.2,1); }
.js-reveal .reveal { opacity: 0; transform: translateY(20px); }
.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Focus states (a11y) ---------------------------------------- */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.btn--gold:focus-visible,
.price-card--featured :focus-visible,
.cta :focus-visible,
.section--ink :focus-visible,
.footer :focus-visible {
  outline-color: var(--gold);
}
.faq__q:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav__links a:focus-visible,
.nav__mobile a:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ---------- Mobile menu phone link ------------------------------------- */
.nav__mobile-tel {
  padding: 14px 4px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--gold-dark) !important;
  min-height: 44px;
}

/* ---------- Tablet breakpoint unification ------------------------------ */
@media (max-width: 860px) {
  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .audience__grid { grid-template-columns: 1fr; }
  .audience__grid--two { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion (expanded) ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-reveal .reveal { opacity: 1; transform: none; }
  .browser--tilt { transform: none !important; }
  .price-card--featured { transform: none; }
  html { scroll-behavior: auto; }
}
