/* ============================================================
   CALLWISE — Light Editorial Theme
   ------------------------------------------------------------
   Self-contained stylesheet for the new design.
   Loaded ALONGSIDE animations.css (which keeps its keyframes).
   The old dark CSS files (base/layout/components) still exist
   for the dark-backup page, but aren't loaded here.
============================================================ */

/* ---------- Fonts (locally hosted, DSGVO) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/inter-light.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/inter-bold.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  /* Surface — warm off-white, never sterile pure-#fff */
  --bg:           #FAFAF7;
  --bg-2:         #F3F3EE;
  --surface:      #FFFFFF;
  --surface-2:    #F7F7F2;

  /* Borders — dark hairlines, low alpha */
  --border:       rgba(15, 17, 22, 0.07);
  --border-2:     rgba(15, 17, 22, 0.12);
  --border-3:     rgba(15, 17, 22, 0.20);

  /* Text — near-black with subtle warmth */
  --text:         #0F1116;
  --text-strong:  #000000;
  --text-muted:   #4E5260;
  --text-dim:     #8A8D97;

  /* Brand — magenta + violet (reserved for the logo/avatar/card top-edge only) */
  --magenta:      #D04A80;
  --magenta-hi:   #E0689F;
  --violet:       #7A4FCC;
  --violet-hi:    #9069D9;

  /* Decorative accents — default to anthracite for calm editorial reads */
  --accent:       #0F1116;
  --accent-hi:    #1F222C;
  --accent-soft:  rgba(15, 17, 22, 0.06);
  --accent-ring:  rgba(15, 17, 22, 0.14);

  /* Action signal — reserved for primary CTAs only, so violet stays meaningful */
  --cta:          #6A3DBE;
  --cta-hi:       #7A4FCC;
  --cta-soft:     rgba(109, 40, 217, 0.10);
  --cta-shadow:   rgba(108, 60, 190, 0.18);
  --cta-shadow-hi:rgba(108, 60, 190, 0.28);

  /* Gradients — brand surface, softened hue transition (fuchsia→violet, ~30°)
     instead of the original pink→violet (~70°) so the colour glide feels
     harmonious rather than jumpy. */
  --grad:         linear-gradient(135deg, #B23EC0 0%, #7A4FCC 100%);
  --grad-hi:      linear-gradient(135deg, #C75FD4 0%, #9069D9 100%);
  --grad-soft:    linear-gradient(135deg, rgba(192, 38, 211, 0.10), rgba(124, 58, 237, 0.10));
  --grad-shadow:  rgba(150, 80, 200, 0.20);
  --grad-shadow-hi: rgba(150, 80, 200, 0.30);

  /* Status */
  --green:        #10B981;
  --green-soft:   #ECFDF5;

  /* Shadows — soft, never harsh */
  --shadow-xs:    0 1px 2px rgba(15, 17, 22, 0.04);
  --shadow-sm:    0 2px 8px rgba(15, 17, 22, 0.04), 0 1px 2px rgba(15, 17, 22, 0.03);
  --shadow-md:    0 12px 28px rgba(15, 17, 22, 0.06), 0 4px 10px rgba(15, 17, 22, 0.04);
  --shadow-lg:    0 30px 60px rgba(15, 17, 22, 0.08), 0 12px 24px rgba(15, 17, 22, 0.05);
  --shadow-card:  0 1px 3px rgba(15, 17, 22, 0.04), 0 18px 40px rgba(124, 58, 237, 0.08);

  /* Radii */
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    28px;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);

  /* Type scale — bumped up versus the dark version */
  --fs-h1:        clamp(3rem, 5.5vw + 0.4rem, 5.6rem);
  --fs-h2:        clamp(2.2rem, 3.4vw + 0.5rem, 3.4rem);
  --fs-h3:        1.3rem;
  --fs-body:      1.05rem;
  --fs-hero-sub:  1.3rem;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11', 'ss01';
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-strong);
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.02;
}
h2 { font-size: var(--fs-h2); letter-spacing: -0.03em; line-height: 1.08; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

img, svg { display: block; max-width: 100%; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: rgba(139, 92, 246, 0.20);
  color: var(--text-strong);
}

/* ---------- Soft ambient background (very subtle on light) ---------- */
.bg-gradient,
.bg-grid,
.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.bg-gradient {
  z-index: -3;
  background:
    radial-gradient(900px 600px at 8% -10%, rgba(236, 72, 153, 0.06), transparent 60%),
    radial-gradient(800px 600px at 92% 8%, rgba(139, 92, 246, 0.05), transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
}
.bg-grid {
  z-index: -2;
  background-image:
    linear-gradient(rgba(15, 17, 22, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 17, 22, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 80%);
  opacity: 0.5;
}
.bg-ambient { z-index: -1; overflow: hidden; }
.bg-ambient__orb { display: none; }

/* ---------- Container & sections ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 130px 0;
  position: relative;
}
.section--alt {
  background: var(--bg-2);
}
.section--cta {
  padding: 110px 0 140px;
}
.section--strip {
  padding: 56px 0;
}
.section + .section:not(.section--alt)::before,
.section--alt + .section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(720px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section__head h2 { margin-top: 8px; }
.section__sub {
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Utility: eyebrow chip ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--surface);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
}
.eyebrow--live .eyebrow__dot {
  width: 7px; height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  position: relative;
}
.eyebrow--live .eyebrow__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.5);
  animation: ping 2s ease-out infinite;
}

.grad-text {
  color: #B23EC0;
}

/* ---------- Navigation — floating pill, light glass ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  max-width: calc(100% - 32px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 58px;
  padding: 0 14px 0 20px;
  white-space: nowrap;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  padding-right: 8px;
}
.nav__logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--grad);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.28), inset 0 1px 0 rgba(255,255,255,0.3);
}
.nav__logo::before {
  content: "";
  position: absolute;
  inset: 5px 11px 5px 5px;
  border-radius: 2.5px;
  background: #fff;
}
.nav__logo::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 4px;
  bottom: 5px;
  border-radius: 2.5px;
  background: rgba(255, 255, 255, 0.7);
}

.nav__brand-text { color: var(--text-strong); }

.nav__links {
  display: flex;
  gap: 2px;
  align-items: center;
  padding-left: 14px;
  margin-left: -4px;
  border-left: 1px solid var(--border-2);
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover {
  color: var(--text-strong);
  background: rgba(15, 17, 22, 0.04);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--border-2);
}

.nav__burger {
  display: none;
  width: 38px; height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav__burger:hover { background: rgba(15, 17, 22, 0.04); }
.nav__burger span {
  position: absolute;
  left: 50%;
  width: 16px; height: 1.7px;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease);
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 18px; }
.nav__burger span:nth-child(3) { top: 24px; }
.nav__burger.is-open span:nth-child(1) { top: 18px; transform: translateX(-50%) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 18px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 32px; }
.mobile-menu__nav a {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  padding: 14px 22px;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.mobile-menu.is-open .mobile-menu__nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu__nav a:hover { background: rgba(15, 17, 22, 0.04); color: var(--accent); }
body.is-menu-open { overflow: hidden; }

/* Mobile menu footer: primary CTA + language toggle (moved out of the cramped bar) */
.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  transition-delay: 0.24s;
}
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; transform: translateY(0); }
.mobile-menu__foot .lang-toggle { transform: scale(1.12); }
.mobile-menu__cta { font-size: 1rem; }

/* ---------- Language toggle ---------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(15, 17, 22, 0.04);
  border: 1px solid var(--border);
}
.lang-toggle__btn {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.25s var(--ease);
}
.lang-toggle__btn:hover { color: var(--text-strong); }
.lang-toggle__btn.is-active {
  color: var(--text-strong);
  background: #fff;
  box-shadow: var(--shadow-xs);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-strong);
  transition: transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease),
              background 0.22s var(--ease),
              border-color 0.22s var(--ease);
  border: 1px solid transparent;
  /* never let a button grow wider than its container; allow the label to
     wrap (instead of nowrap-overflowing the card/viewport) when space is
     tight — covers long labels, the 600–800px range, and font boosting. */
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
  isolation: isolate;
}
.btn--sm { padding: 9px 14px; font-size: 0.88rem; border-radius: 10px; }
.btn--lg { padding: 15px 26px; font-size: 1.02rem; border-radius: 14px; }

/* Primary: solid CTA colour with palette-aware glow */
.btn--primary {
  background: var(--cta);
  color: #fff;
  box-shadow:
    0 6px 16px var(--cta-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--cta-hi);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px var(--cta-shadow-hi),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0); }

/* Ghost: outline button on white */
.btn--ghost {
  background: var(--surface);
  border-color: var(--border-2);
  color: var(--text-strong);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--border-3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:active { transform: translateY(0); }

.btn__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
  position: relative;
}
.btn__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  animation: ping 2s ease-out infinite;
}
.btn__arrow { width: 16px; height: 16px; transition: transform 0.28s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =====================================================
   HERO — two-column editorial split
   ===================================================== */
.hero {
  padding: 160px 0 100px;
  position: relative;
}

.hero__split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Grid items default to min-width:auto (min-content); without this the hero
   column refuses to shrink below its content and overflows narrow viewports. */
.hero__split > * { min-width: 0; }

.hero__left { max-width: 600px; }

.hero__title {
  margin: 0.6rem 0 1.6rem;
}

.hero__sub {
  font-size: var(--fs-hero-sub);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 2.4rem;
  line-height: 1.55;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 6px 18px;
  flex-wrap: wrap;
  color: var(--text-dim);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.005em;
}
.hero__trust-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.85;
}
.hero__trust-sep { color: var(--text-dim); font-size: 0.86rem; opacity: 0.5; }

@media (max-width: 420px) {
  .hero__trust-sep { display: none; }
  .hero__trust { gap: 10px 14px; }
}

/* =====================================================
   AGENT PROFILE CARD — the centerpiece of the hero
   ===================================================== */
.agent-card-wrap {
  position: relative;
  perspective: 1400px;
  isolation: isolate;
}

/* Soft brand-coloured glow underneath the card */
.agent-card-wrap::before {
  content: "";
  position: absolute;
  inset: -30px -10px -10px -10px;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(236, 72, 153, 0.12), transparent 70%),
    radial-gradient(closest-side at 80% 70%, rgba(139, 92, 246, 0.14), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.agent-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease);
  transform-style: preserve-3d;
  isolation: isolate;
  overflow: hidden;
}

/* Top gradient hairline that mirrors the Sanoa screenshot */
.agent-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

/* Subtle inner shading to give the card depth on white bg */
.agent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.agent-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.agent-card__avatar {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #FAFAF7 0%, #fff 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 4px 12px rgba(15,17,22,0.04);
}

.agent-card__avatar-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  position: relative;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.32);
}
.agent-card__avatar-mark::before {
  content: "";
  position: absolute;
  inset: 9px 19px 9px 9px;
  border-radius: 4px;
  background: #fff;
}
.agent-card__avatar-mark::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  width: 7px;
  bottom: 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
}

.agent-card__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.agent-card__name {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1;
}

.agent-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(192, 38, 211, 0.10);
  color: #7A4FCC;
  border: 1px solid rgba(124, 58, 237, 0.28);
}
.agent-card__badge-dot {
  width: 6px; height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad);
}

.agent-card__role {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

.agent-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
.agent-card__status-dot {
  width: 9px; height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
  position: relative;
  animation: agent-pulse 2.4s ease-out infinite;
}
@keyframes agent-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.agent-card__divider {
  margin: 22px -4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2) 15%, var(--border-2) 85%, transparent);
}

.agent-card__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.agent-card__fact {
  min-width: 0;
}
.agent-card__fact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.agent-card__fact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.3;
}

/* Three mini case cards inside agent card */
.agent-card__cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.04), rgba(236, 72, 153, 0.03));
  border-radius: 14px;
  padding: 8px;
  border: 1px solid var(--border);
}
.agent-card__case {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 16px 14px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  cursor: default;
}
.agent-card__case:hover {
  background: #fff;
  transform: translateY(-1px);
}
.agent-card__case-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1.1;
}
.agent-card__case-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.35;
}

/* Call CTA — big interactive phone button */
/* Call CTA — large interactive phone button, centered vertical stack */
.agent-card__call {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.06), rgba(124, 58, 237, 0.07));
  border: 1px solid rgba(124, 58, 237, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.agent-card__call:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.16);
  border-color: rgba(124, 58, 237, 0.32);
}

.agent-card__call-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.agent-card__call-number {
  display: block;
  font-size: clamp(1.6rem, 2.2vw + 0.5rem, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.05;
}
.agent-card__call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px var(--grad-shadow);
  position: relative;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.agent-card__call-icon svg { width: 20px; height: 20px; }
.agent-card__call-icon::before,
.agent-card__call-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--cta-soft);
  animation: ping 2.4s ease-out infinite;
}
.agent-card__call-icon::after { animation-delay: 1.2s; }

.agent-card__hint {
  margin-top: 14px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-dim);
}
.agent-card__hint a {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}
.agent-card__hint a:hover { color: var(--magenta); border-color: rgba(224, 48, 123, 0.5); }

/* ---------- Hero audio sample (embedded in the agent card) ---------- */
.hero-audio {
  margin: 22px 0;
  padding: 16px 16px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hero-audio__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-audio__play {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 16px var(--grad-shadow);
  transition: transform 0.18s var(--ease);
}
.hero-audio__play:hover { transform: scale(1.06); }
.hero-audio__play svg { width: 17px; height: 17px; }
.hero-audio__icon-pause { display: none; }
.hero-audio.is-playing .hero-audio__icon-play { display: none; }
.hero-audio.is-playing .hero-audio__icon-pause { display: block; }
.hero-audio__meta { flex: 1; min-width: 0; }
.hero-audio__title { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.hero-audio__sub { margin-top: 1px; font-size: 0.78rem; color: var(--text-muted); }
.hero-audio__time {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.hero-audio__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 34px;
  margin: 14px 0 4px;
}
.hero-audio__bar {
  flex: 1 1 0;
  min-width: 2px;
  border-radius: 2px;
  background: var(--border-3);
  transition: background 0.12s linear;
}
.hero-audio__bar.is-active { background: var(--violet); }
.hero-audio__note { margin: 10px 0 0; font-size: 0.74rem; color: var(--text-dim); }
.hero-audio__note strong { color: var(--text-muted); }
@media (max-width: 420px) {
  .hero-audio__time { display: none; }
}

/* ---------- Voice gallery (#demo section) ---------- */
.voice-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.voice-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.voice-card__name { font-size: 1.05rem; font-weight: 700; color: var(--text-strong); }
.voice-card__tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--cta-soft);
  color: var(--cta);
}
.voice-card__desc { margin: 4px 0 16px; font-size: 0.9rem; color: var(--text-muted); }
.voice-card__player { margin: 0; }
.voice-gallery__note { margin: 22px 0 0; text-align: center; font-size: 0.78rem; color: var(--text-dim); }
.voice-gallery__note strong { color: var(--text-muted); }

/* "Copied" toast that appears on click */
.agent-card__toast {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translate(-50%, -8px);
  padding: 8px 14px;
  background: #0F1116;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
  z-index: 5;
}
.agent-card__toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =====================================================
   COMPARE — problem vs outcome (light)
   ===================================================== */
/* =====================================================
   COMPARE — side-by-side rows (status quo ↔ mit callwise)
   ===================================================== */
.compare {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0 26px;
  margin-bottom: 6px;
}
.compare__head-col {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.compare__head-col--accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  position: relative;
}
/* Arrow between cards on each row — subtle "before → after" cue */
.compare__row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__row::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dim);
  z-index: 3;
  line-height: 1;
}
.compare__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease),
              box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
  min-height: 88px;
}
.compare__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.compare__item--bad {
  background: var(--surface-2);
}
.compare__item--good:hover {
  border-color: rgba(124, 58, 237, 0.25);
}
.compare__item-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare__item--bad .compare__item-icon {
  background: rgba(15, 17, 22, 0.05);
  color: var(--text-dim);
}
.compare__item--good .compare__item-icon {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 10px var(--grad-shadow);
}
.compare__item-icon svg { width: 15px; height: 15px; }
.compare__item-text {
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
}
.compare__item--bad .compare__item-text {
  color: var(--text-muted);
  font-weight: 400;
}

@media (max-width: 800px) {
  .compare__head { display: none; }
  .compare__row { grid-template-columns: 1fr; gap: 10px; }
  .compare__row::before, .compare__row::after { display: none; }
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.list li {
  font-size: 1.05rem;
  color: var(--text);
  padding-left: 34px;
  position: relative;
  line-height: 1.55;
}
.list--muted li { color: var(--text-muted); }
.list--muted li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 16px;
  height: 1.8px;
  background: var(--text-dim);
  border-radius: 2px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 4px 12px var(--grad-shadow);
}
.list--check li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  width: 9px;
  height: 5px;
  border-left: 1.9px solid #fff;
  border-bottom: 1.9px solid #fff;
  transform: rotate(-45deg);
}

/* =====================================================
   STEPS — how it works
   ===================================================== */
.grid {
  display: grid;
  gap: 22px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.step {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: var(--shadow-xs);
}
.step:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-md);
}
.step__num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 1rem; }

/* =====================================================
   USE-CASE CARDS
   ===================================================== */
.card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
  isolation: isolate;
  display: block;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%),
    rgba(124, 58, 237, 0.08),
    rgba(236, 72, 153, 0.04) 40%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.10), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: var(--accent);
  margin-bottom: 22px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 1rem; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  transition: transform 0.25s var(--ease), color 0.2s var(--ease);
}
.card:hover .card__link { transform: translateX(4px); color: var(--magenta); }

/* =====================================================
   LOGO STRIP
   ===================================================== */
.logo-strip { text-align: center; }
.logo-strip__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.logo-strip__items {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.logo-strip__items li { flex: 0 0 auto; display: flex; align-items: center; }
.logo-strip__items img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.25s var(--ease), filter 0.25s var(--ease);
}
.logo-strip__items img:hover { opacity: 1; filter: none; }
.logo-strip__hint { font-size: 0.9rem; color: var(--text-dim); font-style: italic; }
@media (max-width: 700px) {
  .logo-strip__items { gap: 28px; }
  .logo-strip__items img { height: 22px; }
}

/* =====================================================
   WHY CALLWISE — differentiators
   ===================================================== */
.trust-item {
  padding: 32px 28px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: var(--shadow-md);
}
.trust-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.10), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: var(--accent);
  margin-bottom: 20px;
}
.trust-item__icon svg { width: 19px; height: 19px; }
.trust-item h3 { margin-bottom: 10px; }
.trust-item p { font-size: 1rem; }

/* =====================================================
   AUDIO SAMPLE — kept small, secondary
   ===================================================== */
.audio-sample {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm);
}
.audio-sample__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.audio-sample__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 6px;
}
.audio-sample__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.35;
}
.audio-sample__player {
  width: 100%;
  height: 42px;
  border-radius: 8px;
  outline: none;
}
.audio-sample__desc { font-size: 0.95rem; margin-top: 12px; }

/* =====================================================
   PRICING TEASER
   ===================================================== */
.pricing {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 48px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(236, 72, 153, 0.05), rgba(124, 58, 237, 0.04) 60%, var(--surface) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.pricing__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(closest-side, rgba(124, 58, 237, 0.12), transparent 70%);
  z-index: -1;
  filter: blur(30px);
}
.pricing h2 { margin: 8px 0 16px; }
.pricing__text {
  font-size: 1.12rem;
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--text-muted);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  overflow: hidden;
}
.faq__item[open] {
  border-color: rgba(124, 58, 237, 0.25);
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.025), rgba(124, 58, 237, 0.02));
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-strong);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q:hover { color: var(--accent); }
.faq__chev {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.faq__chev::before,
.faq__chev::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text-muted);
  border-radius: 1.5px;
  transition: background 0.2s var(--ease), transform 0.3s var(--ease);
}
.faq__chev::before { width: 14px; height: 1.8px; transform: translate(-50%, -50%); }
.faq__chev::after  { width: 1.8px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__chev::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__item[open] .faq__chev::before { background: var(--accent); }
.faq__a { padding: 0 26px 24px; }
.faq__a p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

/* =====================================================
   FINAL CTA
   ===================================================== */
.cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta h2 { margin-bottom: 16px; }
.cta p { font-size: 1.12rem; margin-bottom: 32px; }
.cta__disclosure {
  margin-top: 24px;
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 56px 0;
  border-top: 1px solid var(--border-2);
  margin-top: 40px;
  background: var(--surface);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-strong);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.footer__links a:hover { color: var(--text-strong); }
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.footer__meta { font-size: 0.9rem; color: var(--text-dim); }
.footer__disclosure { font-size: 0.82rem; color: var(--text-dim); opacity: 0.75; }

/* =====================================================
   Skip link & focus styles
   ===================================================== */
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--text-strong);
  border: 1px solid var(--border-3);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus, .skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible, .lang-toggle__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}
.faq__q:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .hero__split { grid-template-columns: 1fr; gap: 48px; }
  .hero__left { max-width: 720px; }
  .hero { padding: 140px 0 80px; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .section__head { margin-bottom: 56px; }
  .nav__inner { gap: 14px; padding: 0 12px 0 16px; }
  .nav__links { display: none; }
  .nav__actions { margin-left: auto; padding-left: 0; border-left: 0; gap: 8px; }
  .nav__actions > .lang-toggle,
  .nav__actions > .nav__cta { display: none; }
  .nav__burger { display: block; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__col { align-items: flex-start; text-align: left; }
  .agent-card__facts { grid-template-columns: 1fr 1fr; gap: 16px 20px; }
  .agent-card { padding: 22px; }
}

@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  :root { --fs-h1: clamp(2.5rem, 9vw + 0.2rem, 3.3rem); --fs-h2: clamp(1.85rem, 6vw + 0.2rem, 2.6rem); --fs-hero-sub: 1.12rem; }
  .container { padding: 0 20px; }
  .eyebrow { white-space: normal; }
  h1, h2, h3, .grad-text { overflow-wrap: break-word; }
  .grid > * { min-width: 0; }
  .agent-card__cases { grid-template-columns: 1fr; }
  .agent-card__call { grid-template-columns: 1fr; text-align: center; }
  .agent-card__call-icon { justify-self: center; }
  .pricing { padding: 56px 28px; }

  /* Agent card: avatar eats too much width beside the text on phones, leaving
     the role/status to wrap into a cramped, hard-to-read column. Stack the
     avatar on top and centre the heading so each line gets the full width. */
  .agent-card__head {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
  }
  .agent-card__heading { justify-content: center; }
  .agent-card__status { justify-content: center; }
  /* One fact per row reads cleanly instead of "Deutsch · weitere möglich"
     breaking across three lines in a 150px column. */
  .agent-card__facts { grid-template-columns: 1fr; gap: 16px; text-align: center; }
}

/* =====================================================
   PRINT
   ===================================================== */
@media print {
  .bg-gradient, .bg-grid, .bg-ambient, .nav, .footer__col, .skip-link { display: none !important; }
  body { background: #fff !important; color: #000 !important; font-size: 11pt; }
  main { padding-top: 0 !important; }
  h1, h2, h3, h4 { color: #000 !important; }
  .grad-text { background: none !important; -webkit-text-fill-color: #000 !important; color: #000 !important; }
  p, li { color: #222 !important; }
}

/* =====================================================
   ACCENT PALETTES — switched via [data-accent] on <html>
   ------------------------------------------------------------
   Each palette has TWO scales:
   - --accent / --accent-* : decorative accents (calm)
   - --cta / --cta-*       : action signal (CTAs only)
   Keeping them separate lets us make the CTA pop with brand
   colour while the rest of the page stays editorial.
   ===================================================== */

/* Editorial Pop — default. Anthracite text accents, violet CTA pop. */
:root[data-accent="editorial"],
:root:not([data-accent]) {
  --accent:        #0F1116;
  --accent-hi:     #1F222C;
  --accent-soft:   rgba(15, 17, 22, 0.06);
  --accent-ring:   rgba(15, 17, 22, 0.14);
  --cta:           #6A3DBE;
  --cta-hi:        #7A4FCC;
  --cta-soft:      rgba(109, 40, 217, 0.10);
  --cta-shadow:    rgba(108, 60, 190, 0.18);
  --cta-shadow-hi: rgba(108, 60, 190, 0.28);
}

/* All Violet — louder, brand-saturated. Same colour for accents AND CTAs. */
:root[data-accent="violet"] {
  --accent:        #6D28D9;
  --accent-hi:     #7C3AED;
  --accent-soft:   rgba(109, 40, 217, 0.10);
  --accent-ring:   rgba(109, 40, 217, 0.18);
  --cta:           #6D28D9;
  --cta-hi:        #7C3AED;
  --cta-soft:      rgba(109, 40, 217, 0.10);
  --cta-shadow:    rgba(109, 40, 217, 0.24);
  --cta-shadow-hi: rgba(109, 40, 217, 0.36);
}

/* Pure Anthracite — no CTA pop. Maximum editorial calm. */
:root[data-accent="anthracite"] {
  --accent:        #0F1116;
  --accent-hi:     #1F222C;
  --accent-soft:   rgba(15, 17, 22, 0.06);
  --accent-ring:   rgba(15, 17, 22, 0.14);
  --cta:           #0F1116;
  --cta-hi:        #1F222C;
  --cta-soft:      rgba(15, 17, 22, 0.06);
  --cta-shadow:    rgba(15, 17, 22, 0.20);
  --cta-shadow-hi: rgba(15, 17, 22, 0.32);
}

/* Boutique — anthracite accents with muted magenta CTA pop. */
:root[data-accent="boutique"] {
  --accent:        #0F1116;
  --accent-hi:     #1F222C;
  --accent-soft:   rgba(15, 17, 22, 0.06);
  --accent-ring:   rgba(15, 17, 22, 0.14);
  --cta:           #B5316E;
  --cta-hi:        #C2185B;
  --cta-soft:      rgba(181, 49, 110, 0.10);
  --cta-shadow:    rgba(181, 49, 110, 0.26);
  --cta-shadow-hi: rgba(181, 49, 110, 0.38);
}

/* =====================================================
   EDITORIAL POP — gradient CTAs (default)
   ------------------------------------------------------------
   In the default palette, CTAs use the brand gradient so they
   speak the same visual language as the logo. Other palettes
   keep their solid --cta colour.
   ===================================================== */
:root[data-accent="editorial"] .btn--primary,
:root:not([data-accent]) .btn--primary {
  background: var(--grad);
  box-shadow:
    0 6px 18px var(--grad-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
:root[data-accent="editorial"] .btn--primary::before,
:root:not([data-accent]) .btn--primary::before {
  background: var(--grad-hi);
}
:root[data-accent="editorial"] .btn--primary:hover,
:root:not([data-accent]) .btn--primary:hover {
  box-shadow:
    0 14px 34px var(--grad-shadow-hi),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
:root[data-accent="editorial"] .agent-card__call-icon,
:root:not([data-accent]) .agent-card__call-icon {
  background: var(--grad);
  box-shadow: 0 8px 22px var(--grad-shadow);
}
:root[data-accent="editorial"] .agent-card__call-icon::before,
:root[data-accent="editorial"] .agent-card__call-icon::after,
:root:not([data-accent]) .agent-card__call-icon::before,
:root:not([data-accent]) .agent-card__call-icon::after {
  border-color: rgba(155, 60, 220, 0.4);
}

/* =====================================================
   TYPE SCALE — switched via [data-type-scale] on <html>
   ===================================================== */
:root[data-type-scale="compact"] {
  --fs-h1:        clamp(2.6rem, 4.5vw + 0.4rem, 4.8rem);
  --fs-h2:        clamp(1.9rem, 2.8vw + 0.5rem, 2.9rem);
  --fs-h3:        1.2rem;
  --fs-body:      1rem;
  --fs-hero-sub:  1.18rem;
}
:root[data-type-scale="large"] {
  --fs-h1:        clamp(3.4rem, 6.5vw + 0.4rem, 6.4rem);
  --fs-h2:        clamp(2.5rem, 4vw + 0.5rem, 4rem);
  --fs-h3:        1.4rem;
  --fs-body:      1.1rem;
  --fs-hero-sub:  1.42rem;
}

/* =====================================================
   SUBPAGE HERO — smaller, centered (no agent card)
   ===================================================== */
.hero--sub {
  padding: 140px 0 40px;
}
.hero--sub .hero__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero--sub .hero__title {
  font-size: clamp(2.2rem, 4vw + 0.5rem, 3.8rem);
}
.hero--sub .hero__sub {
  margin: 0 auto 2rem;
}

/* =====================================================
   ANCHOR NAV — subpage jump links
   ===================================================== */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 1rem;
}
.anchor-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
              background 0.2s var(--ease), transform 0.2s var(--ease);
  box-shadow: var(--shadow-xs);
}
.anchor-nav a:hover {
  color: var(--text-strong);
  border-color: var(--border-3);
  background: #fff;
  transform: translateY(-1px);
}

/* =====================================================
   NUMBERED LIST — process flows
   ===================================================== */
.list-num {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.list-num li {
  font-size: 1.02rem;
  color: var(--text);
  padding-left: 46px;
  position: relative;
  counter-increment: step;
  line-height: 1.55;
}
.list-num li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px var(--grad-shadow);
}

/* =====================================================
   GENERIC LIST + COMPACT (used in price cards)
   ===================================================== */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.list--compact { gap: 12px; }
.list--compact li { font-size: 0.96rem; }

/* =====================================================
   NOTE BOX — callout
   ===================================================== */
.note {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.note h3 {
  margin-bottom: 10px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.note p {
  font-size: 1rem;
  line-height: 1.65;
}

/* =====================================================
   QUOTE — qualitative statement
   ===================================================== */
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 16px 24px;
}
.quote p {
  font-size: clamp(1.15rem, 1.4vw + 0.6rem, 1.45rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.quote p::before,
.quote p::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: var(--grad);
  vertical-align: middle;
  margin: 0 14px;
  border-radius: 1px;
}

/* =====================================================
   DUAL-COLUMN LAYOUT (use-cases: process vs gain)
   Renamed from the old `compare` to avoid clashing with
   the new paired-row compare on the homepage.
   ===================================================== */
.dualcol {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.dualcol__col { padding: 8px 4px; }
.dualcol__divider {
  background: linear-gradient(180deg, transparent, var(--border-2), transparent);
}
.dualcol__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.dualcol__title--accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 900px) {
  .dualcol { grid-template-columns: 1fr; gap: 36px; }
  .dualcol__divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
  }
}

/* =====================================================
   PRICE CARDS
   ===================================================== */
.grid--price {
  max-width: 1180px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-3);
  box-shadow: var(--shadow-md);
}
.price-card--featured {
  background: linear-gradient(180deg, rgba(192, 38, 211, 0.05), rgba(124, 58, 237, 0.04) 60%, var(--surface) 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-md);
}
.price-card--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.price-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 12px var(--grad-shadow);
}
.price-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-card__amount {
  font-size: clamp(1.7rem, 2vw + 0.8rem, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.1;
}
.price-card__amount strong {
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card__meta {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: -10px;
}
.price-card__hint {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* =====================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ===================================================== */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 160px 0 80px;
}
.legal h1 {
  font-size: clamp(2.2rem, 3.2vw + 0.6rem, 3rem);
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 1.45rem;
  margin: 48px 0 14px;
  color: var(--text-strong);
}
.legal h3 {
  font-size: 1.12rem;
  margin: 28px 0 10px;
  color: var(--text-strong);
}
.legal p, .legal li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal ul { padding-left: 22px; }
.legal a {
  color: var(--violet-hi);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.legal a:hover {
  color: var(--magenta-hi);
  border-bottom-color: rgba(236, 72, 153, 0.5);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  border-bottom: 0;
}
.legal__back:hover {
  color: var(--text-strong);
  border-bottom: 0;
}
/* Centred variant — used by the form thank-you pages */
.legal--center { text-align: center; }
.legal--center .btn { margin-top: 18px; }
.legal--center .btn,
.legal--center .btn:hover { border-bottom: 0; }
.legal__todo {
  padding: 14px 18px;
  margin: 14px 0;
  border-radius: 10px;
  background: rgba(192, 38, 211, 0.06);
  border: 1px dashed rgba(124, 58, 237, 0.35);
  font-size: 0.92rem;
  color: var(--violet-hi);
}

/* =====================================================
   404 PAGE
   ===================================================== */
.nf {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}
.nf__code {
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.nf__title { margin-bottom: 0.75rem; }
.nf__sub { max-width: 480px; margin-bottom: 2rem; font-size: 1.1rem; }

/* =====================================================
   ============== ITERATION · MAI 2026 =================
   New components added after the design review.
   All light-themed to match the rest of the editorial palette.
   ===================================================== */

/* ---- Problem section: paired before/after rows ---- */
.compare--pairs .compare__row { grid-template-columns: 1fr; gap: 0; }
.compare--pairs .compare__row::before,
.compare--pairs .compare__row::after { display: none; }
.compare--pairs .compare__pair {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 220ms ease, border-color 220ms ease;
}
.compare--pairs .compare__pair:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--cta) 30%, var(--border));
  box-shadow: 0 18px 40px -22px rgba(124, 58, 237, 0.38), 0 4px 12px -8px rgba(15, 17, 22, 0.08);
}
.compare--pairs .compare__pair-cell {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface-2);
  transition: background 220ms ease;
}
.compare--pairs .compare__pair-cell--good {
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.07), rgba(124, 58, 237, 0.06));
}
.compare--pairs .compare__pair:hover .compare__pair-cell--good {
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.13), rgba(124, 58, 237, 0.11));
}
.compare--pairs .compare__pair-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--magenta);
}
.compare--pairs .compare__pair-cell--good .compare__pair-label { color: var(--cta); }
.compare--pairs .compare__pair-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.compare--pairs .compare__pair-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.compare--pairs .compare__pair-arrow {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--surface-2);
}
.compare--pairs .compare__pair-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  right: -8px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--magenta) 35%, transparent) 30%,
    color-mix(in srgb, var(--cta) 35%, transparent) 70%,
    transparent 100%
  );
  pointer-events: none;
}
.compare--pairs .compare__pair-arrow-badge {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--cta));
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  box-shadow:
    0 6px 14px -6px rgba(122, 79, 204, 0.40),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 220ms ease;
}
.compare--pairs .compare__pair:hover .compare__pair-arrow-badge {
  transform: scale(1.08) translateX(2px);
  box-shadow:
    0 10px 22px -8px rgba(122, 79, 204, 0.52),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
@media (max-width: 800px) {
  .compare--pairs .compare__pair { grid-template-columns: 1fr; }
  .compare--pairs .compare__pair-arrow {
    padding: 8px 0;
  }
  .compare--pairs .compare__pair-arrow::before {
    top: -8px; bottom: -8px; left: 50%; right: auto;
    width: 1px; height: auto;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      transparent 0%,
      color-mix(in srgb, var(--magenta) 35%, transparent) 30%,
      color-mix(in srgb, var(--cta) 35%, transparent) 70%,
      transparent 100%
    );
  }
  .compare--pairs .compare__pair-arrow-badge { transform: rotate(90deg); }
  .compare--pairs .compare__pair:hover .compare__pair-arrow-badge {
    transform: rotate(90deg) scale(1.08) translateX(2px);
  }
}

/* ---- How it works: horizontal timeline ---- */
.timeline {
  position: relative;
  padding-top: 14px;
}
.timeline__hint {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.timeline__hint strong { color: var(--text); font-weight: 600; }
.timeline__track {
  position: relative;
}
.timeline__track::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta) 0%, var(--violet) 100%);
  opacity: 0.45;
  border-radius: 2px;
}
.timeline__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.timeline__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid var(--bg);
  background: var(--magenta);
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px var(--border-2);
}
.timeline__step:nth-child(2) .timeline__dot { background: #A02DC2; }
.timeline__step:nth-child(3) .timeline__dot { background: #8530DC; }
.timeline__step:nth-child(4) .timeline__dot { background: var(--violet); }
.timeline__when {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.timeline__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---- Interactive timeline (JS-enhanced) ---- */
.timeline__metawrap { text-align: center; margin: 0 0 34px; }
.timeline__meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-xs);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.timeline__meta strong { color: var(--text); font-weight: 600; }
.timeline__meta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--violet);
  position: relative;
  flex-shrink: 0;
}
.timeline__meta-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--violet);
  animation: ping 2.4s ease-in-out infinite;
}
.timeline__progress {
  position: absolute;
  top: 18px;
  left: 6%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--violet));
  z-index: 1;
  transition: width .55s var(--ease), height .55s var(--ease),
              left .55s var(--ease), top .55s var(--ease);
}
.timeline__steps { z-index: 2; }
.timeline__dot {
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.timeline--js .timeline__step {
  cursor: pointer;
  transition: opacity .4s var(--ease);
}
.timeline--js:not(.timeline--static) .timeline__step:not(.is-active) { opacity: 0.62; }
.timeline--js .timeline__step:focus-visible { outline: none; }
.timeline--js .timeline__step:focus-visible .timeline__dot {
  box-shadow: 0 0 0 5px var(--bg), 0 0 0 7px var(--violet);
}
.timeline--js .timeline__step.is-active .timeline__dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 5px var(--bg), 0 0 0 6px rgba(133, 48, 220, 0.25),
              0 6px 18px rgba(133, 48, 220, 0.32);
}
.timeline--js .timeline__step.is-active .timeline__when { color: var(--violet); }
.timeline--js .timeline__step.is-active .timeline__title { color: var(--text-strong); }

@media (max-width: 900px) {
  .timeline__track::before {
    left: 8px; right: auto;
    top: 4px; bottom: 4px;
    width: 2px; height: auto;
    background: linear-gradient(180deg, var(--magenta) 0%, var(--violet) 100%);
  }
  .timeline__steps { grid-template-columns: 1fr; gap: 28px; }
  .timeline__step { flex-direction: row; text-align: left; align-items: flex-start; gap: 18px; padding: 0; }
  /* Pin the dot to a real circle — flex must not stretch it in either axis */
  .timeline__dot {
    width: 18px; height: 18px; min-width: 18px;
    flex: 0 0 18px; align-self: flex-start; aspect-ratio: 1 / 1;
    margin: 2px 0 0;
  }
  /* only the text wrapper grows — NOT the dot (which is also a direct div child) */
  .timeline__step > div:not(.timeline__dot) { flex: 1; min-width: 0; }
  /* Progress line: JS sets top/height; force the thin vertical geometry here */
  .timeline__progress { left: 8px; width: 2px; }
}

/* ---- Why Callwise: hero USP card + supporting items ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.why-hero {
  position: relative;
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.20);
  background:
    radial-gradient(380px 240px at 100% 100%, rgba(192, 38, 211, 0.12), transparent 70%),
    linear-gradient(160deg, rgba(192, 38, 211, 0.06), rgba(124, 58, 237, 0.04) 60%, var(--surface));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: span 1;
}
.why-hero__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta);
  font-weight: 600;
}
.why-hero__title {
  font-size: clamp(1.4rem, 1.4vw + 0.8rem, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0;
}
.why-hero__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-hero__text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-hero { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- Pricing teaser: mini-cards preview ---- */
.pricing--preview {
  padding: 40px 40px 44px;
  text-align: left;
}
.pricing--preview .pricing__glow { display: none; }
.pricing--preview h2 { margin-top: 8px; }
.pricing--preview .pricing__text { max-width: 720px; margin-left: 0; margin-right: 0; }
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.pp-card {
  position: relative;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pp-card--featured {
  border-color: rgba(124, 58, 237, 0.30);
  background: linear-gradient(180deg, rgba(192, 38, 211, 0.04), var(--surface) 70%);
  box-shadow: 0 10px 30px rgba(155, 60, 220, 0.10);
}
.pp-card__badge {
  position: absolute;
  top: -10px;
  left: 22px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.pp-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.pp-card__amount {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.pp-card__amount em {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pp-card__meta {
  font-size: 0.82rem;
  color: var(--text-dim);
}
@media (max-width: 800px) {
  .pricing-preview-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ: category badges + bridge card ---- */
.faq__cat {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-right: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  vertical-align: 2px;
}
.faq__bridge {
  margin-top: 14px;
  padding: 18px 24px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.faq__bridge-text { font-size: 1rem; color: var(--text-muted); margin: 0; }
.faq__bridge-cta {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cta);
  text-decoration: none;
}
.faq__bridge-cta:hover { color: var(--violet); }

/* ---- Final CTA: dual CTA layout, kept on the light surface ---- */
.cta--dual {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta--dual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 220px at 50% 0%, rgba(192, 38, 211, 0.08), transparent 70%);
  pointer-events: none;
}
.cta--dual > * { position: relative; }
.cta--dual h2 { margin: 12px 0 14px; }
.cta--dual .cta__lead {
  max-width: 540px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.cta__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.cta__phone:hover {
  border-color: rgba(124, 58, 237, 0.30);
  transform: translateY(-1px);
}
.cta__phone-icon {
  width: 18px; height: 18px;
  color: var(--cta);
}
.cta--dual .cta__disclosure {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
/* Secondary booking link under the primary "anfragen" CTA — kept low-key so
   the contact form stays the primary path without adding a competing button. */
.cta__secondary {
  margin: 18px 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.cta__secondary a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.cta__secondary a:hover { text-decoration: underline; }

/* ---- Pricing page: card use-case hint + comparison table ---- */
.price-card__usehint {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: -4px;
}
.price-card--featured .price-card__usehint {
  color: var(--cta);
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.18);
}
.price-card__setup {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: -10px;
}
.price-card__setup strong { color: var(--text); font-weight: 600; }

/* ---- Pricing: equalize card heights — pin the note + CTA to the bottom
   so all three buttons align and the outer cards lose their dead space ---- */
.grid--price .price-card__hint { margin-top: auto; }

/* ---- Pricing: tighten the gap between the hero and the price cards ---- */
.section--cards { padding-top: 64px; }

/* ---- Pricing: set the cost calculator apart as the page centrepiece —
   a tinted full-width band with hairline borders so its white inner
   cards pop. Used on the v2 pricing layout only. ---- */
.section--calc {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

.compare-table {
  margin: 36px auto 0;
  max-width: var(--container);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table__head,
.compare-table__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  align-items: center;
}
.compare-table__head > div,
.compare-table__row > div {
  padding: 14px 20px;
  font-size: 0.95rem;
}
.compare-table__head {
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.compare-table__head > div {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}
.compare-table__head > div:first-child { text-align: left; }
.compare-table__row { border-top: 1px solid var(--border); }
.compare-table__row > div { color: var(--text); text-align: center; }
.compare-table__row > div:first-child {
  text-align: left;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.compare-table__col--featured {
  background: linear-gradient(180deg, rgba(192, 38, 211, 0.04), rgba(124, 58, 237, 0.03));
  position: relative;
  font-weight: 500;
}
.compare-table__yes {
  color: var(--green);
  font-weight: 600;
}
.compare-table__dash { color: var(--text-dim); }
@media (max-width: 800px) {
  .compare-table { overflow-x: auto; }
  .compare-table__head,
  .compare-table__row { min-width: 640px; }
}

/* ---- Pricing page: ROI anchor (replaces dark variant) ---- */
.roi-anchor {
  margin: 0 auto;
  max-width: 920px;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 240px at 100% 0%, rgba(192, 38, 211, 0.10), transparent 70%),
    linear-gradient(135deg, rgba(192, 38, 211, 0.04), rgba(124, 58, 237, 0.03) 60%, var(--surface));
  border: 1px solid rgba(124, 58, 237, 0.18);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  align-items: center;
}
.roi-anchor__divider { background: var(--border); align-self: stretch; }
.roi-anchor__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.roi-anchor__big {
  font-size: clamp(2.6rem, 4vw + 0.6rem, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.roi-anchor__cap {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}
.roi-anchor__compare {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.roi-anchor__compare strong { color: var(--text); font-weight: 600; }
@media (max-width: 800px) {
  .roi-anchor { grid-template-columns: 1fr; gap: 18px; padding: 24px 24px; }
  .roi-anchor__divider { height: 1px; width: 100%; }
}

/* ---- Use cases hero: anchor preview cards ---- */
.anchor-nav--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px auto 0;
  max-width: 980px;
  padding: 0;
}
.anchor-nav--cards a {
  text-decoration: none;
  color: inherit;
  text-align: left;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.anchor-nav--cards a:hover {
  border-color: rgba(124, 58, 237, 0.30);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.anchor-nav-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.anchor-nav-card__idx {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  font-weight: 600;
}
.anchor-nav-card__jump {
  font-size: 0.78rem;
  color: var(--cta);
  font-weight: 500;
}
.anchor-nav-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.anchor-nav-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 800px) {
  .anchor-nav--cards { grid-template-columns: 1fr; }
}

/* ---- Use cases: transcript snippet (light) + flow diagram ---- */
.uc-case__visuals {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.transcript {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  padding: 18px 22px;
}
.transcript__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.transcript__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.transcript__status {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.transcript__status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.transcript__line {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  padding: 4px 0;
}
.transcript__line + .transcript__line { border-top: 1px dashed var(--border); padding-top: 8px; margin-top: 4px; }
.transcript__speaker {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 10px;
  color: var(--text-dim);
  min-width: 64px;
}
.transcript__speaker--agent { color: var(--cta); }

.flow {
  display: grid;
  grid-template-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  gap: 0;
  align-items: stretch;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.flow__step {
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.flow__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.flow__icon--agent {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px var(--grad-shadow);
}
.flow__label {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}
.flow__arrow {
  display: grid;
  place-items: center;
  color: var(--text-dim);
  font-size: 14px;
}
@media (max-width: 800px) {
  .flow {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 4px;
  }
  .flow__arrow { transform: rotate(90deg); padding: 2px 0; }
}

/* Case meta (setup + paket) shown next to title */
.uc-case__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.uc-case__meta { display: flex; gap: 10px; flex-shrink: 0; }
.uc-case__meta-card {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  min-width: 130px;
}
.uc-case__meta-card--accent {
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.05), rgba(124, 58, 237, 0.04));
  border-color: rgba(124, 58, 237, 0.18);
}
.uc-case__meta-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  display: block;
}
.uc-case__meta-card--accent .uc-case__meta-label { color: var(--cta); }
.uc-case__meta-value { font-size: 0.95rem; font-weight: 600; margin-top: 2px; }

/* Use-case section heads wrap a flex row (title block + meta cards), so they
   must NOT inherit the global centered/720px-narrow .section__head treatment —
   otherwise the header floats centered above full-width visuals. Make them
   full-width and left-aligned so header and visuals share one edge. */
.section__head:has(.uc-case__head) {
  max-width: none;
  text-align: left;
  margin-bottom: 22px;
}
.section__head:has(.uc-case__head) .section__sub {
  max-width: 62ch;
  margin-left: 0;
  margin-right: 0;
}

/* ---- Use cases: inbound/outbound matrix ---- */
.uc-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.uc-matrix__cell {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.uc-matrix__cell--standard {
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.05), rgba(124, 58, 237, 0.04));
  border-color: rgba(124, 58, 237, 0.18);
}
.uc-matrix__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.uc-matrix__cell--standard .uc-matrix__label { color: var(--cta); }
.uc-matrix__title { font-size: 1.05rem; font-weight: 600; margin: 0 0 4px; }
.uc-matrix__cell ul {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}
.uc-matrix__cell ul li { display: flex; align-items: flex-start; gap: 10px; }
.uc-matrix__cell ul li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border-2);
  flex-shrink: 0; margin-top: 3px;
}
.uc-matrix__cell--standard ul li::before {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.28);
}
@media (max-width: 700px) {
  .uc-matrix { grid-template-columns: 1fr; }
}

