﻿:root { --color-bg: #f6f8fb; --color-surface: #ffffff; --color-surface-soft: #eef3fb; --color-line: #dce4ef; --color-text: #0e1726; --color-muted: #5f6f85; --color-primary: #4f46e5; --color-primary-dark: #312e81; --color-primary-soft: #eef2ff; --color-green: #0f8f6a; --color-green-soft: #e8f7f1; --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08); --shadow-lg: 0 28px 80px rgba(49, 46, 129, 0.18); --radius-sm: 8px; --radius-md: 14px; --radius-lg: 22px; --container: 1240px; --section-padding-lg: 84px; --section-padding-md: 72px; --section-padding-sm: 52px; --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0px; background: var(--color-bg); color: var(--color-text); font-family: var(--font); line-height: 1.6; }
:root { --color-muted: #344255; }
body:not(.auth-ready) > :not(.auth-gate) {
  visibility: hidden;
}

body.auth-locked {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(79, 70, 229, 0.14), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(6, 182, 212, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 14%, rgba(79, 70, 229, 0.14), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(6, 182, 212, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 251, 0.98) 100%);
}

.auth-gate-card {
  width: min(100%, 430px);
  padding: clamp(26px, 5vw, 38px);
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14), 0 12px 34px rgba(79, 70, 229, 0.1);
  backdrop-filter: blur(18px);
}

.auth-gate-card h1 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.auth-gate-card p {
  margin: 0 0 22px;
  color: #344255;
  font-size: 0.98rem;
  line-height: 1.55;
}

.auth-gate-form {
  display: grid;
  gap: 14px;
}

.auth-gate-field {
  display: grid;
  gap: 7px;
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 800;
}

.auth-gate-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(185, 198, 216, 0.9);
  border-radius: 12px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
  font-weight: 650;
}

.auth-gate-error {
  min-height: 20px;
  margin: -2px 0 0;
  color: #b91c1c;
  font-size: 0.86rem;
  font-weight: 750;
}

body.nav-open { overflow: hidden; }
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-primary); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: rgba(79, 70, 229, 0.34) solid 3px; outline-offset: 3px; }
img { display: block; max-width: 100%; height: auto; }
.site-header { position: sticky; top: 0px; z-index: 20; border-bottom: 1px solid rgba(220, 228, 239, 0.78); background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(18px); }
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(100% - 40px, var(--container)); min-height: 76px; margin: 0px auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0px; }
.brand-logo-link {
  flex: 0 0 auto;
  gap: 0;
}

.brand-logo {
  width: auto;
  height: clamp(30px, 3vw, 38px);
  max-width: min(198px, 44vw);
  object-fit: contain;
}

.brand-mark { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: linear-gradient(135deg, rgb(79, 70, 229), rgb(109, 93, 252) 56%, rgb(14, 165, 233)); color: rgb(255, 255, 255); font-weight: 900; box-shadow: var(--shadow-sm); }
.brand-text { font-size: 1.05rem; }
.nav-menu { display: flex; align-items: center; justify-content: space-between; flex: 1 1 0%; gap: 26px; }
.nav-links, .nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: var(--color-muted); font-size: 0.94rem; font-weight: 650; }
.nav-links a:hover { color: var(--color-primary-dark); }
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
  z-index: 49;
  pointer-events: auto;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--color-primary-dark);
}

.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 50;
  width: min(680px, calc(100vw - 40px));
  padding: 16px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: rgba(15, 23, 42, 0.16) 0 28px 80px, rgba(79, 70, 229, 0.1) 0 12px 34px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px);
}

.nav-dropdown.is-open .nav-mega,
.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-mega-intro {
  display: grid;
  gap: 3px;
  padding: 4px 6px 13px;
}

.nav-mega-intro span {
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-mega-intro strong {
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.35;
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.nav-mega-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--color-text);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nav-mega-link:hover,
.nav-mega-link:focus-visible {
  border-color: rgba(99, 102, 241, 0.18);
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.9), rgba(255, 255, 255, 0.92));
  color: var(--color-primary-dark);
  box-shadow: rgba(15, 23, 42, 0.06) 0 12px 30px;
  transform: translateY(-1px);
}

.nav-mega-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 11px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.nav-mega-icon .icon-svg {
  width: 20px;
  height: 20px;
}

.nav-mega-link strong {
  display: block;
  color: currentcolor;
  font-size: 0.92rem;
  line-height: 1.25;
}

.nav-mega-link small {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--color-line); border-radius: 8px; background: rgb(255, 255, 255); color: var(--color-text); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 999px; background: currentcolor; content: ""; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 11px 18px; border: 1px solid transparent; border-radius: 8px; font-size: 0.95rem; font-weight: 750; line-height: 1.2; text-align: center; cursor: pointer; transition: transform 180ms, box-shadow 180ms, border-color 180ms, background-color 180ms, color 180ms; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0px); }
.btn-primary { background: var(--color-primary); color: rgb(255, 255, 255); box-shadow: rgba(79, 70, 229, 0.28) 0px 14px 32px, rgba(49, 46, 129, 0.12) 0px 2px 8px; }
.btn-primary:hover { background: rgb(67, 56, 202); color: rgb(255, 255, 255); box-shadow: rgba(79, 70, 229, 0.34) 0px 18px 40px, rgba(49, 46, 129, 0.14) 0px 4px 12px; }
.btn-secondary { border-color: var(--color-line); background: rgb(255, 255, 255); color: var(--color-text); }
.btn-secondary:hover { border-color: rgb(185, 198, 216); color: var(--color-primary-dark); }
.btn-demo { gap: 9px; }
.nav-actions .btn-demo { min-height: 42px; padding-right: 12px; padding-left: 12px; border-color: transparent; background: transparent; color: rgb(82, 97, 119); box-shadow: none; }
.nav-actions .btn-demo:hover { border-color: rgba(203, 213, 225, 0.72); background: rgba(248, 250, 252, 0.9); color: var(--color-primary-dark); transform: none; }
.nav-actions .btn-demo:active { background: rgb(241, 245, 249); }
.btn-play-icon { width: 0px; height: 0px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid; }
.section { padding: var(--section-padding-lg) 0; }
.section-tight { padding: var(--section-padding-sm) 0; }
.container { width: min(100% - 40px, var(--container)); margin: 0px auto; }
.cinematic-hero {
  --hero-progress: 0;
  --hero-product-x: 0vw;
  --hero-product-scale: 1;
  --hero-product-opacity: 1;
  --hero-intro-opacity: 1;
  --hero-headline-opacity: 0;
  --hero-content-opacity: 0;
  --hero-product-exit: 0;
  --hero-product-out: 0;
  --hero-headline-in: 0;
  --hero-content-in: 0;
  --hero-headline-y: 28px;
  --hero-content-y: 26px;
  position: relative;
  margin-top: 0;
  padding-top: 0;
  min-height: 290vh;
  overflow: visible;
  background:
    radial-gradient(circle at 78% 24%, rgba(79, 70, 229, 0.2), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(14, 165, 233, 0.11), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5f7fc 62%, var(--color-bg) 100%);
}
.cinematic-hero::before {
  position: absolute;
  inset: 0 0 auto 48%;
  height: 100vh;
  background-image: linear-gradient(rgba(79, 70, 229, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 70, 229, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 70%, transparent);
  pointer-events: none;
  content: "";
}
.cinematic-hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}
.cinematic-hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 7vw, 116px);
  align-items: center;
  height: 100%;
  min-height: 100vh;
  padding: clamp(54px, 7vh, 82px) 0 clamp(32px, 5vh, 54px);
}
.cinematic-hero__intro {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  gap: 28px;
  max-width: 560px;
  opacity: var(--hero-intro-opacity);
  transform: translateY(0);
  transition: opacity 120ms linear;
}
.cinematic-hero__intro-title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.85rem, 2.42vw, 2.78rem);
  font-weight: 850;
  letter-spacing: -0.018em;
  line-height: 1.13;
  text-wrap: balance;
}

.cinematic-hero__intro-line {
  display: block;
  padding-bottom: 0.03em;
}

.cinematic-hero__intro-line.text-gradient,
.cinematic-hero__intro-line .text-gradient {
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

.cinematic-hero__intro-title .text-gradient,
.cinematic-hero__headline .text-gradient {
  display: inline-block;
}
.cinematic-hero__eyebrow {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cinematic-hero__headline {
  position: absolute;
  z-index: 3;
  left: max(20px, calc((100vw - var(--container)) / 2));
  top: 35%;
  width: min(760px, calc(100vw - 40px));
  opacity: var(--hero-headline-opacity);
  transform: translateY(calc(-50% + var(--hero-headline-y)));
  pointer-events: none;
}
.cinematic-hero__headline h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 6.35vw, 6.75rem);
  line-height: 0.98;
  letter-spacing: -0.032em;
}
.cinematic-hero__headline .cinematic-hero__eyebrow {
  margin-bottom: 18px;
}
.cinematic-hero__product {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: grid;
  gap: 16px;
  width: min(1120px, 100%);
  justify-self: end;
  opacity: var(--hero-product-opacity);
  transform: translate3d(var(--hero-product-x), 0, 0) scale(var(--hero-product-scale));
  transform-origin: center right;
  will-change: transform, opacity;
  pointer-events: none;
}
.cinematic-hero__product::before {
  position: absolute;
  z-index: -2;
  inset: 8% -7% 0 13%;
  border-radius: 38%;
  background: radial-gradient(circle at 55% 36%, rgba(79, 70, 229, 0.34), transparent 52%);
  filter: blur(58px);
  content: "";
}
.cinematic-hero__product-badge {
  position: relative;
  z-index: 4;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  box-shadow: rgba(15, 23, 42, 0.12) 0 16px 38px, rgba(79, 70, 229, 0.1) 0 6px 18px;
  backdrop-filter: blur(14px);
  font-size: 0.74rem;
  font-weight: 880;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.cinematic-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-green);
  box-shadow: rgba(52, 211, 153, 0.22) 0 0 0 5px;
}
.cinematic-hero__screenshot {
  width: 100%;
  border-color: rgba(169, 181, 204, 0.82);
  box-shadow: rgba(15, 23, 42, 0.2) 0 42px 108px, rgba(79, 70, 229, 0.18) 0 20px 60px, rgba(255, 255, 255, 0.78) 0 0 0 1px inset;
}
.cinematic-hero__screenshot .product-screenshot {
  max-height: min(78svh, 760px);
  filter: contrast(1.12) saturate(1.08) brightness(0.99);
}
.cinematic-hero__content {
  position: absolute;
  z-index: 5;
  left: max(20px, calc((100vw - var(--container)) / 2));
  bottom: clamp(34px, 6vh, 72px);
  width: min(620px, calc(100vw - 40px));
  opacity: var(--hero-content-opacity);
  transform: translateY(var(--hero-content-y));
  pointer-events: none;
}
.cinematic-hero.has-final-content .cinematic-hero__content {
  pointer-events: auto;
}
.cinematic-hero__content .lead {
  margin-top: 0;
  color: rgb(83, 100, 122);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}
.cinematic-hero__content .hero-actions {
  margin-top: 22px;
}
.cinematic-hero__badges {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .cinematic-hero {
    min-height: auto;
  }

  .cinematic-hero::before {
    inset: 0;
    height: 100%;
    opacity: 0.55;
    mask-image: linear-gradient(180deg, #000, transparent 88%);
  }

  .cinematic-hero__sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .cinematic-hero__stage {
    grid-template-columns: 1fr;
    gap: 28px;
    height: auto;
    min-height: auto;
    padding: 72px 0 62px;
  }

  .cinematic-hero__intro {
    display: none;
  }

  .cinematic-hero__headline,
  .cinematic-hero__content {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .cinematic-hero__headline {
    order: 1;
  }

  .cinematic-hero__headline h1 {
    max-width: 780px;
    font-size: clamp(2.85rem, 10vw, 4.45rem);
    line-height: 0.98;
  }

  .cinematic-hero__product {
    grid-column: 1;
    order: 2;
    width: min(100%, 780px);
    justify-self: center;
    opacity: 1;
    transform: none;
  }

  .cinematic-hero__product-badge {
    justify-self: start;
    font-size: 0.68rem;
  }

  .cinematic-hero__content {
    order: 3;
    max-width: 720px;
  }

  .cinematic-hero__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .cinematic-hero__stage {
    gap: 24px;
    padding: 52px 0 52px;
  }

  .cinematic-hero__headline h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 1;
  }

  .cinematic-hero__headline .cinematic-hero__eyebrow {
    margin-bottom: 13px;
  }

  .cinematic-hero__content .hero-actions {
    display: grid;
    gap: 10px;
  }

  .cinematic-hero__badges {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 981px) {
  .cinematic-hero {
    min-height: auto;
  }

  .cinematic-hero__sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .cinematic-hero__stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    height: auto;
    min-height: auto;
    padding: 76px 0 72px;
  }

  .cinematic-hero__intro {
    display: none;
  }

  .cinematic-hero__headline,
  .cinematic-hero__content {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    grid-column: 1;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .cinematic-hero__headline {
    align-self: end;
  }

  .cinematic-hero__headline h1 {
    font-size: clamp(3rem, 5.15vw, 5.35rem);
  }

  .cinematic-hero__content {
    align-self: start;
    margin-top: 22px;
  }

  .cinematic-hero__product {
    grid-column: 2;
    grid-row: 1 / span 2;
    opacity: 1;
    transform: none;
  }

  .cinematic-hero__product-badge {
    justify-self: center;
    opacity: 1;
  }
}
.hero { position: relative; overflow: hidden; padding: 96px 0px 76px; background: radial-gradient(circle at 22% 10%, rgba(79, 70, 229, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%); }
.hero-premium { padding: 58px 0px 64px; background: radial-gradient(circle at 16% 8%, rgba(79, 70, 229, 0.13), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(79, 70, 229, 0.18), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(14, 165, 233, 0.11), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fc 58%, var(--color-bg) 100%); }
.hero-premium::after { position: absolute; inset: 0px 0px auto 52%; height: 100%; background-image: linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(90deg, transparent, rgb(0, 0, 0) 22%, rgb(0, 0, 0) 68%, transparent); pointer-events: none; content: ""; }
.hero-grid, .split-grid { display: grid; grid-template-columns: minmax(0px, 1fr) minmax(360px, 0.86fr); gap: 48px; align-items: center; }
.hero-premium .hero-grid { grid-template-columns: minmax(0px, 0.88fr) minmax(520px, 1.12fr); gap: 48px; align-items: start; }
.hero-copy { position: relative; z-index: 3; padding-top: 26px; }
.hero-visual { position: relative; z-index: 2; padding: 18px 20px 46px 28px; isolation: isolate; }
.hero-visual::before { position: absolute; z-index: -2; inset: 24px 0px 6px 24px; border-radius: 38px; background: radial-gradient(circle at 72% 18%, rgba(79, 70, 229, 0.32), transparent 38%), radial-gradient(circle at 28% 76%, rgba(14, 165, 233, 0.17), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(231, 237, 251, 0.54)); filter: blur(1px); content: ""; }
.hero-visual::after { position: absolute; z-index: -1; inset: 10% -4% 2% 12%; border-radius: 40%; background: rgba(79, 70, 229, 0.24); filter: blur(58px); pointer-events: none; content: ""; }
.hero-mockup { transform: translateY(4px); }
.floating-note { position: absolute; z-index: 6; top: -8px; right: 18px; display: grid; gap: 5px; max-width: 238px; padding: 12px 14px; border: 1px solid rgba(203, 213, 225, 0.7); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.94); box-shadow: rgba(15, 23, 42, 0.14) 0px 18px 48px, rgba(79, 70, 229, 0.1) 0px 6px 18px; backdrop-filter: blur(16px); transition: transform 220ms, box-shadow 220ms; }
.floating-note strong { color: var(--color-text); font-size: 0.82rem; line-height: 1.36; }
.floating-note .floating-note-label { color: var(--color-primary); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.floating-status { position: absolute; z-index: 6; right: 4px; bottom: 28px; display: flex; align-items: center; gap: 11px; padding: 12px 15px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: var(--radius-md); background: rgba(14, 23, 38, 0.91); color: rgb(255, 255, 255); box-shadow: rgba(15, 23, 42, 0.22) 0px 18px 46px, rgba(49, 46, 129, 0.12) 0px 5px 16px; backdrop-filter: blur(14px); transition: transform 220ms, box-shadow 220ms; }
.hero-visual:hover .floating-note { transform: translateY(-3px); box-shadow: rgba(15, 23, 42, 0.16) 0px 22px 54px, rgba(79, 70, 229, 0.12) 0px 8px 22px; }
.hero-visual:hover .floating-status { transform: translateY(-2px); }
.floating-status span:last-child { display: grid; gap: 1px; }
.floating-status small { color: rgb(184, 197, 217); font-size: 0.7rem; font-weight: 700; }
.floating-status strong { font-size: 0.84rem; line-height: 1.25; }
.status-pulse { width: 9px; height: 9px; border-radius: 999px; background: rgb(52, 211, 153); box-shadow: rgba(52, 211, 153, 0.14) 0px 0px 0px 5px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0px 0px 18px; color: var(--color-primary-dark); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.eyebrow::before { width: 9px; height: 9px; border-radius: 999px; background: var(--color-green); content: ""; }
h1, h2, h3 { margin: 0px; color: var(--color-text); font-family: var(--font-display); font-weight: 850; line-height: 1.02; letter-spacing: -0.045em; text-wrap: balance; }
h1 { max-width: 860px; font-size: clamp(2.75rem, 5.35vw, 5.35rem); line-height: 0.96; letter-spacing: -0.058em; }
.hero-premium h1 { max-width: 720px; font-size: clamp(3.45rem, 5vw, 4.95rem); line-height: 0.95; letter-spacing: -0.06em; text-wrap: balance; }
h2 { max-width: 790px; font-size: clamp(2rem, 3.55vw, 3.25rem); line-height: 0.98; letter-spacing: -0.052em; }
h3 { font-size: 1.1rem; }
.lead { max-width: 760px; margin: 24px 0px 0px; color: var(--color-muted); font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.hero-premium .lead { max-width: 620px; color: rgb(83, 100, 122); font-size: clamp(1.05rem, 1.45vw, 1.18rem); line-height: 1.62; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions .btn { min-height: 46px; padding: 12px 19px; }
.trust-list { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 9px; max-width: 520px; margin: 25px 0px 0px; padding: 0px; list-style: none; }
.trust-list li { display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 7px 11px 7px 8px; border: 1px solid rgba(203, 213, 225, 0.68); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.66); color: rgb(51, 65, 85); font-size: 0.78rem; font-weight: 720; line-height: 1.25; box-shadow: rgba(15, 23, 42, 0.04) 0px 8px 22px; backdrop-filter: blur(10px); transition: border-color 180ms, background-color 180ms, box-shadow 180ms, transform 180ms; }
.trust-list li:hover { border-color: rgba(165, 180, 252, 0.68); background: rgba(255, 255, 255, 0.84); box-shadow: rgba(15, 23, 42, 0.06) 0px 10px 26px; transform: translateY(-1px); }
.trust-icon { display: inline-flex; flex: 0 0 28px; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 7px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.65rem; font-weight: 900; }
.mockup-shell { position: relative; border: 1px solid rgba(185, 198, 216, 0.85); border-radius: var(--radius-lg); background: linear-gradient(rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92)); box-shadow: rgba(15, 23, 42, 0.14) 0px 28px 82px, rgba(79, 70, 229, 0.12) 0px 12px 34px; overflow: hidden; }
.screenshot-card { position: relative; width: 100%; border: 1px solid rgba(185, 198, 216, 0.86); border-radius: var(--radius-lg); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.1), transparent 34%), linear-gradient(rgb(255, 255, 255), rgb(248, 251, 255)); box-shadow: rgba(15, 23, 42, 0.13) 0px 24px 70px, rgba(79, 70, 229, 0.08) 0px 10px 30px; overflow: hidden; }
.screenshot-card.can-open-lightbox { cursor: zoom-in; }
.screenshot-card.is-missing { cursor: default; }
.screenshot-card.browser-frame { padding: 44px 10px 10px; }
.screenshot-card.browser-frame::before { position: absolute; top: 0px; right: 0px; left: 0px; height: 36px; border-bottom: 1px solid rgba(220, 228, 239, 0.9); background: linear-gradient(rgb(255, 255, 255), rgb(246, 248, 251)); content: ""; }
.screenshot-card.browser-frame::after { position: absolute; top: 14px; left: 18px; width: 42px; height: 8px; border-radius: 999px; background: radial-gradient(circle at 4px 4px, rgb(248, 113, 113) 0px, rgb(248, 113, 113) 4px, transparent 4px), radial-gradient(circle at 21px 4px, rgb(251, 191, 36) 0px, rgb(251, 191, 36) 4px, transparent 4px), radial-gradient(circle at 38px 4px, rgb(52, 211, 153) 0px, rgb(52, 211, 153) 4px, transparent 4px); content: ""; }
.screenshot-card.paper-frame { padding: 18px; border-radius: var(--radius-md); background: linear-gradient(rgb(248, 250, 252), rgb(238, 243, 251)); }
.screenshot-card.phone-frame { width: min(100%, 246px); margin: 0px auto; padding: 10px; border: 10px solid rgb(17, 24, 39); border-radius: 30px; background: rgb(17, 24, 39); box-shadow: var(--shadow-lg); }
.product-screenshot { position: relative; z-index: 1; width: 100%; height: auto; border-radius: calc(var(--radius-lg) - 10px); background: rgb(255, 255, 255); object-fit: contain; }
.paper-frame .product-screenshot { border: 1px solid rgba(185, 198, 216, 0.74); border-radius: 8px; box-shadow: rgba(15, 23, 42, 0.12) 0px 18px 48px; }
.phone-frame .product-screenshot { border-radius: 20px; }
.screenshot-card.is-loaded .screenshot-fallback { display: none; }
.screenshot-card.is-missing { border: 0px; background: transparent; box-shadow: none; }
.screenshot-card.is-missing.browser-frame, .screenshot-card.is-missing.paper-frame { padding: 0px; }
.screenshot-card.is-missing.browser-frame::before, .screenshot-card.is-missing.browser-frame::after { display: none; }
.screenshot-card.is-missing.phone-frame { border: 0px; padding: 0px; background: transparent; }
.hero-screenshot { position: relative; z-index: 3; width: min(100%, 770px); margin-left: auto; border-color: rgba(169, 181, 204, 0.8); box-shadow: rgba(15, 23, 42, 0.18) 0px 40px 92px, rgba(79, 70, 229, 0.18) 0px 18px 50px, rgba(255, 255, 255, 0.76) 0px 0px 0px 1px inset; transform: translateY(2px); transition: transform 240ms, box-shadow 240ms, border-color 240ms; }
.hero-screenshot:hover { border-color: rgba(129, 140, 248, 0.55); box-shadow: rgba(15, 23, 42, 0.2) 0px 46px 106px, rgba(79, 70, 229, 0.21) 0px 22px 58px, rgba(255, 255, 255, 0.82) 0px 0px 0px 1px inset; transform: translateY(-1px); }
.hero-screenshot .product-screenshot { max-height: 610px; filter: contrast(1.12) saturate(1.08) brightness(0.99); }
@media (min-width: 981px) and (max-width: 1440px) {
  .hero-premium { padding-top: 44px; padding-bottom: 54px; }
  .hero-copy { padding-top: 18px; }
  .hero-premium h1 { font-size: clamp(3.2rem, 4.4vw, 4.35rem); }
  .hero-premium .lead { margin-top: 19px; line-height: 1.56; }
  .hero-premium .hero-actions { margin-top: 24px; }
  .hero-premium .trust-list { margin-top: 18px; }
  .hero-premium .trust-list li { min-height: 49px; }
  .hero-visual { padding-bottom: 38px; }
  .hero-screenshot .product-screenshot { max-height: 570px; }
}

.dashboard-screenshot .product-screenshot, .calendar-screenshot .product-screenshot, .invoice-screenshot .product-screenshot { max-height: 560px; }
.dashboard-section { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 42%, rgba(79, 70, 229, 0.075), transparent 31%), linear-gradient(rgb(251, 252, 255) 0%, rgb(247, 249, 253) 100%); }
.dashboard-section::before { position: absolute; top: 0px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.22), transparent); content: ""; }
.dashboard-grid { grid-template-columns: minmax(0px, 0.78fr) minmax(520px, 1.22fr); gap: clamp(48px, 5vw, 74px); }
.dashboard-copy h2 { max-width: 560px; }
.dashboard-copy .section-copy { max-width: 610px; }
.dashboard-benefits { display: grid; gap: 0px; margin-top: 26px; border-top: 1px solid rgba(203, 213, 225, 0.72); }
.dashboard-benefit { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 13px 0px; border-bottom: 1px solid rgba(203, 213, 225, 0.72); transition: transform 180ms; }
.dashboard-benefit:hover { transform: translateX(3px); }
.dashboard-benefit-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.15); border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.68rem; font-weight: 900; }
.dashboard-benefit-warning { border-color: rgba(245, 158, 11, 0.16); background: rgb(255, 248, 232); color: rgb(164, 84, 5); font-size: 0.9rem; }
.dashboard-benefit-crm { border-color: rgba(15, 143, 106, 0.16); background: var(--color-green-soft); color: rgb(8, 115, 87); font-size: 0.58rem; }
.dashboard-benefit strong { display: block; color: var(--color-text); font-size: 0.93rem; line-height: 1.3; }
.dashboard-benefit p { margin: 4px 0px 0px; color: var(--color-muted); font-size: 0.84rem; line-height: 1.45; }
.dashboard-visual { position: relative; z-index: 1; padding: 22px 22px 34px 26px; isolation: isolate; }
.dashboard-visual::before { position: absolute; z-index: -1; inset: 5% 0px 1% 4%; border-radius: 34px; background: radial-gradient(circle at 70% 26%, rgba(79, 70, 229, 0.2), transparent 37%), radial-gradient(circle at 20% 76%, rgba(14, 165, 233, 0.1), transparent 34%); content: ""; filter: blur(18px); }
.dashboard-screenshot { border-color: rgba(99, 102, 241, 0.25); box-shadow: rgba(15, 23, 42, 0.16) 0px 34px 82px, rgba(79, 70, 229, 0.13) 0px 16px 42px; transition: transform 220ms, border-color 220ms, box-shadow 220ms; }
.dashboard-screenshot:hover { transform: translateY(-2px); border-color: rgba(99, 102, 241, 0.42); box-shadow: rgba(15, 23, 42, 0.18) 0px 40px 92px, rgba(79, 70, 229, 0.16) 0px 20px 48px; }
.dashboard-screenshot .product-screenshot { max-height: 650px; filter: contrast(1.08) saturate(1.04); }
.dashboard-callouts { position: absolute; z-index: 4; inset: 0px; pointer-events: none; }
.dashboard-callout { position: absolute; display: grid; gap: 3px; min-width: 154px; padding: 10px 12px; border: 1px solid rgba(203, 213, 225, 0.76); border-radius: 9px; background: rgba(255, 255, 255, 0.93); box-shadow: rgba(15, 23, 42, 0.12) 0px 14px 34px; backdrop-filter: blur(12px); }
.dashboard-callout span { color: rgb(113, 128, 150); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
.dashboard-callout strong { color: rgb(39, 54, 75); font-size: 0.77rem; line-height: 1.25; }
.dashboard-callout-focus { top: 5px; left: -12px; border-color: rgba(99, 102, 241, 0.28); }
.dashboard-callout-alerts { top: 42%; right: -14px; }
.dashboard-callout-crm { bottom: 8px; left: 2px; border-color: rgba(15, 143, 106, 0.22); }
@media (min-width: 981px) and (max-width: 1180px) {
  .dashboard-grid { grid-template-columns: minmax(0px, 0.74fr) minmax(480px, 1.26fr); gap: 32px; }
  .dashboard-copy h2 { font-size: clamp(2.2rem, 4.2vw, 3.25rem); }
  .dashboard-benefit { grid-template-columns: 34px 1fr; gap: 10px; padding: 11px 0px; }
  .dashboard-benefit-icon { width: 31px; height: 31px; }
  .dashboard-visual { padding: 18px 10px 28px 18px; }
  .dashboard-screenshot .product-screenshot { max-height: 580px; }
  .dashboard-callout { min-width: 138px; padding: 8px 10px; }
  .dashboard-callout-focus { top: 1px; left: 0px; }
  .dashboard-callout-alerts { right: 0px; }
  .dashboard-callout-crm { bottom: 2px; left: 8px; }
}
.compact-screenshot .product-screenshot { max-height: 340px; object-position: center top; }
.calendar-screenshot .product-screenshot { max-height: 620px; }
.calendar-section { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 42%, rgba(79, 70, 229, 0.075), transparent 32%), linear-gradient(rgb(255, 255, 255) 0%, rgb(250, 251, 255) 100%); }
.calendar-grid { grid-template-columns: minmax(0px, 0.68fr) minmax(620px, 1.32fr); gap: clamp(40px, 4vw, 64px); align-items: center; }
.calendar-copy h2 { max-width: 540px; }
.calendar-copy .section-copy { max-width: 590px; }
.calendar-benefits { display: grid; margin-top: 26px; border-top: 1px solid rgba(203, 213, 225, 0.72); }
.calendar-benefit { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 13px 0px; border-bottom: 1px solid rgba(203, 213, 225, 0.72); transition: transform 180ms; }
.calendar-benefit:hover { transform: translateX(3px); }
.calendar-benefit-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.15); border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.6rem; font-weight: 900; }
.calendar-benefit-booking { border-color: rgba(14, 165, 233, 0.17); background: rgb(237, 249, 255); color: rgb(8, 122, 170); font-size: 1rem; }
.calendar-benefit-alert { border-color: rgba(245, 158, 11, 0.16); background: rgb(255, 248, 232); color: rgb(164, 84, 5); }
.calendar-benefit strong { display: block; color: var(--color-text); font-size: 0.93rem; line-height: 1.3; }
.calendar-benefit p { max-width: 440px; margin: 4px 0px 0px; color: var(--color-muted); font-size: 0.84rem; line-height: 1.45; }
.calendar-visual { position: relative; z-index: 1; min-width: 0px; padding: 24px 18px 36px; isolation: isolate; }
.calendar-visual::before { position: absolute; z-index: -1; inset: 4% -2% 2%; border-radius: 38px; background: radial-gradient(circle at 62% 24%, rgba(79, 70, 229, 0.2), transparent 38%), radial-gradient(circle at 18% 78%, rgba(14, 165, 233, 0.11), transparent 35%); content: ""; filter: blur(22px); }
.calendar-screenshot { border-color: rgba(99, 102, 241, 0.26); box-shadow: rgba(15, 23, 42, 0.16) 0px 34px 82px, rgba(79, 70, 229, 0.13) 0px 16px 42px; transition: transform 220ms, border-color 220ms, box-shadow 220ms; }
.calendar-screenshot:hover { transform: translateY(-2px); border-color: rgba(99, 102, 241, 0.42); box-shadow: rgba(15, 23, 42, 0.18) 0px 40px 92px, rgba(79, 70, 229, 0.16) 0px 20px 48px; }
.calendar-screenshot .product-screenshot { max-height: none; filter: contrast(1.12) saturate(1.07); }
.calendar-signals { position: absolute; z-index: 4; inset: 0px; pointer-events: none; }
.calendar-signal { position: absolute; display: grid; gap: 3px; min-width: 166px; padding: 10px 12px; border: 1px solid rgba(203, 213, 225, 0.76); border-radius: 9px; background: rgba(255, 255, 255, 0.94); box-shadow: rgba(15, 23, 42, 0.12) 0px 14px 36px; backdrop-filter: blur(12px); }
.calendar-signal span { color: var(--color-primary); font-size: 0.63rem; font-weight: 900; letter-spacing: 0.035em; text-transform: uppercase; }
.calendar-signal strong { color: rgb(39, 54, 75); font-size: 0.77rem; line-height: 1.25; }
.calendar-signal small { color: rgb(113, 128, 150); font-size: 0.68rem; line-height: 1.25; }
.calendar-signal-booking { top: 8px; right: 8px; border-color: rgba(99, 102, 241, 0.28); }
.calendar-signal-block { bottom: 10px; left: 8px; border-color: rgba(14, 165, 233, 0.22); }
.calendar-signal-noshow { right: 8px; bottom: 10px; min-width: 190px; border-color: rgba(245, 158, 11, 0.22); }
@media (max-width: 1180px) {
  .calendar-grid { grid-template-columns: 1fr; gap: 44px; }
  .calendar-copy { max-width: 720px; }
  .calendar-visual { width: min(100%, 900px); margin: 0px auto; padding: 18px 12px 0px; }
  .calendar-signals { position: static; display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 10px; margin-top: 12px; }
  .calendar-signal { position: static; min-width: 0px; }
}
.screenshot-lightbox { position: fixed; inset: 0px; z-index: 100; display: grid; place-items: center; padding: clamp(16px, 3vw, 34px); background: rgba(8, 17, 31, 0.78); backdrop-filter: blur(12px); }
.screenshot-lightbox[hidden] { display: none; }
.lightbox-dialog { position: relative; display: grid; grid-template-rows: minmax(0px, 1fr) auto; width: min(100%, 1180px); max-height: min(92vh, 920px); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius-md); background: rgb(11, 18, 32); box-shadow: rgba(0, 0, 0, 0.42) 0px 34px 110px; overflow: hidden; }
.lightbox-close { position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; background: rgba(15, 23, 42, 0.82); color: rgb(255, 255, 255); cursor: pointer; font-size: 1.35rem; font-weight: 800; }
.lightbox-media { display: grid; min-height: 0px; place-items: center; padding: clamp(14px, 2vw, 24px); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.22), transparent 34%), rgb(11, 18, 32); }
.lightbox-media img { max-width: 100%; max-height: min(74vh, 760px); border-radius: 10px; background: rgb(255, 255, 255); object-fit: contain; box-shadow: rgba(0, 0, 0, 0.32) 0px 18px 60px; }
.lightbox-copy { padding: 18px clamp(18px, 3vw, 28px) 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); background: rgba(8, 17, 31, 0.95); }
.lightbox-copy h2 { color: rgb(255, 255, 255); font-size: clamp(1.2rem, 2.2vw, 1.65rem); }
.lightbox-copy p { max-width: 820px; margin: 8px 0px 0px; color: rgb(185, 200, 221); }
.hero-mockup { border-color: rgba(79, 70, 229, 0.2); }
.hero-mockup::before { position: absolute; top: 0px; right: 0px; left: 0px; height: 4px; background: linear-gradient(90deg, var(--color-primary), var(--color-green), #0ea5e9); content: ""; }
.mockup-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 58px; padding: 16px 18px; border-bottom: 1px solid var(--color-line); background: linear-gradient(rgb(255, 255, 255), rgb(248, 251, 255)); }
.mockup-title { color: var(--color-text); font-size: 0.88rem; font-weight: 800; }
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 9px; height: 9px; border-radius: 999px; background: rgb(203, 213, 225); }
.mockup-body { display: grid; gap: 14px; padding: 18px; }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 12px; }
.metric-card, .task-card, .mini-card, .feature-card, .reason-card, .legal-card, .form-card { border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: rgb(255, 255, 255); box-shadow: var(--shadow-sm); }
.metric-card { padding: 15px; }
.metric-accent { border-color: rgba(79, 70, 229, 0.28); background: linear-gradient(rgb(255, 255, 255), rgb(245, 246, 255)); }
.metric-label { display: block; color: var(--color-muted); font-size: 0.76rem; font-weight: 750; }
.metric-value { display: block; margin-top: 6px; color: var(--color-text); font-size: 1.32rem; font-weight: 850; }
.task-card { padding: 14px 16px; }
.priority-card { background: linear-gradient(rgb(255, 255, 255), rgb(251, 252, 255)); }
.priority-card .task-row:first-child { color: var(--color-primary-dark); font-weight: 800; }
.task-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; padding: 10px 0px; border-bottom: 1px solid rgb(238, 242, 247); color: rgb(52, 66, 86); font-size: 0.9rem; }
.task-row:last-child { border-bottom: 0px; }
.task-row > span:last-child { text-align: right; }
.badge { display: inline-flex; min-height: 24px; align-items: center; justify-content: center; padding: 3px 9px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.76rem; font-weight: 800; }
.badge-green { background: var(--color-green-soft); color: var(--color-green); }
.section-header { max-width: 820px; margin-bottom: 34px; }
.section-header.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-kicker { margin: 0px 0px 12px; color: var(--color-primary); font-size: 0.84rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.section-copy { margin: 16px 0px 0px; color: var(--color-muted); font-size: 1.07rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 16px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0px, 1fr)); }
.outcome-grid { display: grid; grid-template-columns: repeat(4, minmax(0px, 1fr)); gap: 14px; }
.feature-card, .reason-card { padding: 22px; }
.reason-card { border-top: 3px solid rgba(79, 70, 229, 0.22); background: linear-gradient(rgb(255, 255, 255), rgb(251, 252, 255)); }
.reason-card:nth-child(3n+1) { border-top-color: rgba(15, 143, 106, 0.24); }
.outcome-card { min-height: 274px; }
.spotlight-card { border-color: rgba(79, 70, 229, 0.22); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.12), transparent 38%), rgb(255, 255, 255); }
.demo-profile-card { display: grid; gap: 16px; }
.profile-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.mini-label { margin: 0px 0px 6px; color: var(--color-primary); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.mini-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 10px; margin-top: 16px; }
.demo-profile-card .mini-stat-grid { margin-top: 0px; }
.mini-stat { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: rgb(248, 250, 252); }
.mini-stat span { color: var(--color-muted); font-size: 0.76rem; font-weight: 750; }
.mini-stat strong { color: var(--color-text); font-size: 0.94rem; }
.compact-demo-card { padding: 12px 14px; box-shadow: none; }
.calendar-visual-stack, .finance-visual-stack { display: grid; gap: 16px; }
.customer-section { position: relative; overflow: hidden; background: radial-gradient(circle at 76% 24%, rgba(15, 143, 106, 0.067), transparent 28%), linear-gradient(rgb(255, 255, 255) 0%, rgb(251, 252, 255) 100%); }
.customer-section::before { position: absolute; top: 0px; right: 12%; left: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(15, 143, 106, 0.18), transparent); content: ""; }
.customer-grid { grid-template-columns: minmax(0px, 0.7fr) minmax(600px, 1.3fr); gap: clamp(38px, 4vw, 62px); align-items: start; }
.customer-copy { position: sticky; top: 116px; }
.customer-copy h2 { max-width: 570px; }
.customer-copy .section-copy { max-width: 620px; }
.customer-benefits { display: grid; margin-top: 26px; border-top: 1px solid rgba(203, 213, 225, 0.72); }
.customer-benefit { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 13px 0px; border-bottom: 1px solid rgba(203, 213, 225, 0.72); transition: transform 180ms; }
.customer-benefit:hover { transform: translateX(3px); }
.customer-benefit-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.14); border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.62rem; font-weight: 900; }
.customer-benefit-signal { border-color: rgba(245, 158, 11, 0.16); background: rgb(255, 248, 232); color: rgb(164, 84, 5); }
.customer-benefit-action { border-color: rgba(15, 143, 106, 0.18); background: var(--color-green-soft); color: rgb(8, 115, 87); font-size: 0.95rem; }
.customer-benefit strong { display: block; color: var(--color-text); font-size: 0.93rem; line-height: 1.3; }
.customer-benefit p { margin: 4px 0px 0px; color: var(--color-muted); font-size: 0.84rem; line-height: 1.45; }
.customer-showcase { position: relative; z-index: 1; display: grid; gap: 10px; min-width: 0px; padding: 12px; border: 1px solid rgba(203, 213, 225, 0.72); border-radius: 16px; background: rgba(255, 255, 255, 0.88); box-shadow: rgba(15, 23, 42, 0.13) 0px 30px 76px, rgba(79, 70, 229, 0.1) 0px 12px 34px; backdrop-filter: blur(18px); isolation: isolate; }
.customer-showcase::before { position: absolute; z-index: -1; inset: -5% -4%; border-radius: 36px; background: radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.17), transparent 36%), radial-gradient(circle at 78% 80%, rgba(59, 130, 246, 0.11), transparent 38%); content: ""; filter: blur(24px); }
.customer-showcase-header { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 18px; padding: 0px 4px; }
.customer-showcase-header > div:first-child { display: grid; gap: 3px; }
.customer-showcase-count { color: var(--color-primary); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.08em; }
.customer-showcase-header strong { color: var(--color-text); font-size: 0.94rem; line-height: 1.25; }
.customer-showcase-arrows { display: flex; align-items: center; gap: 7px; }
.customer-showcase-arrow { display: grid; width: 34px; height: 34px; padding: 0px; place-items: center; border: 1px solid rgba(148, 163, 184, 0.38); border-radius: 8px; background: rgba(255, 255, 255, 0.9); color: rgb(82, 97, 119); cursor: pointer; transition: border-color 180ms, background 180ms, color 180ms, transform 180ms; }
.customer-showcase-arrow:hover { border-color: rgba(99, 102, 241, 0.42); background: var(--color-primary-soft); color: var(--color-primary-dark); transform: translateY(-1px); }
.customer-showcase-arrow:focus-visible, .customer-showcase-step:focus-visible { outline: rgba(99, 102, 241, 0.24) solid 3px; outline-offset: 2px; }
.customer-showcase-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.customer-showcase-stage { position: relative; display: grid; height: clamp(470px, 43vw, 610px); min-height: 0px; place-items: center; overflow: hidden; border-radius: 10px; background: radial-gradient(circle at 50% 16%, rgba(99, 102, 241, 0.08), transparent 48%), rgb(247, 249, 253); }
.customer-showcase-screen { width: calc(100% - 8px); height: calc(100% - 8px); border-color: rgba(99, 102, 241, 0.22); box-shadow: rgba(15, 23, 42, 0.15) 0px 24px 58px, rgba(79, 70, 229, 0.1) 0px 12px 30px; }
.customer-showcase-screen.browser-frame { padding: 34px 4px 4px; }
.customer-showcase-screen.browser-frame::before { height: 29px; }
.customer-showcase-screen.browser-frame::after { top: 10px; left: 12px; }
.customer-showcase-screen .product-screenshot { width: 100%; height: 100%; max-height: none; object-fit: contain; object-position: center top; filter: contrast(1.08) saturate(1.04); }
.customer-showcase-screen.is-loaded { animation: 360ms ease 0s 1 normal both running customer-showcase-reveal; }
@keyframes customer-showcase-reveal { 
  0% { opacity: 0.45; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0px); }
}
.customer-showcase-progress { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 6px; height: 2px; margin: 1px 3px 0px; }
.customer-showcase-progress span { position: relative; overflow: hidden; border-radius: 999px; background: rgba(99, 102, 241, 0.14); }
.customer-showcase-progress i { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, rgb(109, 93, 252), rgb(79, 70, 229)); transform: scaleX(0); transform-origin: left center; }
.customer-showcase-progress span.is-complete i { transform: scaleX(1); }
.customer-showcase:not(.is-progressing) .customer-showcase-progress span.is-active i { transform: scaleX(1); }
.customer-showcase.is-progressing .customer-showcase-progress span.is-active i { animation: 5.5s linear 0s 1 normal forwards running customer-showcase-progress; }
.customer-showcase.is-paused .customer-showcase-progress span.is-active i { animation-play-state: paused; }
@keyframes customer-showcase-progress { 
  100% { transform: scaleX(1); }
}
.customer-showcase-steps { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 4px; padding: 0px 2px; }
.customer-showcase-step { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: center; min-width: 0px; padding: 7px 8px; border: 1px solid transparent; border-radius: 7px; background: transparent; color: var(--color-muted); text-align: left; cursor: pointer; transition: border-color 180ms, background 180ms, color 180ms; }
.customer-showcase-step:hover { background: rgba(99, 102, 241, 0.055); color: var(--color-text); }
.customer-showcase-step.is-active { border-color: transparent; background: rgba(99, 102, 241, 0.07); color: var(--color-primary-dark); }
.customer-showcase-step span { color: var(--color-primary); font-size: 0.66rem; font-weight: 900; }
.customer-showcase-step strong { overflow: hidden; font-size: 0.76rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.working-hours-section { position: relative; overflow: hidden; background: radial-gradient(circle at 76% 42%, rgba(79, 70, 229, 0.086), transparent 32%), linear-gradient(rgb(247, 249, 253) 0%, rgb(251, 252, 255) 100%); }
.working-hours-grid { grid-template-columns: minmax(0px, 0.68fr) minmax(620px, 1.32fr); gap: clamp(40px, 4vw, 64px); align-items: center; }
.working-hours-copy h2 { max-width: 570px; }
.working-hours-copy .section-copy { max-width: 590px; }
.working-hours-benefits { display: grid; margin-top: 26px; border-top: 1px solid rgba(203, 213, 225, 0.72); }
.working-hours-benefit { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 12px 0px; border-bottom: 1px solid rgba(203, 213, 225, 0.72); transition: transform 180ms; }
.working-hours-benefit:hover { transform: translateX(3px); }
.working-hours-benefit-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.15); border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.58rem; font-weight: 900; }
.working-hours-benefit-absence { border-color: rgba(245, 158, 11, 0.16); background: rgb(255, 248, 232); color: rgb(164, 84, 5); }
.working-hours-benefit-booking { border-color: rgba(14, 165, 233, 0.17); background: rgb(237, 249, 255); color: rgb(8, 122, 170); font-size: 1rem; }
.working-hours-benefit-export { border-color: rgba(15, 143, 106, 0.18); background: var(--color-green-soft); color: rgb(8, 115, 87); font-size: 0.5rem; }
.working-hours-benefit strong { display: block; color: var(--color-text); font-size: 0.93rem; line-height: 1.3; }
.working-hours-benefit p { max-width: 440px; margin: 4px 0px 0px; color: var(--color-muted); font-size: 0.84rem; line-height: 1.45; }
.working-hours-visual { position: relative; z-index: 1; min-width: 0px; padding: 24px 18px 36px; isolation: isolate; }
.working-hours-visual::before { position: absolute; z-index: -1; inset: 3% -2% 2%; border-radius: 38px; background: radial-gradient(circle at 66% 24%, rgba(79, 70, 229, 0.19), transparent 38%), radial-gradient(circle at 18% 80%, rgba(14, 165, 233, 0.1), transparent 35%); content: ""; filter: blur(22px); }
.working-hours-screenshot { height: clamp(470px, 39vw, 570px); border-color: rgba(99, 102, 241, 0.26); box-shadow: rgba(15, 23, 42, 0.16) 0px 34px 82px, rgba(79, 70, 229, 0.13) 0px 16px 42px; transition: transform 220ms, border-color 220ms, box-shadow 220ms; }
.working-hours-screenshot:hover { transform: translateY(-2px); border-color: rgba(99, 102, 241, 0.42); box-shadow: rgba(15, 23, 42, 0.18) 0px 40px 92px, rgba(79, 70, 229, 0.16) 0px 20px 48px; }
.working-hours-screenshot .product-screenshot { width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center 78%; filter: contrast(1.1) saturate(1.05); }
.working-hours-fallback { display: grid; gap: 18px; background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.1), transparent 36%), rgb(255, 255, 255); }
.working-hours-signals { position: absolute; z-index: 4; inset: 0px; pointer-events: none; }
.working-hours-signal { position: absolute; display: grid; gap: 3px; min-width: 178px; padding: 10px 12px; border: 1px solid rgba(203, 213, 225, 0.76); border-radius: 9px; background: rgba(255, 255, 255, 0.94); box-shadow: rgba(15, 23, 42, 0.12) 0px 14px 36px; backdrop-filter: blur(12px); }
.working-hours-signal span { color: var(--color-primary); font-size: 0.63rem; font-weight: 900; letter-spacing: 0.035em; text-transform: uppercase; }
.working-hours-signal strong { color: rgb(39, 54, 75); font-size: 0.77rem; line-height: 1.25; }
.working-hours-signal-connected { top: 8px; right: 8px; border-color: rgba(99, 102, 241, 0.28); }
.working-hours-signal-absence { bottom: 10px; left: 8px; border-color: rgba(245, 158, 11, 0.22); }
.working-hours-signal-plan { right: 8px; bottom: 10px; min-width: 196px; border-color: rgba(14, 165, 233, 0.22); }
@media (max-width: 1180px) {
  .working-hours-grid { grid-template-columns: 1fr; gap: 44px; }
  .working-hours-copy { max-width: 720px; }
  .working-hours-visual { width: min(100%, 900px); margin: 0px auto; padding: 18px 12px 0px; }
  .working-hours-signals { position: static; display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 10px; margin-top: 12px; }
  .working-hours-signal { position: static; min-width: 0px; }
}
.availability-list { display: grid; gap: 10px; }
.availability-row { display: grid; grid-template-columns: minmax(0px, 0.8fr) minmax(0px, 1fr); gap: 12px; align-items: center; padding: 13px 14px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: rgb(248, 250, 252); }
.availability-row span { color: var(--color-muted); font-size: 0.88rem; font-weight: 750; }
.availability-row strong { color: var(--color-text); font-size: 0.94rem; }
.availability-row.is-muted { border-style: dashed; background: rgb(255, 255, 255); }
.feature-card p, .reason-card p, .legal-card p { margin: 12px 0px 0px; color: var(--color-muted); line-height: 1.58; }
.icon-pill { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 18px; border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary); font-weight: 900; }
.band { background: rgb(255, 255, 255); border-top: 1px solid rgba(220, 228, 239, 0.52); border-bottom: 1px solid rgba(220, 228, 239, 0.52); }
.dark-section { position: relative; padding: var(--section-padding-md) 0; background: radial-gradient(circle at 14% 24%, rgba(79, 70, 229, 0.3), transparent 36%), radial-gradient(circle at 88% 70%, rgba(14, 165, 233, 0.11), transparent 28%), linear-gradient(135deg, rgb(8, 17, 31) 0%, rgb(17, 24, 39) 58%, rgb(23, 32, 51) 100%); color: rgb(219, 231, 247); }
.dark-section::before { position: absolute; top: 0px; right: 0px; left: 0px; height: 42px; background: linear-gradient(rgba(255, 255, 255, 0.08), transparent); pointer-events: none; content: ""; }
.dark-section::after { position: absolute; inset: 0px; background-image: linear-gradient(rgba(129, 140, 248, 0.024) 1px, transparent 1px), linear-gradient(90deg, rgba(129, 140, 248, 0.024) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(90deg, transparent 4%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 78%, transparent 98%); pointer-events: none; content: ""; }
.dark-section > .container { position: relative; z-index: 1; }
.dark-section h2, .dark-section h3 { color: rgb(255, 255, 255); }
.dark-section .section-kicker { color: rgb(159, 180, 255); }
.dark-section .section-copy { color: rgb(185, 200, 221); }
.dark-card { border-color: rgba(255, 255, 255, 0.11); background: radial-gradient(circle at right top, rgba(129, 140, 248, 0.09), transparent 42%), rgba(255, 255, 255, 0.055); box-shadow: rgba(255, 255, 255, 0.035) 0px 1px 0px inset; backdrop-filter: blur(10px); }
.dark-card p { color: rgb(197, 210, 228); }
.no-show-section { overflow: hidden; }
.no-show-layout { display: grid; grid-template-columns: minmax(0px, 0.98fr) minmax(420px, 1.02fr); gap: clamp(52px, 6vw, 86px); align-items: center; }
.no-show-copy .section-copy { max-width: 590px; }
.no-show-demo { position: relative; max-width: 530px; margin-top: 24px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-md); background: rgba(6, 14, 27, 0.72); box-shadow: rgba(0, 0, 0, 0.25) 0px 28px 70px, rgba(79, 70, 229, 0.12) 0px 12px 38px, rgba(255, 255, 255, 0.05) 0px 1px 0px inset; backdrop-filter: blur(16px); }
.no-show-demo::before { position: absolute; z-index: -1; inset: 10% 8% -12%; border-radius: 28px; background: rgba(79, 70, 229, 0.2); filter: blur(34px); content: ""; }
.no-show-demo-head, .no-show-demo-details, .no-show-demo-action { display: flex; align-items: center; }
.no-show-demo-head { justify-content: space-between; gap: 18px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.no-show-demo-head > span:first-child, .no-show-demo-details > span { display: grid; gap: 2px; }
.no-show-demo small { color: rgb(145, 164, 191); font-size: 0.7rem; font-weight: 700; }
.no-show-demo strong { color: rgb(248, 250, 252); }
.no-show-status { padding: 5px 8px; border: 1px solid rgba(248, 113, 113, 0.22); border-radius: 999px; background: rgba(248, 113, 113, 0.12); color: rgb(253, 164, 175); font-size: 0.7rem; font-weight: 800; }
.no-show-demo-details { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 15px 0px; }
.no-show-demo-details > span:last-child { padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.no-show-demo-action { gap: 10px; min-height: 48px; padding: 10px 12px; border: 1px solid rgba(129, 140, 248, 0.3); border-radius: 8px; background: linear-gradient(135deg, rgba(79, 70, 229, 0.28), rgba(79, 70, 229, 0.17)); color: rgb(220, 227, 255); font-size: 0.82rem; box-shadow: rgba(255, 255, 255, 0.055) 0px 1px 0px inset; cursor: pointer; transition: transform 180ms, border-color 180ms, background-color 180ms, box-shadow 180ms; }
.no-show-action-icon { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 7px; background: rgba(199, 210, 254, 0.13); color: rgb(199, 210, 254); font-size: 0.62rem; font-weight: 900; }
.no-show-demo-action strong { flex: 1 1 0%; }
.no-show-action-arrow { color: rgb(199, 210, 254); font-size: 1.15rem; line-height: 1; transition: transform 180ms; }
.no-show-demo-action:hover { border-color: rgba(165, 180, 252, 0.48); background: linear-gradient(135deg, rgba(79, 70, 229, 0.38), rgba(79, 70, 229, 0.22)); box-shadow: rgba(49, 46, 129, 0.17) 0px 12px 28px, rgba(255, 255, 255, 0.07) 0px 1px 0px inset; transform: translateY(-1px); }
.no-show-demo-action:hover .no-show-action-arrow { transform: translateX(3px); }
.no-show-process { position: relative; display: grid; width: min(100%, 570px); justify-self: end; gap: 14px; }
.no-show-process::before { position: absolute; top: 34px; bottom: 34px; left: 25px; width: 1px; background: linear-gradient(rgba(129, 140, 248, 0.14), rgba(129, 140, 248, 0.7), rgba(14, 165, 233, 0.22)); content: ""; }
.no-show-step { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 16px; min-height: 122px; align-items: start; padding: 20px 22px; transition: transform 180ms, border-color 180ms, background-color 180ms, box-shadow 180ms; }
.no-show-step:hover { border-color: rgba(165, 180, 252, 0.28); background-color: rgba(255, 255, 255, 0.075); box-shadow: rgba(0, 0, 0, 0.14) 0px 18px 42px, rgba(255, 255, 255, 0.05) 0px 1px 0px inset; transform: translateX(3px); }
.no-show-step-number { position: relative; z-index: 1; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(165, 180, 252, 0.24); border-radius: 8px; background: rgb(17, 26, 45); color: rgb(165, 180, 252); font-size: 0.7rem; font-weight: 900; box-shadow: rgb(16, 24, 39) 0px 0px 0px 7px; }
.no-show-step h3 { margin-top: 2px; font-size: 1.05rem; }
.no-show-step p { margin-top: 9px; line-height: 1.55; }
.no-show-step-accent { border-color: rgba(129, 140, 248, 0.24); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.18), transparent 44%), rgba(255, 255, 255, 0.067); }
.no-show-step-accent .no-show-step-number { border-color: transparent; background: var(--color-primary); color: rgb(255, 255, 255); }
.problem-map { display: grid; grid-template-columns: minmax(0px, 0.94fr) 118px minmax(0px, 1.06fr); gap: 15px; align-items: stretch; }
.system-stack, .platform-stack { display: grid; gap: 10px; min-height: 390px; padding: 22px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: rgb(255, 255, 255); box-shadow: var(--shadow-sm); }
.systems-section { position: relative; padding-top: clamp(68px, 6vw, 82px); padding-bottom: clamp(52px, 4vw, 60px); background: radial-gradient(circle at 54% 0px, rgba(79, 70, 229, 0.075), transparent 25%), linear-gradient(rgb(255, 255, 255) 0%, rgb(251, 252, 255) 100%); }
.systems-section .section-header { max-width: 880px; }
.systems-section .section-header h2 { max-width: 850px; text-wrap: balance; }
.systems-section .section-header h2 span { white-space: nowrap; }
.systems-section::before { position: absolute; top: 0px; right: 0px; left: 0px; height: 48px; background: linear-gradient(rgba(15, 23, 42, 0.043), transparent); content: ""; }
.system-stack { grid-template-columns: repeat(6, minmax(0px, 1fr)); align-content: start; border-color: rgba(203, 213, 225, 0.76); background: linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.86)), rgb(255, 255, 255); box-shadow: rgba(15, 23, 42, 0.067) 0px 18px 42px; }
.system-stack-head, .platform-stack-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.system-stack-head { grid-column: 1 / -1; margin-bottom: 6px; }
.system-stack-head > span { color: rgb(51, 65, 85); font-size: 1rem; font-weight: 850; }
.system-stack-head small { color: rgb(148, 163, 184); font-size: 0.72rem; font-weight: 750; }
.system-chip { display: grid; grid-column: span 3; gap: 1px; min-height: 58px; align-content: center; padding: 10px 12px; border: 1px solid rgba(203, 213, 225, 0.72); border-radius: 8px; background: rgba(255, 255, 255, 0.8); color: rgb(51, 65, 85); font-size: 0.88rem; font-weight: 750; box-shadow: rgba(15, 23, 42, 0.035) 0px 6px 16px; }
.system-chip small { color: rgb(148, 163, 184); font-size: 0.65rem; font-weight: 700; }
.system-chip:nth-of-type(3n) { background: rgba(248, 250, 252, 0.9); }
.system-chip.chip-wide { grid-column: span 4; }
.system-chip.chip-wide + .system-chip { grid-column: span 2; }
.system-chip.chip-paper { transform: translateY(4px); }
.system-chip.chip-offset { transform: translateX(5px); }
.system-chip.chip-register { grid-column: span 4; }
.system-warning { display: flex; grid-column: 1 / -1; align-items: center; gap: 8px; margin-top: 7px; padding: 8px 10px; border: 1px solid rgba(245, 158, 11, 0.13); border-radius: 8px; background: rgba(255, 251, 235, 0.52); color: rgb(146, 86, 21); font-size: 0.7rem; font-weight: 720; }
.system-warning > span { display: grid; width: 18px; height: 18px; flex: 0 0 18px; place-items: center; border-radius: 5px; background: rgba(255, 237, 213, 0.78); color: rgb(194, 65, 12); font-size: 0.68rem; font-weight: 900; }
.platform-stack { grid-template-rows: auto repeat(3, 1fr); align-content: stretch; border-color: rgba(99, 102, 241, 0.42); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.17), transparent 40%), radial-gradient(circle at 40% 100%, rgba(14, 165, 233, 0.055), transparent 36%), linear-gradient(rgb(255, 255, 255), rgb(246, 247, 255)); box-shadow: rgba(79, 70, 229, 0.17) 0px 32px 76px, rgba(15, 23, 42, 0.075) 0px 12px 30px; }
.platform-stack-head { margin-bottom: 4px; }
.platform-stack-head strong { display: flex; align-items: center; gap: 9px; color: var(--color-primary-dark); font-size: 1.16rem; }
.platform-brand-mark { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 8px; background: linear-gradient(135deg, var(--color-primary), #0ea5e9); color: rgb(255, 255, 255); font-size: 0.75rem; box-shadow: rgba(79, 70, 229, 0.2) 0px 8px 20px; }
.platform-stack-head > span { padding: 5px 8px; border-radius: 999px; background: var(--color-green-soft); color: rgb(8, 115, 87); font-size: 0.68rem; font-weight: 850; }
.platform-group { display: grid; align-content: center; padding: 12px; border: 1px solid rgba(203, 213, 225, 0.66); border-radius: 9px; background: rgba(255, 255, 255, 0.72); }
.platform-group > small { display: block; margin-bottom: 8px; color: rgb(113, 128, 150); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.platform-group > div { display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 8px; }
.platform-group span { display: flex; min-width: 0px; align-items: center; gap: 7px; padding: 8px 9px; border: 1px solid transparent; border-radius: 7px; background: rgb(248, 250, 255); color: rgb(51, 65, 85); font-size: 0.76rem; font-weight: 750; transition: transform 180ms, border-color 180ms, background-color 180ms, box-shadow 180ms; }
.platform-group span:hover { transform: translateY(-1px); border-color: rgba(99, 102, 241, 0.16); background: rgb(255, 255, 255); box-shadow: rgba(79, 70, 229, 0.08) 0px 8px 18px; }
.platform-group i { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; border-radius: 6px; background: var(--color-primary-soft); color: var(--color-primary); font-size: 0.58rem; font-style: normal; font-weight: 900; }
.platform-group-finance > div { grid-template-columns: 1fr; }
.platform-group-finance span { background: linear-gradient(90deg, rgb(243, 246, 255), rgb(240, 253, 248)); }
.map-arrow { position: relative; isolation: isolate; display: grid; align-self: center; justify-items: center; gap: 4px; color: var(--color-primary); font-weight: 900; text-align: center; }
.map-arrow::before { position: absolute; z-index: -1; top: 50%; left: 50%; width: 86px; height: 86px; border: 1px solid rgba(99, 102, 241, 0.12); border-radius: 50%; background: radial-gradient(circle, rgba(99, 102, 241, 0.12), rgba(14, 165, 233, 0.024) 58%, transparent 72%); content: ""; filter: blur(1px); transform: translate(-50%, -50%); }
.map-arrow small { color: rgb(100, 116, 139); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.map-arrow > span { font-size: 3.75rem; line-height: 1; background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; color: transparent; filter: drop-shadow(rgba(79, 70, 229, 0.18) 0px 8px 14px); }
.map-arrow strong { color: var(--color-primary-dark); font-size: 0.82rem; line-height: 1.25; }
.statement { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 24px 0px 0px; }
.statement span { padding: 8px 13px; border: 1px solid rgba(203, 213, 225, 0.7); border-radius: 999px; background: rgba(255, 255, 255, 0.82); color: rgb(51, 65, 85); font-size: 0.82rem; font-weight: 800; box-shadow: rgba(15, 23, 42, 0.043) 0px 8px 22px; }
.statement span:last-child { border-color: rgba(99, 102, 241, 0.24); background: var(--color-primary-soft); color: var(--color-primary-dark); }
.bullet-list { display: grid; gap: 10px; margin: 22px 0px 0px; padding: 0px; list-style: none; }
.bullet-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: rgb(51, 65, 85); }
.bullet-list li::before { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 999px; background: var(--color-green-soft); color: var(--color-green); content: "✓"; font-size: 0.8rem; font-weight: 900; }
.compact-list { gap: 10px; }
.compact-list li { color: rgb(64, 81, 104); }
.workflow-section { position: relative; padding-top: clamp(38px, 3.8vw, 50px); overflow: hidden; background: radial-gradient(circle at 50% 12%, rgba(79, 70, 229, 0.067), transparent 28%), linear-gradient(rgb(255, 255, 255) 0%, rgb(250, 251, 255) 100%); }
.workflow-section::before { position: absolute; top: 0px; right: 12%; left: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.24), transparent); content: ""; }
.workflow { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0px, 1fr)); gap: 14px; }
.workflow::before { position: absolute; z-index: 0; top: 37px; right: 4%; left: 4%; height: 3px; border-radius: 999px; background: linear-gradient(90deg, rgba(79, 70, 229, 0.2), rgba(79, 70, 229, 0.78) 45%, rgba(14, 165, 233, 0.48)); box-shadow: rgba(79, 70, 229, 0.18) 0px 0px 18px; content: ""; }
.workflow-step { position: relative; z-index: 1; display: grid; align-content: start; min-height: 272px; padding: 18px 17px 16px; border: 1px solid rgba(203, 213, 225, 0.76); border-radius: var(--radius-sm); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.067), transparent 42%), linear-gradient(rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96)); box-shadow: rgba(15, 23, 42, 0.067) 0px 14px 38px; transition: transform 180ms, border-color 180ms, box-shadow 180ms; }
.workflow-step::after { position: absolute; z-index: 4; top: 25px; right: -22px; display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.24); border-radius: 999px; background: rgba(255, 255, 255, 0.98); color: var(--color-primary); content: "›"; font-size: 1.75rem; font-weight: 900; line-height: 0.8; text-align: center; box-shadow: rgba(79, 70, 229, 0.16) 0px 8px 18px; text-shadow: rgba(79, 70, 229, 0.18) 0px 4px 10px; }
.workflow-step:last-child::after { display: none; }
.workflow-step:hover { transform: translateY(-4px); border-color: rgba(99, 102, 241, 0.34); box-shadow: rgba(79, 70, 229, 0.11) 0px 22px 50px; }
.workflow-step-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 13px; }
.workflow-step-number { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 999px; background: var(--color-primary); color: rgb(255, 255, 255); font-size: 0.76rem; font-weight: 900; box-shadow: rgba(255, 255, 255, 0.94) 0px 0px 0px 5px, rgba(79, 70, 229, 0.23) 0px 9px 21px; }
.workflow-step-icon { display: grid; min-width: 30px; height: 30px; place-items: center; padding: 0px 7px; border: 1px solid rgba(99, 102, 241, 0.12); border-radius: 7px; background: rgba(238, 242, 255, 0.9); color: var(--color-primary-dark); font-size: 0.68rem; font-weight: 900; }
.workflow-flow-label { margin-bottom: 10px; color: var(--color-primary); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.workflow-step h3 { font-size: 1.04rem; line-height: 1.25; }
.workflow-step p { margin: 10px 0px 0px; color: var(--color-muted); font-size: 0.9rem; line-height: 1.54; }
.workflow-detail { display: flex; min-height: 38px; align-items: center; margin-top: auto; padding: 9px 10px; border: 1px solid rgba(203, 213, 225, 0.62); border-radius: 7px; background: rgba(255, 255, 255, 0.82); color: rgb(100, 116, 139); font-size: 0.68rem; line-height: 1.3; }
.workflow-detail strong { color: rgb(51, 65, 85); font-weight: 850; }
.wide-mockup { min-height: 330px; }
.finance-panel { padding: 28px; border: 1px solid rgba(79, 70, 229, 0.18); border-radius: var(--radius-md); background: rgb(255, 255, 255); box-shadow: var(--shadow-sm); }
.booking-section { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 38%, rgba(79, 70, 229, 0.08), transparent 34%), linear-gradient(rgb(255, 255, 255) 0%, rgb(248, 250, 255) 100%); }
.booking-section::before { position: absolute; top: 0px; right: 12%; left: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.18), transparent); content: ""; }
.booking-grid { grid-template-columns: minmax(0px, 0.76fr) minmax(560px, 1.24fr); gap: clamp(46px, 5vw, 72px); align-items: center; }
.booking-copy h2 { max-width: 640px; font-size: clamp(2.35rem, 4.4vw, 4.25rem); line-height: 0.96; }
.booking-copy .section-copy { max-width: 630px; }
.booking-benefits { display: grid; gap: 0px; margin-top: 26px; border-top: 1px solid rgba(203, 213, 225, 0.72); }
.booking-benefit { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 13px 0px; border-bottom: 1px solid rgba(203, 213, 225, 0.72); transition: transform 180ms; }
.booking-benefit:hover { transform: translateX(3px); }
.booking-benefit-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.15); border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.68rem; font-weight: 900; }
.booking-benefit-mobile { border-color: rgba(14, 165, 233, 0.16); background: rgb(234, 247, 255); color: rgb(3, 105, 161); }
.booking-benefit-time { border-color: rgba(15, 143, 106, 0.16); background: var(--color-green-soft); color: rgb(8, 115, 87); font-size: 0.82rem; }
.booking-benefit-calendar { border-color: rgba(79, 70, 229, 0.2); background: rgb(238, 242, 255); color: var(--color-primary); font-size: 0.86rem; }
.booking-benefit-mail { border-color: rgba(245, 158, 11, 0.17); background: rgb(255, 248, 232); color: rgb(164, 84, 5); }
.booking-benefit strong { display: block; color: var(--color-text); font-size: 0.93rem; line-height: 1.3; }
.booking-benefit p { margin: 4px 0px 0px; color: var(--color-muted); font-size: 0.84rem; line-height: 1.45; }
.booking-demo { position: relative; display: grid; grid-template-rows: auto var(--booking-stage-height, clamp(520px, 43vw, 650px)) 44px; gap: 14px; padding: clamp(14px, 2vw, 20px); border: 1px solid rgba(99, 102, 241, 0.16); border-radius: 24px; background: radial-gradient(circle at 78% 12%, rgba(79, 70, 229, 0.1), transparent 34%), rgba(255, 255, 255, 0.82); box-shadow: rgba(15, 23, 42, 0.11) 0px 28px 78px, rgba(79, 70, 229, 0.08) 0px 12px 34px; isolation: isolate; }
.booking-demo[data-view="mobile"] { --booking-stage-height: clamp(600px, 58vw, 740px); }
.booking-demo::before { position: absolute; z-index: -1; inset: 12% 0px 4% 8%; border-radius: 34px; background: radial-gradient(circle at 80% 38%, rgba(79, 70, 229, 0.17), transparent 38%), radial-gradient(circle at 18% 72%, rgba(14, 165, 233, 0.11), transparent 35%); content: ""; filter: blur(18px); }
.booking-demo-toolbar { display: grid; gap: 13px; }
.booking-demo-heading { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.booking-demo-help { max-width: 390px; margin: 0px; color: rgb(71, 85, 105); font-size: 0.88rem; line-height: 1.45; font-weight: 780; }
.segmented-control, .step-control { display: flex; flex-wrap: wrap; gap: 8px; }
.segmented-control button, .step-control button { min-height: 38px; padding: 8px 12px; border: 1px solid rgba(185, 198, 216, 0.88); border-radius: 999px; background: rgb(255, 255, 255); color: var(--color-muted); cursor: pointer; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-language-override: inherit; font-size: 0.86rem; font-weight: 800; transition: border-color 160ms, background 160ms, color 160ms, transform 160ms; }
.segmented-control button:hover, .step-control button:hover { transform: translateY(-1px); border-color: rgba(79, 70, 229, 0.34); color: var(--color-primary-dark); }
.segmented-control button.is-active, .step-control button.is-active { border-color: rgba(79, 70, 229, 0.44); background: var(--color-primary); color: rgb(255, 255, 255); }
.segmented-control { padding: 4px; border: 1px solid rgba(203, 213, 225, 0.78); border-radius: 999px; background: rgba(248, 250, 252, 0.88); }
.segmented-control button { min-height: 32px; padding: 6px 12px; border-color: transparent; background: transparent; font-size: 0.78rem; }
.segmented-control button.is-active { background: rgb(255, 255, 255); color: var(--color-primary-dark); box-shadow: rgba(15, 23, 42, 0.08) 0px 8px 18px; }
.step-control { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 8px; }
.step-control::before { position: absolute; top: 19px; right: 14%; left: 14%; height: 1px; background: linear-gradient(90deg, rgba(99, 102, 241, 0.16), rgba(14, 165, 233, 0.16)); content: ""; }
.step-control button { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 40px; border-radius: 12px; background: rgba(255, 255, 255, 0.82); font-size: 0.78rem; }
.step-control button span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 999px; background: rgb(238, 242, 255); color: var(--color-primary-dark); font-size: 0.62rem; font-weight: 900; }
.step-control button.is-active span { background: rgba(255, 255, 255, 0.22); color: rgb(255, 255, 255); }
.booking-showcase { position: relative; display: grid; align-items: center; height: var(--booking-stage-height, clamp(520px, 43vw, 650px)); min-height: 0px; padding: 0px 0px 12px; }
.booking-demo-screen { width: 100%; height: 100%; max-width: 920px; max-height: 100%; justify-self: center; border-color: rgba(99, 102, 241, 0.22); box-shadow: rgba(15, 23, 42, 0.15) 0px 26px 68px, rgba(79, 70, 229, 0.12) 0px 12px 32px; transition: transform 180ms, box-shadow 180ms; }
.booking-demo-screen:hover { transform: translateY(-2px); box-shadow: rgba(15, 23, 42, 0.17) 0px 32px 82px, rgba(79, 70, 229, 0.14) 0px 16px 38px; }
.booking-demo[data-view="desktop"] .booking-demo-screen { width: 100%; height: 100%; }
.booking-demo-screen .product-screenshot { width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center top; filter: contrast(1.08) saturate(1.04); }
.booking-signals { position: absolute; inset: 0px; pointer-events: none; }
.booking-signal { position: absolute; z-index: 4; display: grid; gap: 2px; min-width: 176px; padding: 10px 12px; border: 1px solid rgba(99, 102, 241, 0.17); border-radius: 13px; background: rgba(255, 255, 255, 0.92); box-shadow: rgba(15, 23, 42, 0.12) 0px 18px 42px, rgba(79, 70, 229, 0.08) 0px 8px 20px; backdrop-filter: blur(14px); }
.booking-signal.is-hidden { display: none; }
.booking-signal span { color: var(--color-muted); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.booking-signal strong { color: var(--color-text); font-size: 0.82rem; line-height: 1.25; }
.booking-signal-primary { top: 22px; left: -8px; }
.booking-signal-secondary { right: -16px; bottom: 56px; }
.booking-demo-footer { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 9px; align-items: center; min-height: 44px; }
.booking-demo-footer .btn { min-width: 104px; min-height: 40px; margin-top: 0px; padding: 10px 15px; font-size: 0.86rem; }
.booking-demo-footer .btn:disabled { cursor: not-allowed; opacity: 0.48; transform: none; }
.booking-device-frame { width: min(100%, 390px); height: 100%; justify-self: center; padding: 12px; border: 12px solid rgb(17, 24, 39); border-radius: 34px; background: rgb(17, 24, 39); box-shadow: rgba(15, 23, 42, 0.22) 0px 30px 72px, rgba(79, 70, 229, 0.16) 0px 12px 34px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.booking-device-frame .product-screenshot { width: 100%; height: auto; max-height: none; border-radius: 20px; object-fit: contain; }
.booking-device-frame::before, .booking-device-frame::after { display: none; }
.phone-mockup { width: min(100%, 250px); margin: 0px auto; border: 10px solid rgb(17, 24, 39); border-radius: 30px; background: rgb(255, 255, 255); box-shadow: var(--shadow-lg); overflow: hidden; }
.phone-screen { display: grid; gap: 12px; padding: 18px 14px; }
.phone-claim { margin-top: -8px; color: var(--color-muted); font-size: 0.78rem; font-weight: 700; }
.slot { padding: 10px; border: 1px solid var(--color-line); border-radius: 8px; background: rgb(248, 250, 252); color: rgb(51, 65, 85); font-size: 0.82rem; font-weight: 750; }
.booking-service { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: rgb(255, 255, 255); }
.booking-service strong { color: var(--color-text); font-size: 0.95rem; }
.booking-service span { color: var(--color-muted); font-size: 0.84rem; font-weight: 700; }
.billing-section { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 12%, rgba(79, 70, 229, 0.055), transparent 30%), linear-gradient(rgb(248, 250, 255) 0%, rgb(255, 255, 255) 100%); }
.billing-flow { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 14px; align-items: stretch; }
.billing-flow::before { position: absolute; top: 50%; right: 12%; left: 12%; height: 2px; background: linear-gradient(90deg, rgba(79, 70, 229, 0.14), rgba(79, 70, 229, 0.52), rgba(14, 165, 233, 0.2)); content: ""; transform: translateY(-50%); }
.billing-step { position: relative; z-index: 1; display: grid; grid-template-columns: 44px 1fr; gap: 14px; min-height: 190px; align-items: start; padding: 22px; border: 1px solid rgba(203, 213, 225, 0.78); border-radius: var(--radius-sm); background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9)); box-shadow: rgba(15, 23, 42, 0.07) 0px 18px 46px; transition: transform 180ms, border-color 180ms, box-shadow 180ms; }
.billing-step:hover { transform: translateY(-3px); border-color: rgba(79, 70, 229, 0.28); box-shadow: rgba(79, 70, 229, 0.1) 0px 24px 58px; }
.billing-step-accent { border-color: rgba(79, 70, 229, 0.26); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.12), transparent 42%), rgb(255, 255, 255); }
.billing-step-number { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 999px; background: var(--color-primary); color: rgb(255, 255, 255); font-size: 0.72rem; font-weight: 900; box-shadow: rgba(255, 255, 255, 0.9) 0px 0px 0px 6px, rgba(79, 70, 229, 0.24) 0px 10px 24px; }
.billing-step h3 { margin: 0px; color: var(--color-text); font-size: 1.05rem; line-height: 1.25; }
.billing-step p { margin: 9px 0px 0px; color: var(--color-muted); font-size: 0.9rem; line-height: 1.52; }
.checkout-mini-ui { display: grid; grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1.16fr) minmax(220px, 0.78fr); gap: 12px; align-items: stretch; margin: 18px auto 0px; padding: 14px; border: 1px solid rgba(99, 102, 241, 0.16); border-radius: var(--radius-md); background: radial-gradient(circle at 88% 8%, rgba(79, 70, 229, 0.1), transparent 32%), rgba(255, 255, 255, 0.86); box-shadow: rgba(15, 23, 42, 0.08) 0px 22px 58px; }
.checkout-mini-head, .checkout-mini-status, .checkout-mini-lines { border: 1px solid rgba(203, 213, 225, 0.72); border-radius: 12px; background: rgba(255, 255, 255, 0.86); }
.checkout-mini-head, .checkout-mini-status { display: grid; align-content: center; gap: 4px; padding: 14px 16px; }
.checkout-mini-head span, .checkout-mini-status span { color: var(--color-muted); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.checkout-mini-head strong, .checkout-mini-status strong { color: var(--color-text); font-size: 0.92rem; line-height: 1.3; }
.checkout-mini-lines { display: grid; grid-template-columns: 1fr auto; gap: 0px 16px; padding: 9px 14px; }
.checkout-mini-lines span, .checkout-mini-lines strong { padding: 7px 0px; border-bottom: 1px solid rgba(226, 232, 240, 0.84); color: rgb(71, 85, 105); font-size: 0.84rem; }
.checkout-mini-lines strong { color: var(--color-text); font-weight: 850; text-align: right; }
.checkout-mini-lines span:nth-last-child(-n+2), .checkout-mini-lines strong:nth-last-child(-n+2) { border-bottom: 0px; }
.finance-section { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 28%, rgba(79, 70, 229, 0.075), transparent 34%), linear-gradient(rgb(255, 255, 255) 0%, rgb(251, 252, 255) 100%); }
.finance-grid { grid-template-columns: minmax(0px, 0.72fr) minmax(600px, 1.28fr); gap: clamp(44px, 5vw, 72px); align-items: center; }
.finance-copy h2 { max-width: 560px; }
.finance-copy .section-copy { max-width: 630px; }
.finance-benefits { display: grid; margin-top: 26px; border-top: 1px solid rgba(203, 213, 225, 0.72); }
.finance-benefit { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 13px 0px; border-bottom: 1px solid rgba(203, 213, 225, 0.72); transition: transform 180ms; }
.finance-benefit:hover { transform: translateX(3px); }
.finance-benefit-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.15); border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.56rem; font-weight: 900; }
.finance-benefit-reminder { border-color: rgba(245, 158, 11, 0.17); background: rgb(255, 248, 232); color: rgb(164, 84, 5); font-size: 0.76rem; }
.finance-benefit-pdf { border-color: rgba(14, 165, 233, 0.16); background: rgb(234, 247, 255); color: rgb(3, 105, 161); }
.finance-benefit-tax { border-color: rgba(15, 143, 106, 0.16); background: var(--color-green-soft); color: rgb(8, 115, 87); }
.finance-benefit strong { display: block; color: var(--color-text); font-size: 0.93rem; line-height: 1.3; }
.finance-benefit p { margin: 4px 0px 0px; color: var(--color-muted); font-size: 0.84rem; line-height: 1.45; }
.finance-showcase { min-width: 0px; }
.finance-showcase-stage { height: clamp(520px, 43vw, 650px); }
.finance-showcase-screen { width: calc(100% - 8px); height: calc(100% - 8px); border-color: rgba(99, 102, 241, 0.22); box-shadow: rgba(15, 23, 42, 0.15) 0px 24px 58px, rgba(79, 70, 229, 0.1) 0px 12px 30px; }
.finance-showcase-screen.browser-frame { padding: 34px 4px 4px; }
.finance-showcase-screen.browser-frame::before { height: 29px; }
.finance-showcase-screen.browser-frame::after { top: 10px; left: 12px; }
.finance-showcase-screen.paper-frame { padding: 16px; border-radius: 11px; background: rgb(238, 242, 247); }
.finance-showcase-screen .product-screenshot { width: 100%; height: 100%; max-height: none; object-fit: contain; object-position: center top; filter: contrast(1.08) saturate(1.04); }
.finance-showcase-signals { position: absolute; inset: 0px; pointer-events: none; }
.finance-floating-card { position: absolute; z-index: 4; display: grid; gap: 2px; min-width: 190px; padding: 10px 12px; border: 1px solid rgba(99, 102, 241, 0.17); border-radius: 13px; background: rgba(255, 255, 255, 0.92); box-shadow: rgba(15, 23, 42, 0.12) 0px 18px 42px, rgba(79, 70, 229, 0.08) 0px 8px 20px; backdrop-filter: blur(14px); }
.finance-floating-card span { color: var(--color-muted); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.finance-floating-card strong { color: var(--color-text); font-size: 0.82rem; line-height: 1.25; }
.finance-floating-card.is-hidden { display: none; }
.finance-floating-primary { top: 28px; left: 16px; }
.finance-floating-secondary { right: 18px; bottom: 26px; }
.invoice-demo-card { border-color: rgba(79, 70, 229, 0.24); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.1), transparent 42%), rgb(255, 255, 255); }
.tax-grid { margin-top: 22px; }
.paper-label { display: inline-flex; margin-bottom: 14px; padding: 5px 9px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.02em; }
.tax-report-screenshot .product-screenshot { max-height: 560px; object-position: center top; }
.highlight-stat { grid-column: 1 / -1; border-color: rgba(15, 143, 106, 0.24); background: var(--color-green-soft); }
.highlight-stat strong { color: rgb(7, 92, 71); }
.modules-section { position: relative; overflow: hidden; background: radial-gradient(circle at 18% 18%, rgba(15, 143, 106, 0.043), transparent 30%), linear-gradient(rgb(248, 250, 255) 0%, rgb(255, 255, 255) 100%); }
.modules-header { max-width: 820px; }
.module-grid { display: grid; grid-template-columns: repeat(4, minmax(0px, 1fr)); gap: 16px; align-items: stretch; }
.module-card { display: grid; min-height: 235px; align-content: start; gap: 14px; padding: 22px; border: 1px solid rgba(203, 213, 225, 0.78); border-radius: var(--radius-sm); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.07), transparent 38%), rgb(255, 255, 255); box-shadow: rgba(15, 23, 42, 0.07) 0px 18px 46px; transition: transform 180ms, border-color 180ms, box-shadow 180ms; }
.module-card:hover { transform: translateY(-3px); border-color: rgba(79, 70, 229, 0.24); box-shadow: rgba(79, 70, 229, 0.1) 0px 24px 58px; }
.module-badge { display: inline-flex; width: fit-content; min-height: 26px; align-items: center; padding: 4px 9px; border: 1px solid rgba(99, 102, 241, 0.14); border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
.module-card h3 { margin: 0px; color: var(--color-text); font-size: 1.06rem; line-height: 1.25; }
.module-card p { margin: 0px; color: var(--color-muted); font-size: 0.92rem; line-height: 1.55; }
.why-section { position: relative; background: radial-gradient(circle at 50% 0px, rgba(79, 70, 229, 0.055), transparent 28%), rgb(255, 255, 255); }
.why-header { max-width: 760px; }
.why-grid { display: grid; grid-template-columns: repeat(6, minmax(0px, 1fr)); gap: 16px; }
.why-card { position: relative; display: grid; grid-column: span 2; min-height: 238px; align-content: start; gap: 14px; padding: 24px; overflow: hidden; border: 1px solid rgba(203, 213, 225, 0.76); border-radius: var(--radius-sm); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.055), transparent 38%), linear-gradient(rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.94)); box-shadow: rgba(15, 23, 42, 0.067) 0px 16px 42px; transition: transform 180ms, border-color 180ms, box-shadow 180ms; }
.why-card:nth-last-child(-n+2) { grid-column: span 3; }
.why-card::after { position: absolute; right: 0px; bottom: 0px; left: 0px; height: 3px; background: linear-gradient(90deg, rgba(79, 70, 229, 0.55), rgba(14, 165, 233, 0.18)); opacity: 0; content: ""; transition: opacity 180ms; }
.why-card:hover { border-color: rgba(79, 70, 229, 0.24); box-shadow: rgba(79, 70, 229, 0.1) 0px 22px 54px; transform: translateY(-3px); }
.why-card:hover::after { opacity: 1; }
.why-card-priority { border-color: rgba(79, 70, 229, 0.2); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.094), transparent 42%), linear-gradient(rgb(255, 255, 255), rgb(248, 249, 255)); }
.why-card-icon { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.16); border-radius: 11px; background: rgba(238, 242, 255, 0.86); color: var(--color-primary-dark); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.04em; }
.why-card h3 { margin: 0px; color: var(--color-text); font-size: 1.1rem; line-height: 1.22; }
.why-card p { margin: 0px; color: var(--color-muted); font-size: 0.94rem; line-height: 1.58; }
.comparison { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 18px; align-items: stretch; }
.fit-section { background: radial-gradient(circle at 15% 0px, rgba(14, 165, 233, 0.055), transparent 24%), linear-gradient(rgb(248, 250, 252) 0%, rgb(255, 255, 255) 100%); }
.fit-header { max-width: 740px; }
.fit-panel { position: relative; display: grid; align-content: start; gap: 18px; min-height: 360px; padding: clamp(22px, 3vw, 30px); overflow: hidden; border: 1px solid rgba(203, 213, 225, 0.78); border-radius: var(--radius-md); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.05), transparent 38%), rgb(255, 255, 255); box-shadow: rgba(15, 23, 42, 0.07) 0px 18px 48px; transition: transform 180ms, border-color 180ms, box-shadow 180ms; }
.fit-panel:hover { border-color: rgba(79, 70, 229, 0.2); box-shadow: rgba(15, 23, 42, 0.09) 0px 24px 58px; transform: translateY(-2px); }
.fit-panel-positive { border-color: rgba(15, 143, 106, 0.22); background: radial-gradient(circle at right top, rgba(15, 143, 106, 0.09), transparent 38%), linear-gradient(rgb(255, 255, 255), rgb(248, 252, 251)); }
.fit-panel-neutral { background: radial-gradient(circle at right top, rgba(100, 116, 139, 0.055), transparent 38%), linear-gradient(rgb(255, 255, 255), rgb(251, 252, 255)); }
.fit-panel-head { display: flex; align-items: center; gap: 12px; }
.fit-panel-icon { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 10px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.8rem; font-weight: 900; }
.fit-panel-positive .fit-panel-icon { background: var(--color-green-soft); color: var(--color-green); }
.fit-panel h3 { margin: 0px; color: var(--color-text); font-size: 1.2rem; }
.fit-list { display: grid; gap: 10px; margin: 0px; padding: 0px; list-style: none; }
.fit-list li { position: relative; padding-left: 22px; color: rgb(64, 80, 102); line-height: 1.48; }
.fit-list li::before { position: absolute; top: 0.62em; left: 0px; width: 7px; height: 7px; border-radius: 999px; background: rgba(79, 70, 229, 0.52); box-shadow: rgba(79, 70, 229, 0.08) 0px 0px 0px 4px; content: ""; }
.fit-panel-positive .fit-list li::before { background: var(--color-green); box-shadow: rgba(15, 143, 106, 0.08) 0px 0px 0px 4px; }
.why-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(79, 70, 229, 0.06), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(20, 184, 166, 0.055), transparent 26%),
    #fff;
}

.why-page .text-gradient {
  display: inline-block;
  padding-bottom: 0.08em;
  line-height: 1.12;
}

.why-page .lead,
.why-page .section-copy,
.why-page p,
.why-story-card p,
.why-timeline-item p,
.why-card p,
.fit-list li,
.why-final-panel .section-copy {
  color: rgb(37, 50, 70);
}

.why-hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 118px) 0 clamp(62px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(248, 250, 255, 0.92), rgba(255, 255, 255, 0.96) 50%, rgba(240, 253, 250, 0.54)),
    #fff;
}

.why-hero-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(79, 70, 229, 0.12), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(20, 184, 166, 0.11), transparent 28%);
  content: "";
  pointer-events: none;
}

.why-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.why-hero-copy h1,
.why-final-panel h2,
.why-section-intro h2,
.why-header h2,
.fit-header h2 {
  letter-spacing: -0.028em;
  line-height: 1.04;
}

.why-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.85rem, 4.85vw, 4.65rem);
}

.why-hero-copy .lead {
  max-width: 610px;
  margin-top: 18px;
  font-size: clamp(1.04rem, 1.25vw, 1.14rem);
  line-height: 1.62;
}

.why-hero-copy .hero-actions {
  margin-top: 24px;
}

.why-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 22px 62px rgba(15, 23, 42, 0.11), 0 10px 28px rgba(79, 70, 229, 0.07);
}

.why-hero-media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  content: "";
  pointer-events: none;
}

.why-hero-media img {
  display: block;
  width: 100%;
  height: clamp(360px, 36vw, 520px);
  object-fit: cover;
  object-position: center;
}

.why-statement-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 70, 229, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.86));
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
}

.why-statement-card::after {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--coiffinity-text-gradient);
  content: "";
}

.why-statement-card h2 {
  max-width: 390px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.024em;
}

.why-statement-card p {
  margin: 0;
  color: rgb(45, 59, 82);
  font-size: 1rem;
  line-height: 1.62;
}

.why-section-intro {
  max-width: 860px;
}

.why-section-intro.center,
.why-header,
.fit-header {
  margin-right: auto;
  margin-left: auto;
}

.why-section-intro .section-copy {
  max-width: 790px;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.66;
}

.why-systems-intro {
  max-width: 920px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.why-systems-intro h2 {
  line-height: 1.1;
}

.why-systems-intro .text-gradient {
  padding-top: 0.04em;
  padding-bottom: 0.12em;
  line-height: 1.16;
}

.why-systems-section .container {
  width: min(100% - 40px, var(--container));
}

.why-system-visual-wrap {
  width: min(calc(100vw - 48px), 1480px);
  max-width: none;
  margin: 0 50%;
  transform: translateX(-50%);
}

.why-story-section {
  background: #fff;
}

.why-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-story-card {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(203, 213, 225, 0.76);
  border-radius: 22px;
  background:
    radial-gradient(circle at right top, rgba(79, 70, 229, 0.06), transparent 38%),
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.055);
}

.why-story-card span {
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-story-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.why-timeline-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(79, 70, 229, 0.065), transparent 28%),
    linear-gradient(180deg, #f8fbff, #fff);
}

.why-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-timeline::before {
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.12), rgba(79, 70, 229, 0.42), rgba(20, 184, 166, 0.22));
  content: "";
}

.why-timeline-item {
  position: relative;
  display: grid;
  gap: 12px;
  padding-top: 62px;
}

.why-timeline-item > span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 18px;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(79, 70, 229, 0.09);
}

.why-timeline-item h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.2;
}

.why-timeline-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
}

.why-system-comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.18fr);
  gap: clamp(18px, 2.3vw, 30px);
  align-items: stretch;
}

.why-system-panel {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  min-width: 0;
  min-height: clamp(405px, 29vw, 500px);
  padding: clamp(24px, 2.5vw, 36px);
  overflow: hidden;
  border-radius: 26px;
}

.why-system-panel h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.75rem, 2.45vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.why-system-panel-muted {
  border: 1px solid rgba(203, 213, 225, 0.82);
  background:
    radial-gradient(circle at 20% 10%, rgba(148, 163, 184, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}

.why-system-panel-muted::before {
  position: absolute;
  inset: 86px 9% 50px;
  border-radius: 44%;
  background:
    radial-gradient(circle at 10% 40%, rgba(100, 116, 139, 0.45) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 24%, rgba(129, 140, 248, 0.55) 0 4px, transparent 5px),
    radial-gradient(circle at 94% 54%, rgba(20, 184, 166, 0.45) 0 4px, transparent 5px),
    radial-gradient(circle at 66% 88%, rgba(251, 191, 36, 0.4) 0 4px, transparent 5px);
  opacity: 0.6;
  content: "";
}

.why-system-panel-muted::after {
  position: absolute;
  inset: 130px 14% 80px;
  border: 2px dashed rgba(148, 163, 184, 0.28);
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 48%;
  content: "";
  transform: rotate(-8deg);
}

.why-system-panel-brand {
  border: 1px solid rgba(79, 70, 229, 0.2);
  background:
    radial-gradient(circle at 88% 6%, rgba(129, 140, 248, 0.24), transparent 32%),
    radial-gradient(circle at 18% 90%, rgba(20, 184, 166, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(241, 245, 255, 0.98), rgba(255, 255, 255, 0.96) 55%, rgba(248, 250, 255, 0.94));
  box-shadow: 0 28px 82px rgba(79, 70, 229, 0.16), 0 0 0 1px rgba(129, 140, 248, 0.08);
}

.why-system-panel-brand::before,
.why-system-panel-brand::after {
  position: absolute;
  color: rgba(255, 255, 255, 0.96);
  font-size: 2.8rem;
  line-height: 1;
  text-shadow: 0 12px 28px rgba(79, 70, 229, 0.18);
  content: "✦";
  pointer-events: none;
}

.why-system-panel-brand::before {
  top: 42px;
  right: 68px;
}

.why-system-panel-brand::after {
  top: 82px;
  right: 112px;
  font-size: 1.8rem;
}

.why-distributed-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.35vw, 16px);
  align-content: center;
  min-width: 0;
}

.why-tool-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon status";
  column-gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.why-tool-card:nth-child(1) { grid-column: span 3; transform: rotate(-2.2deg); }
.why-tool-card:nth-child(2) { grid-column: span 2; transform: rotate(2deg) translateY(10px); }
.why-tool-card:nth-child(3) { grid-column: span 2; transform: rotate(3deg); }
.why-tool-card:nth-child(4) { grid-column: span 2; transform: rotate(1.6deg) translateY(12px); }
.why-tool-card:nth-child(5) { grid-column: span 2; transform: rotate(-2.4deg) translateY(2px); }
.why-tool-card:nth-child(6) { grid-column: span 3; transform: rotate(2.8deg) translateY(8px); }
.why-tool-card:nth-child(7) { grid-column: 2 / span 3; transform: rotate(-1.4deg); }

.why-tool-icon {
  display: grid;
  grid-area: icon;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(238, 242, 255, 0.9);
  color: var(--color-primary-dark);
}

.why-tool-excel .why-tool-icon,
.why-tool-whatsapp .why-tool-icon {
  background: rgba(220, 252, 231, 0.86);
  color: rgb(22, 130, 82);
}

.why-tool-paper .why-tool-icon {
  background: rgba(254, 243, 199, 0.76);
  color: rgb(146, 64, 14);
}

.why-tool-mail .why-tool-icon {
  background: rgba(219, 234, 254, 0.86);
  color: rgb(37, 99, 235);
}

.why-tool-trustee .why-tool-icon {
  background: rgba(237, 233, 254, 0.9);
  color: rgb(109, 40, 217);
}

.why-tool-cash .why-tool-icon {
  background: rgba(241, 245, 249, 0.94);
  color: rgb(71, 85, 105);
}

.why-tool-icon .icon-svg,
.why-platform-groups i .icon-svg,
.why-benefit-pills i .icon-svg {
  width: 21px;
  height: 21px;
}

.why-tool-card strong {
  grid-area: title;
  min-width: 0;
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.why-tool-card small {
  grid-area: status;
  color: rgb(76, 92, 116);
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.25;
}

.why-system-brand-head {
  position: relative;
  z-index: 1;
}

.why-system-brand-head img {
  display: block;
  width: min(250px, 70%);
  height: auto;
}

.why-platform-groups {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  align-items: stretch;
  min-width: 0;
}

.why-platform-groups div {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  min-height: 238px;
  padding: clamp(18px, 1.9vw, 26px);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(79, 70, 229, 0.055);
}

.why-platform-groups strong {
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.why-platform-groups span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: rgb(37, 50, 70);
  font-weight: 850;
  line-height: 1.18;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.why-platform-groups i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(99, 102, 241, 0.13);
  border-radius: 12px;
  background: rgba(238, 242, 255, 0.82);
  color: var(--color-primary-dark);
}

.why-benefit-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  margin-top: clamp(24px, 4vw, 42px);
}

.why-benefit-pills span {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 16px;
  border: 1px solid rgba(129, 140, 248, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 30%, rgba(79, 70, 229, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.82);
  color: var(--color-primary-dark);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(79, 70, 229, 0.12);
}

.why-benefit-pills i {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--coiffinity-text-gradient);
  color: #fff;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.24);
}

.why-page .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-page .why-card,
.why-page .why-card:nth-last-child(-n+2) {
  grid-column: auto;
  min-height: 244px;
}

.why-page .why-card p {
  color: rgb(45, 59, 82);
}

.why-final-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(560px, 48vw, 720px);
  padding: 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(79, 70, 229, 0.08), transparent 28%),
    #fff;
}

.why-final-media {
  position: relative;
  min-width: 0;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
}

.why-final-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.72) 78%, #fff 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  content: "";
  pointer-events: none;
}

.why-final-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.why-final-panel {
  display: grid;
  align-items: center;
  justify-items: start;
  min-width: 0;
  padding: clamp(52px, 7vw, 96px) max(var(--container-padding), calc((100vw - var(--container)) / 2)) clamp(52px, 7vw, 96px) clamp(38px, 5vw, 82px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.why-final-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.why-final-panel h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.35vw, 4rem);
  line-height: 1.05;
}

.why-final-panel .section-copy {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.why-final-panel .cta-row {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .why-final-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .why-final-media {
    min-height: clamp(300px, 52vw, 440px);
  }

  .why-final-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.74) 82%, #fff 100%);
  }

  .why-final-panel {
    padding: 34px var(--container-padding) clamp(62px, 8vw, 86px);
  }

  .why-final-copy {
    max-width: 760px;
  }
}

@media (max-width: 1320px) and (min-width: 981px) {
  .why-systems-section .container {
    width: min(100% - 32px, var(--container));
  }

  .why-platform-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-platform-groups div:last-child {
    grid-column: 1 / -1;
  }
}
.list-panel { padding: 24px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: rgb(255, 255, 255); box-shadow: var(--shadow-sm); }
.list-panel .bullet-list { margin-top: 18px; }
.list-panel.positive { border-color: rgba(15, 143, 106, 0.26); background: linear-gradient(rgb(255, 255, 255), rgb(248, 252, 250)); }
.list-panel h3 { margin-bottom: 16px; }
.pilot-panel, .final-cta { position: relative; overflow: hidden; padding: clamp(30px, 5vw, 56px); border: 1px solid rgba(79, 70, 229, 0.18); border-radius: var(--radius-lg); background: radial-gradient(circle at 82% 22%, rgba(79, 70, 229, 0.13), transparent 32%), radial-gradient(circle at 12% 84%, rgba(14, 165, 233, 0.08), transparent 34%), linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(15, 143, 106, 0.05) 52%, rgba(255, 255, 255, 0.96)), rgb(255, 255, 255); box-shadow: var(--shadow-lg); }
.pilot-panel::before, .final-cta::before { position: absolute; top: 0px; right: 0px; left: 0px; height: 1px; background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.42), transparent); content: ""; }
.pilot-panel-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 8px 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 999px;
  background: rgba(238, 242, 255, 0.78);
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 850;
}
.pilot-panel-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-green);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.12);
  content: "";
}
.pilot-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0px 26px; }
.pilot-benefits span { display: inline-flex; min-height: 34px; align-items: center; padding: 7px 12px; border: 1px solid rgba(203, 213, 225, 0.68); border-radius: 999px; background: rgba(255, 255, 255, 0.72); color: rgb(64, 80, 102); font-size: 0.86rem; font-weight: 750; box-shadow: rgba(15, 23, 42, 0.043) 0px 10px 24px; transition: border-color 160ms, box-shadow 160ms, transform 160ms; }
.pilot-benefits span:hover { border-color: rgba(79, 70, 229, 0.24); box-shadow: rgba(79, 70, 229, 0.08) 0px 14px 30px; transform: translateY(-1px); }
.final-cta { display: grid; min-height: 320px; align-content: center; justify-items: start; }
.final-cta .section-copy { max-width: 760px; }
.final-trust-line { margin: 24px 0px 0px; color: rgb(102, 117, 140); font-size: 0.9rem; font-weight: 700; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 12px; align-items: start; }
.faq-item { border: 1px solid rgba(185, 198, 216, 0.86); border-radius: var(--radius-sm); background: linear-gradient(rgb(255, 255, 255), rgb(251, 252, 255)); box-shadow: var(--shadow-sm); transition: border-color 160ms, box-shadow 160ms, transform 160ms; }
.faq-item:hover { border-color: rgba(79, 70, 229, 0.26); box-shadow: rgba(15, 23, 42, 0.08) 0px 14px 34px; transform: translateY(-1px); }
.faq-item summary { cursor: pointer; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 17px 19px; color: var(--color-text); font-weight: 800; }
.faq-item summary::after { color: var(--color-primary); content: "+"; font-size: 1.15rem; font-weight: 900; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0px; padding: 0px 19px 18px; color: var(--color-muted); line-height: 1.58; }
.faq-header { max-width: 760px; margin-bottom: 28px; }
.faq-grid { gap: 14px; }
.faq-item { overflow: hidden; border-color: rgba(203, 213, 225, 0.72); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.035), transparent 36%), linear-gradient(rgb(255, 255, 255), rgb(251, 252, 255)); box-shadow: rgba(15, 23, 42, 0.05) 0px 12px 30px; transition: border-color 160ms, box-shadow 160ms, background 160ms; }
.faq-item:hover { border-color: rgba(79, 70, 229, 0.24); box-shadow: rgba(15, 23, 42, 0.075) 0px 16px 38px; transform: none; }
.faq-item[open] { border-color: rgba(79, 70, 229, 0.24); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.06), transparent 38%), linear-gradient(rgb(255, 255, 255), rgb(248, 249, 255)); }
.faq-item summary { padding: 18px 20px; line-height: 1.32; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary::after { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(99, 102, 241, 0.14); border-radius: 999px; background: rgba(238, 242, 255, 0.82); color: var(--color-primary-dark); content: "+"; font-size: 1rem; transition: transform 160ms, background 160ms, border-color 160ms; }
.faq-item[open] summary::after { border-color: rgba(79, 70, 229, 0.22); background: var(--color-primary); color: rgb(255, 255, 255); content: "-"; transform: rotate(180deg); }
.faq-item p { padding: 0px 20px 20px; }
.faq-answer { display: block; }
.faq-answer p { margin: 0; padding: 0 20px 20px; }
.page-hero { padding: 92px 0px 70px; background: radial-gradient(circle at 15% 12%, rgba(79, 70, 229, 0.13), transparent 32%),
    linear-gradient(180deg, #fff, var(--color-bg)); }
.pilot-hero { padding: 106px 0px 92px; background: radial-gradient(circle at 18% 18%, rgba(79, 70, 229, 0.15), transparent 34%), radial-gradient(circle at 85% 18%, rgba(14, 165, 233, 0.11), transparent 30%), linear-gradient(rgb(255, 255, 255) 0%, rgb(247, 249, 253) 100%); }
.pilot-hero .hero-grid { grid-template-columns: minmax(0px, 0.95fr) minmax(360px, 0.78fr); }
.pilot-hero h1 { max-width: 880px; font-size: clamp(2.8rem, 5.5vw, 5.15rem); }
.pilot-hero .lead { max-width: 740px; }
.pilot-summary-card { position: relative; display: grid; gap: 22px; padding: clamp(28px, 4vw, 42px); border: 1px solid rgba(79, 70, 229, 0.18); border-radius: var(--radius-lg); background: radial-gradient(circle at right top, rgba(15, 143, 106, 0.13), transparent 34%), linear-gradient(rgb(255, 255, 255), rgb(249, 251, 255)), rgb(255, 255, 255); box-shadow: var(--shadow-lg); overflow: hidden; }
.pilot-summary-card::before { position: absolute; top: 0px; right: 0px; left: 0px; height: 5px; background: linear-gradient(90deg, var(--color-primary), var(--color-green), #0ea5e9); content: ""; }
.pilot-summary-card h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
.summary-list { display: grid; gap: 12px; }
.summary-list div, .pilot-contact-card { display: grid; gap: 4px; padding: 14px 15px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: rgb(248, 250, 252); }
.summary-list strong, .pilot-contact-card strong { color: var(--color-text); font-size: 0.96rem; }
.summary-list span, .pilot-contact-card span { color: var(--color-muted); font-size: 0.9rem; }
.outcome-card { position: relative; display: flex; flex-direction: column; border-color: rgba(203, 213, 225, 0.72); background: linear-gradient(rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.96)); box-shadow: rgba(15, 23, 42, 0.07) 0px 16px 42px; overflow: hidden; transition: transform 180ms, border-color 180ms, box-shadow 180ms; }
.outcome-card::after { position: absolute; right: 0px; bottom: 0px; left: 0px; height: 3px; background: linear-gradient(90deg, rgba(79, 70, 229, 0.58), rgba(14, 165, 233, 0.22)); opacity: 0; content: ""; transition: opacity 180ms; }
.outcome-card:hover { border-color: rgba(165, 180, 252, 0.72); box-shadow: rgba(15, 23, 42, 0.09) 0px 20px 50px; transform: translateY(-3px); }
.outcome-card:hover::after { opacity: 1; }
.outcome-card-focus { border-color: rgba(79, 70, 229, 0.28); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.075), transparent 46%), linear-gradient(rgb(255, 255, 255), rgb(248, 248, 255)); box-shadow: rgba(79, 70, 229, 0.086) 0px 18px 44px; }
.outcome-card-focus::after { opacity: 0.45; }
.outcome-section { position: relative; scroll-margin-top: 76px; padding-top: 52px; background: radial-gradient(circle at 50% 0px, rgba(79, 70, 229, 0.08), transparent 26%), rgb(255, 255, 255); }
.outcome-section::before { position: absolute; top: 0px; right: 0px; left: 0px; height: 1px; background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.3), transparent); content: ""; }
.outcome-section .section-header { max-width: 780px; margin-bottom: 30px; }
.outcome-section h2 { max-width: 720px; margin-right: auto; margin-left: auto; font-size: clamp(1.82rem, 3.15vw, 2.9rem); line-height: 1.04; }
.outcome-section .section-copy { max-width: 750px; margin-right: auto; margin-left: auto; }
.outcome-card-top { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.outcome-signal { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.72rem; font-weight: 900; }
.signal-customer { background: var(--color-green-soft); color: rgb(8, 115, 87); }
.signal-invoice { background: rgb(238, 247, 255); color: rgb(3, 105, 161); }
.signal-stock { background: rgb(255, 247, 232); color: rgb(164, 84, 5); font-size: 1rem; }
.outcome-badge, .outcome-type { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.02em; }
.outcome-badge { padding: 5px 8px; border-radius: 999px; background: var(--color-primary); color: rgb(255, 255, 255); }
.outcome-type { color: rgb(113, 128, 150); }
.outcome-card h3 { font-size: 1.08rem; line-height: 1.22; }
.outcome-card p { margin-top: 11px; font-size: 0.94rem; line-height: 1.55; }
.outcome-reference { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 18px; color: rgb(89, 107, 130); font-size: 0.76rem; font-weight: 750; }
.outcome-reference::before { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 999px; background: var(--color-green); box-shadow: rgba(15, 143, 106, 0.09) 0px 0px 0px 4px; content: ""; }
.outcome-dashboard-link { display: flex; width: fit-content; max-width: 860px; align-items: center; justify-content: center; gap: 11px; margin: 28px auto 0px; padding: 10px 15px; border: 1px solid rgba(203, 213, 225, 0.68); border-radius: 999px; background: rgba(248, 250, 252, 0.82); color: rgb(82, 97, 119); font-size: 0.84rem; font-weight: 650; text-align: center; box-shadow: rgba(15, 23, 42, 0.04) 0px 8px 24px; }
.outcome-dashboard-link > span { position: relative; width: 22px; height: 18px; flex: 0 0 22px; border: 1px solid rgba(79, 70, 229, 0.34); border-radius: 5px; background: rgb(255, 255, 255); }
.outcome-dashboard-link > span::before { position: absolute; right: 4px; bottom: 4px; left: 4px; height: 5px; border-radius: 2px; background: linear-gradient(90deg, var(--color-primary), #0ea5e9); content: ""; }
.three-on-dark { grid-template-columns: repeat(3, minmax(0px, 1fr)); }
.pilot-timeline { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 16px; }
.timeline-card { position: relative; min-height: 210px; padding: 24px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: linear-gradient(rgb(255, 255, 255), rgb(251, 252, 255)); box-shadow: var(--shadow-sm); }
.timeline-card span { display: inline-grid; width: 42px; height: 42px; place-items: center; margin-bottom: 22px; border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-weight: 900; }
.timeline-card p { margin: 12px 0px 0px; color: var(--color-muted); }
.pilot-contact-card { max-width: 440px; margin-top: 26px; border-color: rgba(15, 143, 106, 0.22); background: linear-gradient(rgb(255, 255, 255), rgb(247, 252, 250)); box-shadow: var(--shadow-sm); }
.pilot-form-card { border-color: rgba(79, 70, 229, 0.2); background: radial-gradient(circle at right top, rgba(79, 70, 229, 0.09), transparent 34%), rgb(255, 255, 255); box-shadow: var(--shadow-lg); }
.steps { display: grid; gap: 14px; counter-reset: step 0; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; padding: 18px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: rgb(255, 255, 255); box-shadow: var(--shadow-sm); counter-increment: step 1; }
.step::before { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 8px; background: var(--color-primary-soft); color: var(--color-primary-dark); content: counter(step); font-weight: 900; }
.form-card { padding: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 16px; }
.field, .field-full { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label { color: rgb(38, 51, 70); font-size: 0.92rem; font-weight: 750; }
input, textarea, select { width: 100%; min-height: 46px; border: 1px solid rgb(203, 213, 225); border-radius: 8px; background: rgb(255, 255, 255); color: var(--color-text); font: inherit; padding: 10px 12px; }
textarea { min-height: 120px; resize: vertical; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; color: rgb(51, 65, 85); }
.checkbox-field input { width: 18px; min-height: 18px; margin-top: 4px; }
.form-note { margin: 18px 0px 0px; padding: 14px 16px; border: 1px solid rgba(15, 143, 106, 0.2); border-radius: 8px; background: var(--color-green-soft); color: rgb(7, 92, 71); font-weight: 700; }
.form-note a { color: rgb(6, 78, 59); text-decoration: underline; text-underline-offset: 3px; }
.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 34px; align-items: start; }
.legal-nav { position: sticky; top: 104px; display: grid; gap: 8px; padding: 18px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: rgb(255, 255, 255); box-shadow: var(--shadow-sm); }
.legal-nav a { color: var(--color-muted); font-weight: 700; }
.legal-content { display: grid; gap: 18px; }
.legal-card { padding: 26px; }
.placeholder-note { display: inline-flex; margin-top: 18px; padding: 8px 10px; border-radius: 8px; background: rgb(255, 247, 237); color: rgb(154, 52, 18); font-size: 0.88rem; font-weight: 800; }
.site-footer { border-top: 1px solid var(--color-line); background: radial-gradient(circle at 18% 0px, rgba(79, 70, 229, 0.16), transparent 32%), linear-gradient(rgb(10, 18, 32) 0%, rgb(7, 16, 29) 100%); color: rgb(203, 213, 225); padding: 60px 0px 28px; }
.footer-grid { display: grid; grid-template-columns: minmax(0px, 1.2fr) minmax(340px, 0.85fr); gap: 48px; align-items: start; }
.site-footer .brand { color: rgb(255, 255, 255); }
.footer-logo-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}
.footer-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 210px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-copy { max-width: 470px; margin: 18px 0px 0px; color: rgb(159, 176, 199); }
.footer-note { margin: 12px 0px 0px; color: rgb(215, 222, 240); font-size: 0.92rem; font-weight: 750; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 24px; }
.footer-link-group { display: grid; align-content: start; gap: 11px; }
.footer-link-group h3 { margin: 0px 0px 4px; color: rgb(255, 255, 255); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links a { color: rgb(203, 213, 225); font-weight: 700; transition: color 160ms, transform 160ms; }
.footer-links a:hover { color: rgb(255, 255, 255); transform: translateX(2px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(203, 213, 225, 0.15); color: rgb(145, 161, 184); font-size: 0.9rem; }
.footer-bottom-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgb(203, 213, 225);
  font-weight: 800;
}
.footer-bottom-logo img {
  display: block;
  width: auto;
  height: 24px;
  max-width: 128px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
@media (max-width: 980px) {
  :root { --section-padding-lg: 72px; --section-padding-md: 64px; --section-padding-sm: 46px; }
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; top: 76px; right: 0px; left: 0px; display: none; flex-direction: column; align-items: stretch; max-height: calc(-76px + 100vh); padding: 24px; overflow: auto; border-bottom: 1px solid var(--color-line); background: rgb(255, 255, 255); }
  .nav-menu.is-open { display: flex; }
  .nav-links, .nav-actions { flex-direction: column; align-items: stretch; }
  .nav-links a, .nav-actions .btn { width: 100%; }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 0;
    text-align: left;
  }
  .nav-mega {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    border-radius: 18px;
    box-shadow: rgba(15, 23, 42, 0.08) 0 16px 42px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-dropdown.is-open .nav-mega {
    display: block;
    transform: none;
  }
  .nav-mega-grid {
    grid-template-columns: 1fr;
  }
  .nav-mega-link {
    grid-template-columns: 38px 1fr;
    padding: 10px;
  }
  .nav-mega-icon {
    width: 36px;
    height: 36px;
  }
  .hero-grid, .split-grid, .no-show-layout, .legal-layout { grid-template-columns: 1fr; }
  .no-show-layout { gap: 42px; }
  .no-show-copy .section-copy, .no-show-demo { max-width: 680px; }
  .no-show-process { width: 100%; justify-self: stretch; }
  .dashboard-grid { gap: 44px; }
  .dashboard-copy { max-width: 720px; }
  .dashboard-visual { width: min(100%, 760px); margin: 0px auto; padding: 18px 12px 0px; }
  .dashboard-callouts { position: static; display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 10px; margin-top: 12px; }
  .dashboard-callout { position: static; min-width: 0px; }
  .customer-grid { gap: 44px; }
  .customer-copy { position: static; max-width: 720px; }
  .customer-showcase { width: min(100%, 760px); margin: 0px auto; }
  .calendar-grid { gap: 44px; }
  .calendar-copy { max-width: 720px; }
  .calendar-visual { width: min(100%, 860px); margin: 0px auto; padding: 18px 12px 0px; }
  .calendar-signals { position: static; display: grid; grid-template-columns: repeat(3, minmax(0px, 1fr)); gap: 10px; margin-top: 12px; }
  .calendar-signal { position: static; min-width: 0px; }
  .booking-grid { gap: 44px; }
  .booking-copy { max-width: 720px; }
  .booking-demo { grid-template-rows: auto auto 44px; width: min(100%, 860px); margin: 0px auto; }
  .booking-showcase { height: auto; gap: 12px; padding-bottom: 0px; }
  .booking-demo[data-view="desktop"] .booking-demo-screen { height: clamp(430px, 54vw, 540px); }
  .booking-signals { position: static; display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); grid-auto-rows: 78px; gap: 10px; margin-top: 0px; }
  .booking-signal { position: static; min-width: 0px; height: 100%; }
  .card-grid, .card-grid.two, .card-grid.four, .workflow, .three-on-dark, .pilot-timeline, .comparison, .faq-grid, .booking-showcase, .billing-flow, .checkout-mini-ui { grid-template-columns: 1fr; }
  .billing-flow::before { inset: 28px auto 28px 41px; width: 2px; height: auto; background: linear-gradient(rgba(79, 70, 229, 0.14), rgba(79, 70, 229, 0.48), rgba(14, 165, 233, 0.2)); transform: none; }
  .billing-step { min-height: 0px; }
  .checkout-mini-ui { max-width: 760px; }
  .finance-grid { gap: 44px; }
  .finance-copy { max-width: 720px; }
  .finance-showcase { width: min(100%, 860px); margin: 0px auto; }
  .finance-showcase-stage { height: clamp(460px, 58vw, 560px); }
  .finance-showcase-signals { position: static; display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 10px; margin-top: 12px; }
  .finance-floating-card { position: static; min-width: 0px; }
  .module-grid { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
  .why-card, .why-card:nth-last-child(-n+2) { grid-column: span 1; }
  .why-hero-grid,
  .why-story-grid,
  .why-system-comparison {
    grid-template-columns: 1fr;
  }
  .why-systems-section .container {
    width: min(100% - 32px, var(--container));
  }
  .why-page .why-grid,
  .why-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-timeline {
    row-gap: 30px;
  }
  .why-timeline::before {
    display: none;
  }
  .why-platform-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-platform-groups div:last-child {
    grid-column: 1 / -1;
  }
  .why-platform-groups div,
  .why-system-panel {
    min-height: 0;
  }
  .why-distributed-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-tool-card,
  .why-tool-card:nth-child(n) {
    grid-column: auto;
    transform: none;
  }
  .why-system-brand-head img {
    width: min(260px, 74%);
  }
  .outcome-grid { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
  .hero-premium .hero-grid { grid-template-columns: 1fr; }
  .hero-premium { padding: 52px 0px 68px; }
  .hero-copy { padding-top: 0px; }
  .hero-visual { width: min(100%, 700px); margin: 18px auto 0px; padding: 18px 12px 48px; }
  .hero-screenshot { width: min(100%, 620px); margin: 0px auto; }
  .hero-screenshot .product-screenshot { max-height: 520px; }
  .pilot-hero .hero-grid { grid-template-columns: 1fr; }
  .floating-note { top: -3px; right: 18px; left: auto; }
  .floating-status { right: 0px; bottom: 22px; }
  .workflow::before { inset: 30px auto 30px 40px; width: 3px; height: auto; background: linear-gradient(rgba(79, 70, 229, 0.22), rgba(79, 70, 229, 0.72), rgba(14, 165, 233, 0.42)); }
  .workflow-step { grid-template-columns: 54px 1fr; column-gap: 16px; min-height: auto; padding: 18px; }
  .workflow-step::after { inset: auto auto -22px 29px; width: 24px; transform: rotate(90deg); }
  .workflow-step-head { display: grid; grid-area: 1 / 1 / 5; justify-items: center; align-content: start; margin: 0px; }
  .workflow-step-icon { margin-top: 14px; }
  .workflow-flow-label, .workflow-step h3, .workflow-step p, .workflow-detail { grid-column: 2; }
  .workflow-flow-label { margin-bottom: 7px; }
  .workflow-detail { width: fit-content; min-width: min(100%, 260px); margin-top: 14px; }
  .problem-map { grid-template-columns: 1fr; }
  .system-stack, .platform-stack { min-height: 0px; }
  .map-arrow { margin: 8px 0px; text-align: center; }
  .map-arrow > span { transform: rotate(90deg); }
  .legal-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  :root { --section-padding-lg: 62px; --section-padding-md: 58px; --section-padding-sm: 42px; }
  .navbar, .container { width: min(100% - 28px, var(--container)); }
  .hero, .page-hero { padding-top: 72px; }
  .hero-premium { padding: 38px 0px 54px; }
  .hero-premium .lead { margin-top: 18px; }
  .hero-premium .hero-actions { margin-top: 24px; }
  .hero-premium .trust-list { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 8px; margin-top: 22px; }
  .hero-premium .trust-list li { min-width: 0px; padding-right: 8px; font-size: 0.74rem; line-height: 1.25; }
  .hero-premium .floating-note { position: static; display: grid; max-width: none; margin-top: 12px; }
  .hero-premium .floating-status { display: none; }
  .hero-visual { margin-top: 18px; padding: 10px 0px 0px; }
  .hero-visual::before { inset: 18px 0px 6px; border-radius: 22px; }
  .hero-premium::after, .hero-visual::after { display: none; }
  .hero-screenshot { width: 100%; margin-left: 0px; }
  .section { padding: var(--section-padding-lg) 0; }
  h1 { font-size: clamp(2.2rem, 11vw, 2.9rem); }
  .hero-premium h1 { font-size: clamp(2.2rem, 11vw, 2.9rem); line-height: 1.03; }
  h2 { font-size: clamp(1.75rem, 8vw, 2.35rem); }
  .lead { font-size: 1.04rem; }
  .trust-list, .form-grid, .footer-grid, .footer-links { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-section { padding-top: 42px; }
  .outcome-dashboard-link { width: 100%; align-items: flex-start; border-radius: var(--radius-sm); font-size: 0.84rem; text-align: left; }
  .no-show-layout { gap: 34px; }
  .no-show-demo { margin-top: 24px; padding: 15px; }
  .no-show-demo-head { align-items: flex-start; }
  .no-show-demo-details { grid-template-columns: 1fr; gap: 12px; }
  .no-show-demo-details > span:last-child { padding-top: 12px; padding-left: 0px; border-top: 1px solid rgba(255, 255, 255, 0.1); border-left: 0px; }
  .no-show-step { grid-template-columns: 42px 1fr; gap: 13px; min-height: 0px; padding: 18px; }
  .no-show-process::before { left: 21px; }
  .no-show-step-number { width: 34px; height: 34px; box-shadow: rgb(16, 24, 39) 0px 0px 0px 6px; }
  .dashboard-grid { gap: 34px; }
  .dashboard-benefit { grid-template-columns: 36px 1fr; gap: 11px; padding: 12px 0px; }
  .dashboard-benefit-icon { width: 32px; height: 32px; }
  .dashboard-visual { padding: 10px 0px 0px; }
  .dashboard-callouts { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
  .dashboard-callout-crm { grid-column: 1 / -1; }
  .customer-grid { gap: 34px; }
  .customer-benefit { grid-template-columns: 36px 1fr; gap: 11px; padding: 12px 0px; }
  .customer-benefit-icon { width: 32px; height: 32px; }
  .customer-showcase { padding: 9px; }
  .customer-showcase-stage { height: clamp(350px, 112vw, 470px); }
  .customer-showcase-screen { width: calc(100% - 4px); height: calc(100% - 4px); }
  .customer-showcase-screen .product-screenshot { max-height: none; }
  .customer-showcase-step { padding: 7px 6px; }
  .customer-showcase-step strong { font-size: 0.7rem; }
  .calendar-grid { gap: 34px; }
  .calendar-benefit { grid-template-columns: 36px 1fr; gap: 11px; padding: 12px 0px; }
  .calendar-benefit-icon { width: 32px; height: 32px; }
  .calendar-visual { padding: 8px 0px 0px; }
  .calendar-signals { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
  .calendar-signal-noshow { grid-column: 1 / -1; }
  .working-hours-grid { gap: 34px; }
  .working-hours-benefit { grid-template-columns: 36px 1fr; gap: 11px; padding: 12px 0px; }
  .working-hours-benefit-icon { width: 32px; height: 32px; }
  .working-hours-visual { padding: 8px 0px 0px; }
  .working-hours-screenshot { height: clamp(390px, 116vw, 490px); }
  .working-hours-signals { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
  .working-hours-signal-plan { grid-column: 1 / -1; }
  .billing-step { grid-template-columns: 40px 1fr; gap: 12px; padding: 18px; }
  .billing-step-number { width: 34px; height: 34px; box-shadow: rgba(255, 255, 255, 0.9) 0px 0px 0px 5px; }
  .checkout-mini-ui { padding: 12px; }
  .checkout-mini-lines { grid-template-columns: 1fr; }
  .checkout-mini-lines span { padding-bottom: 2px; border-bottom: 0px; }
  .checkout-mini-lines strong { padding-top: 0px; text-align: left; }
  .finance-benefit { grid-template-columns: 36px 1fr; gap: 11px; padding: 12px 0px; }
  .finance-benefit-icon { width: 32px; height: 32px; }
  .finance-showcase { padding: 9px; }
  .finance-showcase-stage { height: clamp(350px, 112vw, 470px); }
  .finance-showcase-screen { width: calc(100% - 4px); height: clamp(286px, 78vw, 320px); }
  .finance-showcase-screen .product-screenshot { max-height: none; }
  .finance-showcase-signals { grid-template-columns: 1fr; }
  .finance-floating-card { padding: 9px 10px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 182px; padding: 18px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 0px; padding: 20px; }
  .why-hero-section {
    padding: 66px 0 52px;
  }
  .why-hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.05rem);
    line-height: 1.06;
  }
  .why-hero-media {
    border-radius: 22px;
  }
  .why-hero-media img {
    height: clamp(230px, 62vw, 340px);
  }
  .why-statement-card {
    border-radius: 22px;
  }
  .why-story-grid,
  .why-timeline,
  .why-page .why-grid {
    grid-template-columns: 1fr;
  }
  .why-timeline-item {
    min-height: 64px;
    padding-top: 0;
    padding-left: 78px;
  }
  .why-timeline-item > span {
    left: 0;
  }
  .why-system-panel {
    padding: 20px;
    border-radius: 22px;
  }
  .why-distributed-map,
  .why-platform-groups {
    grid-template-columns: 1fr;
  }
  .why-platform-groups div:last-child {
    grid-column: auto;
  }
  .why-tool-card {
    min-height: 72px;
  }
  .why-platform-groups div {
    min-height: 0;
    gap: 13px;
  }
  .why-benefit-pills {
    justify-content: stretch;
  }
  .why-benefit-pills span {
    width: 100%;
    min-height: 58px;
    justify-content: flex-start;
    padding: 11px 16px;
  }
  .why-benefit-pills i {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .why-final-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .why-final-media {
    min-height: clamp(240px, 62vw, 360px);
  }
  .why-final-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.76) 78%, #fff 100%);
  }
  .why-final-panel {
    padding: 30px var(--container-padding) 58px;
  }
  .why-final-panel .cta-row,
  .why-final-panel .btn {
    width: 100%;
  }
  .fit-panel { min-height: 0px; padding: 20px; }
  .pilot-benefits { display: grid; grid-template-columns: 1fr; }
  .pilot-benefits span { justify-content: center; }
  .final-cta { min-height: 0px; }
  .final-trust-line { font-size: 0.84rem; line-height: 1.5; }
  .booking-grid { gap: 34px; }
  .booking-benefit { grid-template-columns: 36px 1fr; gap: 11px; padding: 12px 0px; }
  .booking-benefit-icon { width: 32px; height: 32px; }
  .booking-demo { padding: 12px; border-radius: 18px; }
  .booking-demo-heading { align-items: stretch; }
  .booking-demo-help { max-width: none; }
  .segmented-control { align-self: flex-start; }
  .step-control { grid-template-columns: 1fr; }
  .step-control::before { display: none; }
  .step-control button { justify-content: flex-start; min-height: 38px; }
  .booking-showcase { padding-bottom: 0px; }
  .booking-signals { grid-template-columns: repeat(2, minmax(0px, 1fr)); grid-auto-rows: 82px; }
  .booking-signal { padding: 9px 10px; }
  .booking-signal strong { font-size: 0.76rem; }
  .booking-device-frame { width: min(100%, 350px); height: clamp(520px, 130vw, 650px); border-width: 10px; border-radius: 30px; }
  .workflow-step { grid-template-columns: 48px 1fr; padding: 16px; }
  .workflow::before { left: 35px; }
  .workflow-step::after { left: 24px; }
  .workflow-step-number { width: 38px; height: 38px; }
  .workflow-step-icon { min-width: 28px; height: 28px; margin-top: 12px; }
  .workflow-detail { width: 100%; min-width: 0px; }
  .screenshot-card.browser-frame { padding: 38px 8px 8px; border-radius: var(--radius-md); }
  .screenshot-card.browser-frame::before { height: 32px; }
  .screenshot-card.browser-frame::after { top: 12px; }
  .hero-screenshot .product-screenshot, .dashboard-screenshot .product-screenshot, .calendar-screenshot .product-screenshot { max-height: 360px; }
  .screenshot-card.phone-frame { width: min(100%, 220px); }
  .metric-grid { gap: 10px; }
  .mockup-body { padding: 14px; }
  .system-stack, .platform-stack { padding: 18px; }
  .system-stack { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
  .system-stack-head, .system-warning { grid-column: 1 / -1; }
  .system-chip, .system-chip.chip-wide, .system-chip.chip-wide + .system-chip, .system-chip.chip-register { grid-column: span 1; }
  .system-chip.chip-paper, .system-chip.chip-offset { transform: none; }
  .platform-group > div { grid-template-columns: repeat(2, minmax(0px, 1fr)); }
  .platform-group-finance > div { grid-template-columns: 1fr; }
  .platform-stack-head { align-items: flex-start; }
  .systems-section .section-header h2 span { white-space: normal; }
  .map-arrow { margin: 4px 0px; }
  .statement { display: grid; grid-template-columns: 1fr; }
  .statement span { text-align: center; }
  .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, ::before, ::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .btn:hover, .trust-list li:hover, .outcome-card:hover, .no-show-step:hover, .no-show-demo-action:hover, .platform-group span:hover, .workflow-step:hover, .dashboard-benefit:hover, .dashboard-screenshot:hover, .customer-benefit:hover, .customer-showcase-arrow:hover, .calendar-benefit:hover, .calendar-screenshot:hover, .working-hours-benefit:hover, .working-hours-screenshot:hover, .booking-benefit:hover, .booking-demo-screen:hover, .billing-step:hover, .finance-benefit:hover, .module-card:hover, .why-card:hover, .fit-panel:hover, .pilot-benefits span:hover, .footer-links a:hover, .hero-screenshot:hover, .hero-visual:hover .floating-note, .hero-visual:hover .floating-status { transform: none; }
  .no-show-demo-action:hover .no-show-action-arrow { transform: none; }
}

/* Headline polish: balanced wraps and subtle Coiffinity accent marks. */
h1,
h2 {
  text-wrap: balance;
}

h2 {
  line-height: 1.06;
}

.headline-mark {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
}

.headline-mark::after {
  position: absolute;
  right: -0.05em;
  bottom: -0.1em;
  left: -0.05em;
  z-index: -1;
  height: 0.24em;
  border: 2px solid transparent;
  border-bottom-color: rgba(79, 70, 229, 0.46);
  border-radius: 50%;
  background: radial-gradient(100% 80% at 50% 100%, rgba(14, 165, 233, 0.18), transparent 64%);
  content: "";
  pointer-events: none;
  transform: rotate(-1.1deg);
  transform-origin: center;
}

.dashboard-copy h2,
.finance-copy h2 {
  max-width: 620px;
}

.calendar-copy h2 {
  max-width: 620px;
}

.customer-copy h2 {
  max-width: 640px;
}

.working-hours-copy h2 {
  max-width: 650px;
}

.systems-section .section-header h2 {
  max-width: 900px;
}

.booking-copy h2 {
  max-width: 700px;
  line-height: 1;
}

.why-header {
  max-width: 840px;
}

.fit-header,
.faq-header {
  max-width: 780px;
}

.final-cta h2 {
  max-width: 820px;
}

.hero-premium h1 {
  text-wrap: normal;
}

.hero-premium .hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(500px, 1.02fr);
}

.dashboard-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
}

.calendar-grid,
.working-hours-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(580px, 1.1fr);
}

.customer-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
}

.booking-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
}

.finance-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(580px, 1.08fr);
}

@media (max-width: 980px) {
  .hero-premium .hero-grid,
  .dashboard-grid,
  .calendar-grid,
  .working-hours-grid,
  .customer-grid,
  .booking-grid,
  .finance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  h2 {
    line-height: 1.08;
  }

  .headline-mark::after {
    bottom: -0.08em;
    height: 0.2em;
    border-bottom-width: 1.5px;
  }

  .booking-copy h2 {
    line-height: 1.04;
  }
}

/* Origin story section */
.origin-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(79, 70, 229, 0.07), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(14, 165, 233, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.origin-panel {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
}

.origin-intro {
  max-width: 880px;
}

.origin-intro h2 {
  max-width: 760px;
}

.origin-intro .section-copy {
  max-width: 760px;
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 0.96fr));
  gap: 16px;
  align-items: stretch;
}

.origin-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.76);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.06), transparent 38%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.065);
}

.origin-card-wide {
  border-color: rgba(79, 70, 229, 0.18);
  background:
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.1), transparent 42%),
    linear-gradient(180deg, #fff, #f8f9ff);
}

.origin-card-label {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 999px;
  background: rgba(238, 242, 255, 0.84);
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.origin-card p {
  margin: 0;
  color: #405066;
  font-size: 0.96rem;
  line-height: 1.62;
}

.origin-followup {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgba(14, 165, 233, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07);
}

.origin-followup h3 {
  max-width: 460px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.12;
  text-wrap: balance;
}

.origin-followup p {
  margin: 0;
  color: #405066;
  font-size: 1rem;
  line-height: 1.65;
}

.pilot-panel-copy-secondary {
  margin-top: 12px;
}

@media (max-width: 980px) {
  .origin-grid,
  .origin-followup {
    grid-template-columns: 1fr;
  }

  .origin-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .origin-card,
  .origin-followup {
    padding: 20px;
  }
}

/* ROI / value section */
.value-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6vw, 82px) 0;
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.value-section::before {
  position: absolute;
  inset: 12% auto auto 8%;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.1);
  filter: blur(70px);
  content: "";
}

.value-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4.8vw, 58px);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 12%, rgba(99, 102, 241, 0.28), transparent 34%),
    radial-gradient(circle at 14% 88%, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #101a33 48%, #172554 100%);
  box-shadow: 0 34px 92px rgba(15, 23, 42, 0.22);
}

.value-shell::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.85), transparent 72%);
  pointer-events: none;
  content: "";
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}

.value-copy h2 {
  max-width: 620px;
  color: #ffffff;
}

.value-copy .section-copy {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(226, 232, 240, 0.78);
}

.value-note {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(203, 213, 225, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.value-section .section-kicker {
  color: #a5b4fc;
}

.value-panel {
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
}

.value-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.value-pill {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 154px;
  padding: 20px;
  border: 1px solid rgba(203, 213, 225, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(129, 140, 248, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.value-pill:hover {
  border-color: rgba(165, 180, 252, 0.36);
  background-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.value-pill__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(165, 180, 252, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 20%, rgba(14, 165, 233, 0.2), transparent 45%),
    rgba(224, 231, 255, 0.1);
  color: #c7d2fe;
}

.value-pill__icon svg {
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

.value-pill__content {
  display: grid;
  gap: 4px;
}

.value-pill__content strong {
  color: #ffffff;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.18;
}

.value-pill__content small {
  color: rgba(203, 213, 225, 0.76);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-shell {
    padding: clamp(24px, 6vw, 38px);
  }

  .value-panel {
    max-width: 860px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .value-benefits {
    grid-template-columns: 1fr;
  }

  .value-panel {
    padding: 0;
  }

  .value-pill {
    min-height: 0;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .value-pill__icon {
    width: 40px;
    height: 40px;
  }
}

/* Consistent inline icon system for small marketing badges. */
.icon-svg {
  display: block;
  width: 1em;
  height: 1em;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

.nav-mega-icon,
.trust-icon,
.badge-icon,
.platform-group i,
.workflow-step-icon,
.dashboard-benefit-icon,
.calendar-benefit-icon,
.finance-benefit-icon,
.working-hours-benefit-icon,
.booking-benefit-icon,
.why-card-icon,
.fit-panel-icon,
.outcome-signal,
.no-show-action-icon,
.system-warning > span,
.why-tool-icon,
.why-platform-groups i,
.why-benefit-pills i,
.feature-mini-icon,
.feature-hub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  line-height: 0;
}

.nav-mega-icon .icon-svg,
.trust-icon .icon-svg,
.badge-icon .icon-svg,
.platform-group i .icon-svg,
.workflow-step-icon .icon-svg,
.dashboard-benefit-icon .icon-svg,
.calendar-benefit-icon .icon-svg,
.finance-benefit-icon .icon-svg,
.working-hours-benefit-icon .icon-svg,
.booking-benefit-icon .icon-svg,
.why-card-icon .icon-svg,
.fit-panel-icon .icon-svg,
.outcome-signal .icon-svg,
.no-show-action-icon .icon-svg,
.system-warning > span .icon-svg,
.why-tool-icon .icon-svg,
.why-platform-groups i .icon-svg,
.why-benefit-pills i .icon-svg,
.feature-mini-icon .icon-svg,
.feature-hub-icon .icon-svg {
  flex: 0 0 auto;
  max-width: none;
}

.trust-icon .icon-svg,
.badge-icon .icon-svg,
.platform-group i .icon-svg,
.workflow-step-icon .icon-svg,
.dashboard-benefit-icon .icon-svg,
.calendar-benefit-icon .icon-svg,
.finance-benefit-icon .icon-svg,
.working-hours-benefit-icon .icon-svg,
.why-card-icon .icon-svg,
.fit-panel-icon .icon-svg,
.outcome-signal .icon-svg,
.no-show-action-icon .icon-svg {
  width: 18px;
  height: 18px;
}

/* Modern SaaS homepage refresh */
:root {
  --coiffinity-text-gradient: linear-gradient(
    110deg,
    #4f46e5 0%,
    #7c3aed 30%,
    #3b82f6 58%,
    #06b6d4 82%,
    #22d3ee 100%
  );
}

.text-gradient {
  display: inline-block;
  background: var(--coiffinity-text-gradient);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.05em;
  animation: coiffinityGradientFlow 10s ease-in-out infinite alternate;
}

@keyframes coiffinityGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 70% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-gradient,
  .metric-section .metric-card > strong {
    animation: none;
  }
}

.text-highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.text-highlight::after {
  position: absolute;
  right: -0.04em;
  bottom: 0.08em;
  left: -0.04em;
  z-index: -1;
  height: 0.18em;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.18);
  content: "";
}

.landing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 132px) 0;
  background: #fff;
}

.landing-section:nth-of-type(odd) {
  background:
    radial-gradient(circle at 82% 12%, rgba(79, 70, 229, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.landing-header {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.landing-header--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.landing-header h2,
.platform-copy h2 {
  max-width: 980px;
  font-size: clamp(2.75rem, 6.2vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.042em;
}

.landing-header p:not(.section-kicker),
.platform-copy .section-copy {
  max-width: 760px;
  margin: 20px auto 0;
  color: #263447;
  font-size: clamp(1.03rem, 1.35vw, 1.17rem);
  line-height: 1.62;
  font-weight: 500;
}

.premium-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(42px, 5.5vw, 88px);
  align-items: center;
}

.premium-split--visual-left {
  grid-template-columns: minmax(480px, 1.1fr) minmax(320px, 0.9fr);
}

.landing-visual {
  position: relative;
}

.landing-visual::before {
  position: absolute;
  inset: 12% -4% -6% 10%;
  z-index: 0;
  border-radius: 32px;
  background: radial-gradient(circle at 70% 20%, rgba(79, 70, 229, 0.22), transparent 42%);
  filter: blur(44px);
  content: "";
}

.landing-product-frame {
  position: relative;
  z-index: 1;
  border-color: rgba(185, 198, 216, 0.78);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.13), 0 12px 34px rgba(79, 70, 229, 0.1);
}

.landing-product-frame .product-screenshot {
  max-height: min(720px, 70vh);
  object-fit: contain;
  filter: contrast(1.08) saturate(1.04);
}

.premium-steps {
  position: relative;
  display: grid;
  gap: 18px;
}

.premium-steps::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 18px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(rgba(79, 70, 229, 0.16), rgba(79, 70, 229, 0.62), rgba(20, 184, 166, 0.28));
  content: "";
}

.premium-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
}

.premium-steps article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.09);
}

.premium-steps h3,
.platform-link-grid strong,
.feature-tile h3 {
  letter-spacing: -0.025em;
}

.premium-steps p,
.feature-tile p {
  margin: 6px 0 0;
  color: var(--color-muted);
  line-height: 1.48;
}

.ease-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(79, 70, 229, 0.08), transparent 30%),
    radial-gradient(circle at 92% 26%, rgba(20, 184, 166, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.operations-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.operations-overview article {
  position: relative;
  min-width: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.34);
}

.operations-overview article::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: var(--coiffinity-text-gradient);
  content: "";
}

.operations-overview span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.operations-overview h3 {
  max-width: 12rem;
  font-size: clamp(1.25rem, 1.7vw, 1.62rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.operations-overview p {
  margin: 12px 0 0;
  color: var(--color-muted);
  line-height: 1.52;
}

.metric-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(79, 70, 229, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.metric-section .landing-header h2 {
  max-width: 1080px;
  line-height: 1.03;
  letter-spacing: -0.046em;
}

.metric-section .metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.metric-section .metric-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(20, 184, 166, 0.12), transparent 38%),
    radial-gradient(circle at 0 0, rgba(79, 70, 229, 0.09), transparent 42%),
    #fff;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.075);
}

.metric-section .metric-card > strong {
  margin-bottom: clamp(26px, 4vw, 46px);
  background: var(--coiffinity-text-gradient);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: coiffinityGradientFlow 10s ease-in-out infinite alternate;
  font-size: clamp(3.45rem, 5.9vw, 6rem);
  line-height: 0.84;
  letter-spacing: -0.052em;
  white-space: nowrap;
}

.metric-section .metric-card h3 {
  max-width: 12rem;
  font-size: clamp(1.12rem, 1.45vw, 1.28rem);
  line-height: 1.08;
}

.metric-section .metric-card p {
  margin: 9px 0 0;
  color: var(--color-muted);
  line-height: 1.5;
}

.metric-footnote {
  max-width: 760px;
  margin: 24px auto 0;
  color: #64748b;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.signal-section {
  padding-top: clamp(48px, 5vw, 78px);
  padding-bottom: clamp(78px, 7vw, 118px);
  background:
    radial-gradient(circle at 85% 18%, rgba(124, 58, 237, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.signal-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4.4vw, 58px);
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 15%, rgba(79, 70, 229, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.signal-copy h2 {
  max-width: 620px;
  font-size: clamp(2.5rem, 5.1vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.signal-copy p:not(.section-kicker) {
  max-width: 540px;
  margin: 18px 0 0;
  color: #53647a;
  font-size: 1.04rem;
  line-height: 1.58;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, rgba(248, 250, 255, 0.92));
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.signal-card strong {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(20, 184, 166, 0.12));
  color: var(--color-primary-dark);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.signal-card h3 {
  align-self: end;
  font-size: 1.02rem;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.signal-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.signal-note {
  grid-column: 2;
  margin: -28px 0 0;
  color: #475569;
  font-size: 0.96rem;
  font-weight: 800;
}

.signal-section {
  padding-top: clamp(74px, 7vw, 112px);
  padding-bottom: clamp(82px, 8vw, 128px);
  background:
    radial-gradient(circle at 12% 58%, rgba(79, 70, 229, 0.09), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(20, 184, 166, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.signal-header {
  margin-bottom: clamp(34px, 5vw, 68px);
}

.signal-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.82fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.signal-visual {
  position: relative;
}

.signal-visual::before {
  position: absolute;
  inset: 12% 8% -8% -4%;
  z-index: 0;
  border-radius: 36px;
  background: radial-gradient(circle at 45% 35%, rgba(79, 70, 229, 0.18), transparent 44%);
  filter: blur(44px);
  content: "";
}

.signal-product-frame {
  position: relative;
  z-index: 1;
  min-height: clamp(360px, 42vw, 560px);
  border-radius: 24px;
  border: 0;
  background: transparent;
  box-shadow: 0 30px 82px rgba(15, 23, 42, 0.12);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.signal-product-frame.is-loading {
  opacity: 0.74;
  transform: translateY(2px) scale(0.995);
}

.signal-product-frame .product-screenshot {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  max-height: none;
  border-radius: 24px;
  object-fit: contain;
}

.signal-list {
  display: grid;
  gap: 0;
}

.signal-tab {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.signal-tab:first-child {
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.signal-tab__number {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: color 180ms ease, transform 180ms ease;
}

.signal-tab strong {
  display: block;
  font-size: clamp(1.1rem, 1.6vw, 1.34rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

.signal-tab small {
  display: block;
  max-width: 420px;
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.signal-tab:hover .signal-tab__number,
.signal-tab.is-active .signal-tab__number {
  color: var(--color-primary);
  transform: translateX(4px);
}

.signal-tab.is-active strong {
  color: var(--color-primary-dark);
}

.signal-tab:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.28);
  outline-offset: 6px;
  border-radius: 14px;
}

.signal-list .signal-note {
  grid-column: auto;
  margin: 22px 0 0;
  padding-left: 60px;
  color: #334155;
  font-weight: 800;
  line-height: 1.5;
}

.platform-section {
  background:
    radial-gradient(circle at 20% 8%, rgba(20, 184, 166, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.platform-tabs {
  display: flex;
  gap: clamp(18px, 3.3vw, 48px);
  justify-content: center;
  width: min(100%, 1280px);
  margin: 0 auto clamp(42px, 5vw, 70px);
  padding: 0 0 2px;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.platform-tabs::-webkit-scrollbar {
  display: none;
}

.platform-tab {
  position: relative;
  min-width: 0;
  min-height: 48px;
  padding: 0 0 13px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #334155;
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.02rem, 1.12vw, 1.14rem);
  font-weight: 900;
  line-height: 1.12;
  white-space: normal;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.platform-tab::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--coiffinity-text-gradient);
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  content: "";
  transition: opacity 180ms ease, transform 180ms ease;
}

.platform-tab:hover {
  background: transparent;
  color: var(--color-primary-dark);
  box-shadow: none;
}

.platform-tab:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.3);
  outline-offset: 3px;
}

.platform-tab.is-active {
  background: transparent;
  color: var(--color-primary-dark);
  box-shadow: none;
}

.platform-tab:hover::after,
.platform-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.platform-showcase {
  position: relative;
  overflow: visible;
  padding-top: clamp(8px, 1.2vw, 18px);
}

.platform-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: clamp(44px, 5.8vw, 104px);
  row-gap: clamp(22px, 2.2vw, 34px);
  align-items: stretch;
  transition: opacity 180ms ease, transform 180ms ease;
}

.platform-panel[hidden] {
  display: none;
}

.platform-visual {
  position: relative;
  grid-row: 1 / span 2;
  align-self: stretch;
  width: calc(100% + clamp(30px, 6vw, 110px));
  margin-left: clamp(-110px, -6vw, -30px);
}

.platform-visual::before {
  position: absolute;
  inset: 14% 8% -8% -4%;
  z-index: 0;
  border-radius: 30px;
  background: radial-gradient(circle at 45% 36%, rgba(79, 70, 229, 0.18), transparent 46%);
  filter: blur(46px);
  content: "";
}

.platform-visual .landing-product-frame {
  width: 100%;
  height: clamp(460px, 44vw, 660px);
  min-height: 0;
  border-radius: 24px;
  box-shadow: 0 34px 92px rgba(15, 23, 42, 0.14), 0 14px 38px rgba(79, 70, 229, 0.1);
}

.platform-visual .landing-product-frame .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.platform-copy {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
  align-content: start;
  justify-items: start;
  align-self: start;
  padding-top: 0;
}

.platform-showcase .platform-copy h3 {
  max-width: 600px;
  font-size: clamp(2.05rem, 3.65vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.platform-showcase .platform-copy p {
  max-width: 560px;
  margin: 18px 0 26px;
  color: #263447;
  font-size: 1.03rem;
  line-height: 1.58;
  font-weight: 500;
}

.platform-feature-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-self: stretch;
  align-content: space-between;
  padding-top: clamp(4px, 0.7vw, 10px);
  margin-top: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.platform-feature-list article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 2px;
  min-width: 0;
  align-content: start;
  padding: clamp(9px, 0.9vw, 13px) 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.platform-feature-list .feature-mini-icon {
  grid-row: 1 / span 2;
  margin: 1px 0 0;
}

.platform-feature-list h4 {
  margin: 0;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.platform-feature-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.36;
}

.cinematic-hero__content .lead,
.metric-footnote,
.signal-tab small,
.signal-note,
.feature-tile p,
.origin-copy .section-copy,
.pilot-panel .section-copy,
.faq-header .section-copy {
  color: #263447;
}

.platform-bullets {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.platform-bullets li {
  position: relative;
  padding-left: 30px;
  color: #243447;
  font-weight: 800;
  line-height: 1.35;
}

.platform-bullets li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.92), rgba(20, 184, 166, 0.9));
  box-shadow: 0 7px 15px rgba(79, 70, 229, 0.16);
  content: "";
}

.platform-bullets li::after {
  position: absolute;
  top: 0.45em;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
  content: "";
}

.platform-link-grid a,
.feature-tile {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.052);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-tile h3 {
  margin: 0;
  line-height: 1.16;
}

.feature-tile p {
  margin: 0;
  line-height: 1.42;
}

.platform-link-grid a:hover,
.feature-tile:hover {
  border-color: rgba(79, 70, 229, 0.24);
  box-shadow: 0 20px 48px rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}

.platform-link-grid small {
  color: var(--color-primary);
  font-weight: 800;
}

.feature-mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 12px;
  background: rgba(238, 242, 255, 0.88);
  color: var(--color-primary-dark);
  line-height: 0;
  overflow: visible;
}

.feature-mini-icon .icon-svg {
  display: block;
  width: 21px;
  height: 21px;
  overflow: visible;
  stroke-width: 1.7;
}

.feature-tile .feature-mini-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  border-radius: 13px;
}

.feature-tile .feature-mini-icon .icon-svg {
  width: 22px;
  height: 22px;
}

.feature-wall-section {
  background:
    radial-gradient(circle at 50% 0, rgba(79, 70, 229, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.feature-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-tile {
  min-height: 184px;
  align-content: start;
}

.origin-teaser-section {
  background:
    radial-gradient(circle at 18% 26%, rgba(79, 70, 229, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.origin-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.82fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.origin-visual {
  position: relative;
}

.origin-visual::before {
  position: absolute;
  inset: 14% 10% -8% -4%;
  z-index: 0;
  border-radius: 32px;
  background: radial-gradient(circle at 42% 35%, rgba(79, 70, 229, 0.18), transparent 46%);
  filter: blur(46px);
  content: "";
}

.origin-image-frame {
  position: relative;
  z-index: 1;
  height: clamp(360px, 38vw, 540px);
  min-height: 0;
  border-radius: 24px;
  border: 0;
  background: transparent;
  box-shadow: 0 28px 78px rgba(15, 23, 42, 0.12), 0 10px 30px rgba(79, 70, 229, 0.08);
}

.origin-image-frame .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 24px;
  object-fit: cover;
}

.origin-copy {
  display: grid;
  justify-items: start;
}

.origin-copy h2 {
  max-width: 650px;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.044em;
}

.origin-copy .section-copy {
  max-width: 560px;
  margin: 20px 0 28px;
}

@media (max-width: 980px) {
  .landing-header h2,
  .platform-copy h2 {
    font-size: clamp(2.35rem, 8vw, 4.15rem);
  }

  .premium-split,
  .premium-split--visual-left {
    grid-template-columns: 1fr;
  }

  .metric-section .metric-grid,
  .feature-wall,
  .operations-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-editorial,
  .platform-panel,
  .origin-split {
    grid-template-columns: 1fr;
  }

  .signal-list .signal-note {
    padding-left: 0;
  }

  .platform-tabs {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    margin-right: calc(var(--container-padding) * -1);
    margin-left: calc(var(--container-padding) * -1);
    padding: 0 var(--container-padding) 2px;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scrollbar-width: none;
  }

  .platform-tab {
    flex: 0 0 auto;
    min-width: auto;
    min-height: 48px;
    padding-bottom: 13px;
    white-space: nowrap;
  }

  .platform-showcase {
    padding-top: 18px;
  }

  .platform-panel {
    row-gap: 22px;
  }

  .platform-visual,
  .platform-copy,
  .platform-feature-list {
    grid-column: 1;
  }

  .platform-visual {
    grid-row: auto;
    width: 100%;
    margin-left: 0;
  }

  .platform-copy {
    align-content: start;
    align-self: start;
    padding-top: 0;
  }

  .platform-showcase .platform-copy {
    padding: 0 4px 8px;
  }

  .platform-showcase .platform-copy h3 {
    font-size: clamp(1.9rem, 7.2vw, 3.45rem);
  }

  .platform-feature-list {
    grid-template-columns: 1fr;
    align-self: start;
    align-content: start;
    padding-top: 8px;
  }

  .origin-copy h2 {
    font-size: clamp(2.2rem, 8vw, 4.2rem);
  }
}

@media (max-width: 680px) {
  .landing-section {
    padding: 64px 0;
  }

  .landing-header {
    margin-bottom: 30px;
  }

  .landing-header h2,
  .platform-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .metric-section .metric-grid,
  .feature-wall,
  .platform-link-grid,
  .operations-overview {
    grid-template-columns: 1fr;
  }

  .operations-overview {
    gap: 24px;
  }

  .metric-section .metric-card,
  .feature-tile {
    min-height: 0;
  }

  .metric-section .metric-card > strong {
    margin-bottom: 22px;
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .signal-editorial {
    gap: 28px;
  }

  .signal-product-frame,
  .signal-product-frame .product-screenshot {
    height: clamp(280px, 78vw, 390px);
    min-height: 0;
  }

  .signal-tab {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .signal-list .signal-note {
    margin-top: 18px;
  }

  .platform-showcase {
    padding: 16px;
    padding-right: 0;
    padding-left: 0;
  }

  .platform-tab {
    min-height: 44px;
    padding: 0 0 12px;
    font-size: 0.98rem;
  }

  .platform-showcase .platform-copy h3 {
    font-size: clamp(1.8rem, 9.5vw, 2.65rem);
    line-height: 1;
  }

  .platform-visual .landing-product-frame {
    height: clamp(310px, 78vw, 430px);
  }

  .platform-feature-list {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 16px;
  }

  .origin-image-frame {
    height: clamp(280px, 78vw, 390px);
  }
}

/* Multi-page SaaS structure */
.page-hero-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(92px, 10vw, 132px);
  background:
    radial-gradient(circle at 82% 20%, rgba(79, 70, 229, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.96), #fff 76%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.page-hero-grid h1 {
  max-width: 760px;
  color: var(--color-text);
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.page-hero-grid .lead {
  max-width: 690px;
}

.page-hero-card {
  position: relative;
  min-height: 280px;
  padding: clamp(24px, 4vw, 34px);
  border-color: rgba(99, 102, 241, 0.18);
  background:
    radial-gradient(circle at right top, rgba(79, 70, 229, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.86);
  box-shadow: rgba(15, 23, 42, 0.1) 0 28px 76px, rgba(79, 70, 229, 0.09) 0 12px 34px;
}

.feature-overview-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(14, 165, 233, 0.07), transparent 32%),
    #fff;
}

.feature-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-hub-card {
  display: grid;
  min-height: 350px;
  align-content: start;
  gap: 13px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.feature-hub-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 78% 12%, rgba(99, 102, 241, 0.1), transparent 38%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.feature-hub-card:hover {
  border-color: rgba(99, 102, 241, 0.34);
  background:
    radial-gradient(circle at right top, rgba(99, 102, 241, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.96);
  box-shadow: rgba(15, 23, 42, 0.11) 0 24px 70px, rgba(79, 70, 229, 0.08) 0 10px 28px;
  transform: translateY(-2px);
}

.feature-hub-card:hover::before {
  opacity: 1;
}

.feature-hub-card:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.28);
  outline-offset: 3px;
}

.feature-hub-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 12px;
  background: rgba(238, 242, 255, 0.82);
  color: var(--color-primary-dark);
  box-shadow: rgba(79, 70, 229, 0.08) 0 10px 22px;
}

.feature-hub-icon .icon-svg {
  width: 20px;
  height: 20px;
}

.feature-hub-label {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-hub-card h3,
.page-hero-card h3 {
  color: var(--color-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.feature-hub-card p,
.page-hero-card p {
  color: var(--color-muted);
  line-height: 1.65;
}

.feature-page-hero {
  padding-bottom: clamp(58px, 7vw, 96px);
}

.onlinebooking-hero {
  padding-top: clamp(104px, 11vw, 150px);
}

.onlinebooking-hero-layout {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.onlinebooking-hero-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.onlinebooking-hero-heading h1 {
  max-width: 980px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(3rem, 5.9vw, 5.8rem);
  line-height: 1.01;
  letter-spacing: -0.036em;
  text-wrap: balance;
}

.onlinebooking-hero-heading .text-gradient,
.onlinebooking-page h2 .text-gradient {
  display: inline-block;
  padding-bottom: 0.06em;
}

.onlinebooking-hero-visual {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.onlinebooking-hero-visual .page-hero-screenshot {
  height: clamp(500px, 54vw, 760px);
}

.onlinebooking-hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  width: min(100%, 1120px);
  margin-inline: auto;
}

.onlinebooking-hero-bottom .lead {
  margin: 0;
  max-width: 760px;
}

.onlinebooking-page .lead,
.onlinebooking-page .section-copy,
.onlinebooking-page .booking-demo-help,
.onlinebooking-page .booking-benefit p,
.onlinebooking-page .calendar-benefit p,
.onlinebooking-page .feature-page-points li,
.onlinebooking-page .related-feature-wide-copy small,
.onlinebooking-page .footer-copy,
.onlinebooking-page .footer-note {
  color: #263447;
}

.onlinebooking-page .lead,
.onlinebooking-page .section-copy {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.68;
}

.onlinebooking-page .booking-benefit p,
.onlinebooking-page .calendar-benefit p {
  font-weight: 500;
}

.onlinebooking-page .booking-copy h2,
.onlinebooking-page .calendar-copy h2,
.onlinebooking-page .feature-page-copy h2,
.onlinebooking-page .final-cta h2 {
  letter-spacing: -0.034em;
  line-height: 1.03;
}

.onlinebooking-flow-section,
.customer-flow-section,
.finance-flow-section,
.inventory-flow-section,
.operations-flow-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(520px, 46vw, 640px);
  padding: 0;
  background: #fff;
}

.booking-flow-split__media {
  position: relative;
  overflow: hidden;
  background: #eef2f7;
}

.booking-flow-split__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0.72) 82%, #fff 100%);
  content: "";
  pointer-events: none;
}

.booking-flow-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 52%;
}

.booking-flow-split__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(52px, 7vw, 96px) max(clamp(24px, 6vw, 96px), calc((100vw - var(--container)) / 2)) clamp(52px, 7vw, 96px) clamp(30px, 5vw, 76px);
  background:
    radial-gradient(circle at 88% 22%, rgba(79, 70, 229, 0.07), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), #fff 34%);
}

.onlinebooking-flow-copy {
  max-width: 650px;
}

.onlinebooking-flow-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.15rem, 4.1vw, 4.2rem);
  font-weight: 850;
  letter-spacing: -0.034em;
  line-height: 1.02;
  text-wrap: balance;
}

.onlinebooking-flow-copy .section-copy {
  max-width: 610px;
  color: #1f2d3f;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.onlinebooking-flow-copy .cta-row {
  margin-top: 26px;
}

.onlinebooking-page .related-feature-wide-cta .related-feature-wide-copy small {
  color: rgba(241, 245, 249, 0.86);
}

.onlinebooking-page .related-feature-wide-cta .related-feature-cta {
  color: rgba(255, 255, 255, 0.94);
}

.customer-page .onlinebooking-hero-heading h1,
.finance-page .onlinebooking-hero-heading h1,
.inventory-page .onlinebooking-hero-heading h1,
.operations-page .onlinebooking-hero-heading h1 {
  max-width: 1010px;
  font-size: clamp(2.9rem, 5.6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.customer-page .onlinebooking-hero-heading .text-gradient,
.customer-page h2 .text-gradient,
.finance-page .onlinebooking-hero-heading .text-gradient,
.finance-page h2 .text-gradient,
.inventory-page .onlinebooking-hero-heading .text-gradient,
.inventory-page h2 .text-gradient,
.operations-page .onlinebooking-hero-heading .text-gradient,
.operations-page h2 .text-gradient {
  display: inline-block;
  padding-bottom: 0.06em;
}

.customer-page .onlinebooking-hero-bottom .lead,
.customer-page .feature-page-section .section-copy,
.customer-page .final-cta .section-copy,
.finance-page .onlinebooking-hero-bottom .lead,
.finance-page .feature-page-section .section-copy,
.inventory-page .onlinebooking-hero-bottom .lead,
.inventory-page .feature-page-section .section-copy,
.inventory-page .feature-note-card,
.operations-page .onlinebooking-hero-bottom .lead,
.operations-page .feature-page-section .section-copy {
  color: #263447;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.68;
}

.customer-page .feature-page-points li,
.finance-page .feature-page-points li,
.inventory-page .feature-page-points li,
.operations-page .feature-page-points li {
  color: #263447;
}

.customer-page .feature-page-copy h2,
.customer-page .no-show-copy h2,
.customer-page .final-cta h2,
.finance-page .feature-page-copy h2,
.inventory-page .feature-page-copy h2,
.operations-page .feature-page-copy h2 {
  letter-spacing: -0.034em;
  line-height: 1.03;
}

.finance-page #verrechnen .feature-page-copy h2 .text-gradient {
  line-height: 1.14;
  margin-bottom: -0.07em;
  padding-bottom: 0.15em;
}

.inventory-page .onlinebooking-flow-copy h2 .text-gradient {
  line-height: 1.14;
  margin-bottom: -0.07em;
  padding-bottom: 0.15em;
}

.customer-page .final-cta {
  min-height: 0;
}

.customer-page .final-cta h2 {
  max-width: 830px;
}

.onlinebooking-hero-bottom .hero-actions {
  justify-content: flex-end;
}

.page-hero-visual {
  position: relative;
  min-width: 0;
  padding: clamp(10px, 2vw, 18px);
  isolation: isolate;
}

.page-hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 8% -3% 2% 8%;
  border-radius: 42px;
  background: radial-gradient(circle at 72% 22%, rgba(79, 70, 229, 0.18), transparent 40%), radial-gradient(circle at 18% 82%, rgba(14, 165, 233, 0.11), transparent 34%);
  content: "";
  filter: blur(22px);
}

.page-hero-screenshot {
  height: clamp(430px, 39vw, 590px);
  border-color: rgba(99, 102, 241, 0.24);
  box-shadow: rgba(15, 23, 42, 0.15) 0 34px 88px, rgba(79, 70, 229, 0.13) 0 14px 36px;
}

.page-hero-screenshot .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) saturate(1.04);
}

.hero-product-note {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 4;
  display: grid;
  max-width: 260px;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: rgba(15, 23, 42, 0.13) 0 18px 46px;
  backdrop-filter: blur(14px);
}

.hero-product-note span {
  color: var(--color-primary);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-product-note strong {
  color: var(--color-text);
  font-size: 0.88rem;
  line-height: 1.25;
}

.feature-page-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.feature-page-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
}

.feature-page-grid-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.84fr);
}

.feature-page-copy {
  max-width: 620px;
}

.feature-page-copy h2 {
  max-width: 620px;
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.feature-page-points {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-page-points li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-page-points li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(99, 102, 241, 0.34);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.72) 0 28%, rgba(99, 102, 241, 0.1) 30% 100%);
  content: "";
  transform: translateY(-50%);
}

.feature-page-points.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.feature-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}

.feature-page-visual {
  position: relative;
  min-width: 0;
}

.feature-page-visual::before,
.feature-connection-visual::before {
  position: absolute;
  z-index: 0;
  inset: 9% -5% 5% 6%;
  border-radius: 38px;
  background: radial-gradient(circle at 72% 20%, rgba(79, 70, 229, 0.16), transparent 38%), radial-gradient(circle at 20% 82%, rgba(14, 165, 233, 0.1), transparent 34%);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

.feature-page-screenshot {
  position: relative;
  z-index: 1;
  height: clamp(430px, 38vw, 560px);
  border-color: rgba(99, 102, 241, 0.24);
  box-shadow: rgba(15, 23, 42, 0.14) 0 30px 78px, rgba(79, 70, 229, 0.11) 0 14px 34px;
}

.feature-page-screenshot .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.07) saturate(1.03);
}

.operations-feature-hero .page-hero-screenshot .product-screenshot,
.operations-feature-screenshot .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  filter: contrast(1.07) saturate(1.03);
}

.operations-hero-screenshot,
.operations-feature-screenshot {
  background:
    radial-gradient(circle at 72% 18%, rgba(99, 102, 241, 0.09), transparent 34%),
    linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.operations-feature-screenshot {
  height: clamp(440px, 39vw, 590px);
}

.compact-feature-section .feature-page-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.compact-operations-screenshot {
  height: clamp(360px, 32vw, 500px);
}

.voucher-feature-visual {
  align-self: center;
  width: 100%;
}

.voucher-feature-screenshot {
  height: clamp(300px, 28vw, 430px);
}

.voucher-feature-screenshot .product-screenshot {
  object-fit: contain;
  object-position: center;
}

.inventory-alert-visual {
  align-self: center;
  max-width: 520px;
  width: 100%;
}

.inventory-alert-screenshot {
  height: clamp(280px, 26vw, 390px);
}

.inventory-alert-screenshot .product-screenshot {
  object-fit: contain;
  object-position: center;
}

.booking-config-section {
  background: radial-gradient(circle at 14% 18%, rgba(14, 165, 233, 0.06), transparent 32%), linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.booking-config-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.84fr);
}

.booking-config-screenshot {
  height: clamp(460px, 42vw, 620px);
}

.booking-config-screenshot .product-screenshot {
  object-fit: cover;
  object-position: center top;
}

.customer-feature-hero .page-hero-screenshot .product-screenshot,
.customer-feature-screenshot .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.07) saturate(1.03);
}

.customer-feature-screenshot {
  height: clamp(440px, 39vw, 590px);
}

.calm-screenshot {
  border-color: rgba(148, 163, 184, 0.34);
  box-shadow: rgba(15, 23, 42, 0.1) 0 24px 66px;
}

.customer-management-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 4.5vw, 72px);
}

.customer-management-grid .feature-page-copy {
  max-width: 520px;
}

.customer-management-grid .feature-page-visual {
  width: min(100%, 900px);
  justify-self: end;
}

.customer-management-grid .calm-screenshot {
  height: clamp(460px, 40vw, 620px);
}

.customer-management-grid .calm-screenshot .product-screenshot {
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.customer-reactivation-section {
  background: radial-gradient(circle at 86% 22%, rgba(79, 70, 229, 0.07), transparent 32%), linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.related-feature-section {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 5.5vw, 64px) 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(129, 140, 248, 0.2), transparent 30%),
    radial-gradient(circle at 86% 76%, rgba(14, 165, 233, 0.14), transparent 34%),
    linear-gradient(135deg, #081223 0%, #111a35 46%, #172554 100%);
}

.related-feature-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(24px, 3.5vw, 46px);
  padding: clamp(24px, 3.4vw, 36px);
  border: 1px solid rgba(199, 210, 254, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(15, 23, 42, 0.54);
  box-shadow: rgba(2, 6, 23, 0.36) 0 36px 100px, rgba(79, 70, 229, 0.18) 0 16px 52px;
  backdrop-filter: blur(18px);
}

.related-feature-copy .section-kicker {
  color: #a5b4fc;
}

.related-feature-copy h2 {
  max-width: 470px;
  color: #fff;
  text-wrap: balance;
}

.related-feature-copy .section-copy {
  max-width: 520px;
  color: rgba(226, 232, 240, 0.76);
}

.related-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-feature-actions {
  grid-column: 2;
  display: grid;
  gap: 12px;
  align-self: center;
  min-width: 0;
}

.related-feature-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-template-areas:
    "icon copy"
    "icon cta";
  align-items: center;
  gap: 5px 14px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(199, 210, 254, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at right top, rgba(129, 140, 248, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.075);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.related-feature-card:hover {
  border-color: rgba(199, 210, 254, 0.42);
  background:
    radial-gradient(circle at right top, rgba(129, 140, 248, 0.24), transparent 48%),
    rgba(255, 255, 255, 0.12);
  box-shadow: rgba(2, 6, 23, 0.28) 0 24px 62px, rgba(129, 140, 248, 0.18) 0 12px 34px;
  transform: translateY(-4px);
}

.related-feature-card:focus-visible {
  outline: 3px solid rgba(165, 180, 252, 0.54);
  outline-offset: 3px;
}

.related-feature-card .feature-hub-icon {
  grid-area: icon;
  width: 44px;
  height: 44px;
  border-color: rgba(199, 210, 254, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #c7d2fe;
  box-shadow: rgba(2, 6, 23, 0.16) 0 12px 30px;
}

.related-feature-card:hover .feature-hub-icon {
  border-color: rgba(199, 210, 254, 0.44);
  background: rgba(238, 242, 255, 0.16);
  color: #fff;
}

.related-feature-card-copy {
  grid-area: copy;
  display: grid;
  min-width: 0;
}

.related-feature-card strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.18;
}

.related-feature-card small {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.84rem;
  line-height: 1.38;
}

.related-feature-cta {
  grid-area: cta;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #c7d2fe;
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
}

.related-feature-cta::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.related-feature-card:hover .related-feature-cta {
  color: #fff;
}

.related-feature-card:hover .related-feature-cta::after {
  transform: translateX(3px);
}

.related-feature-wide-cta {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(199, 210, 254, 0.26);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(129, 140, 248, 0.18), rgba(14, 165, 233, 0.1)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  box-shadow: rgba(2, 6, 23, 0.14) 0 14px 34px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.related-feature-wide-cta:hover {
  border-color: rgba(199, 210, 254, 0.48);
  background:
    linear-gradient(135deg, rgba(129, 140, 248, 0.24), rgba(14, 165, 233, 0.14)),
    rgba(255, 255, 255, 0.12);
  box-shadow: rgba(2, 6, 23, 0.22) 0 18px 46px, rgba(129, 140, 248, 0.14) 0 10px 28px;
  transform: translateY(-2px);
}

.related-feature-wide-cta:focus-visible {
  outline: 3px solid rgba(165, 180, 252, 0.54);
  outline-offset: 3px;
}

.related-feature-wide-cta .feature-hub-icon {
  width: 46px;
  height: 46px;
  border-color: rgba(199, 210, 254, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #dbeafe;
}

.related-feature-wide-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.related-feature-wide-copy strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.related-feature-wide-copy small {
  color: rgba(226, 232, 240, 0.74);
  font-size: 0.84rem;
  line-height: 1.3;
}

.related-feature-wide-cta .related-feature-cta {
  grid-area: auto;
  align-self: center;
}

.related-feature-wide-cta:hover .related-feature-cta {
  color: #fff;
}

.related-feature-wide-cta:hover .related-feature-cta::after {
  transform: translateX(3px);
}

.finance-feature-hero .page-hero-screenshot .product-screenshot,
.finance-feature-screenshot .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  filter: contrast(1.07) saturate(1.03);
}

.finance-hero-screenshot {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.finance-feature-screenshot {
  height: clamp(450px, 39vw, 600px);
  background: #fff;
}

.tax-report-feature-section {
  background: radial-gradient(circle at 15% 22%, rgba(14, 165, 233, 0.055), transparent 32%), linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.tax-report-feature-screenshot {
  padding-bottom: 18px;
}

.tax-report-feature-screenshot .product-screenshot {
  object-fit: contain;
  background: #f8fafc;
}

.finance-accounts-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.finance-accounts-grid .feature-page-copy {
  max-width: 560px;
}

.finance-accounts-screenshot {
  height: clamp(460px, 40vw, 620px);
}

.finance-accounts-screenshot .product-screenshot {
  object-fit: contain;
  background: #fff;
}

.feature-note-card {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 14px;
  background: radial-gradient(circle at right top, rgba(99, 102, 241, 0.09), transparent 42%), rgba(255, 255, 255, 0.86);
  box-shadow: rgba(15, 23, 42, 0.06) 0 16px 42px;
}

.feature-note-card span {
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-note-card strong {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.feature-connection-section {
  position: relative;
  background: radial-gradient(circle at 72% 36%, rgba(79, 70, 229, 0.075), transparent 34%), linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.feature-connection-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: rgba(15, 23, 42, 0.08) 0 24px 70px;
}

.feature-connection-visual {
  position: relative;
  min-width: 0;
  min-height: clamp(390px, 36vw, 520px);
}

.feature-connection-screen {
  position: relative;
  z-index: 1;
  height: clamp(360px, 32vw, 500px);
  border-color: rgba(99, 102, 241, 0.24);
  box-shadow: rgba(15, 23, 42, 0.14) 0 26px 72px;
}

.feature-connection-screen .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.07) saturate(1.03);
}

.phone-preview {
  position: absolute;
  z-index: 3;
  right: clamp(10px, 3vw, 34px);
  bottom: clamp(-18px, -1vw, -8px);
  width: min(28%, 178px);
  min-width: 136px;
  aspect-ratio: 9 / 18.5;
  padding: 7px;
  border-color: rgba(99, 102, 241, 0.28);
  border-radius: 24px;
  background: #0f172a;
  box-shadow: rgba(15, 23, 42, 0.2) 0 22px 56px, rgba(79, 70, 229, 0.16) 0 10px 28px;
}

.phone-preview .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 17px;
  object-fit: cover;
  object-position: top center;
}

.phone-preview .screenshot-fallback {
  display: grid;
  height: 100%;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(180deg, #fff 0%, #eef2ff 100%);
  color: var(--color-text);
  text-align: center;
}

.phone-preview .screenshot-fallback span {
  color: var(--color-muted);
  font-size: 0.75rem;
}

.feature-hub-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 10px 13px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.feature-hub-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.feature-hub-card:hover .feature-hub-link,
.feature-hub-card:focus-visible .feature-hub-link {
  border-color: rgba(99, 102, 241, 0.34);
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.feature-hub-card:hover .feature-hub-link span,
.feature-hub-card:focus-visible .feature-hub-link span {
  transform: translateX(2px);
}

.feature-showcase {
  display: grid;
  gap: 18px;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 10%, rgba(99, 102, 241, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.88);
  box-shadow: rgba(15, 23, 42, 0.1) 0 34px 92px, rgba(79, 70, 229, 0.08) 0 14px 40px;
}

.feature-showcase-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.feature-showcase-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(203, 213, 225, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-showcase-tab:hover {
  border-color: rgba(99, 102, 241, 0.32);
  background: rgba(248, 250, 255, 0.96);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.feature-showcase-tab.is-active {
  border-color: rgba(99, 102, 241, 0.38);
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.98), rgba(255, 255, 255, 0.88));
  color: var(--color-primary-dark);
  box-shadow: rgba(79, 70, 229, 0.12) 0 14px 34px;
}

.feature-showcase-tab:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.28);
  outline-offset: 3px;
}

.feature-showcase-tab .feature-hub-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.feature-showcase-tab .feature-hub-icon .icon-svg {
  width: 18px;
  height: 18px;
}

.feature-showcase-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  min-height: clamp(540px, 48vw, 660px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(203, 213, 225, 0.64);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9)),
    #fff;
}

.feature-showcase-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.feature-showcase-copy h3 {
  max-width: 650px;
  color: var(--color-text);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.feature-showcase-copy > p {
  max-width: 610px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}

.feature-showcase-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.feature-showcase-list li {
  position: relative;
  padding-left: 25px;
  color: rgb(51, 65, 85);
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.45;
}

.feature-showcase-list li::before {
  position: absolute;
  top: 0.58em;
  left: 2px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(79, 70, 229, 0.42);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  content: "";
}

.feature-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 8px;
}

.feature-showcase-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.feature-showcase-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(430px, 38vw, 590px);
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow: rgba(15, 23, 42, 0.16) 0 30px 80px, rgba(79, 70, 229, 0.12) 0 12px 34px;
}

.feature-showcase-screen.browser-frame {
  padding: 34px 5px 5px;
}

.feature-showcase-screen.browser-frame::before {
  height: 29px;
}

.feature-showcase-screen.browser-frame::after {
  top: 10px;
  left: 13px;
}

.feature-showcase-screen .product-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  filter: contrast(1.08) saturate(1.04);
}

.feature-showcase-screen.is-changing {
  opacity: 0.55;
}

.feature-showcase-fallback {
  display: grid;
  min-height: 100%;
  place-content: center;
  gap: 12px;
  text-align: center;
}

.feature-showcase-note {
  position: absolute;
  z-index: 4;
  right: clamp(10px, 2vw, 24px);
  bottom: clamp(10px, 2vw, 24px);
  max-width: min(280px, 64%);
  padding: 14px 16px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: rgba(15, 23, 42, 0.13) 0 20px 54px;
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.feature-showcase-note span {
  display: block;
  color: var(--color-primary);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-showcase-note strong {
  display: block;
  margin-top: 5px;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.origin-teaser-section {
  padding-top: var(--section-padding-md);
  padding-bottom: var(--section-padding-md);
}

.origin-teaser-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 20%, rgba(79, 70, 229, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(248, 250, 255, 0.96), rgba(255, 255, 255, 0.92));
  box-shadow: rgba(15, 23, 42, 0.08) 0 28px 80px;
}

.origin-teaser-panel h2 {
  max-width: 760px;
  color: var(--color-text);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.origin-teaser-panel .section-copy {
  max-width: 780px;
}

.faq-grid-compact {
  max-width: 980px;
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .feature-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-showcase-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-showcase-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-showcase-screen {
    height: clamp(390px, 58vw, 540px);
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .onlinebooking-hero-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .onlinebooking-hero-bottom .hero-actions {
    justify-content: center;
  }

  .onlinebooking-hero-visual .page-hero-screenshot {
    height: clamp(420px, 66vw, 620px);
  }

  .feature-page-grid,
  .feature-page-grid-reverse,
  .customer-management-grid,
  .finance-accounts-grid,
  .feature-connection-panel,
  .related-feature-panel {
    grid-template-columns: 1fr;
  }

  .customer-management-grid .feature-page-copy,
  .customer-management-grid .feature-page-visual,
  .finance-accounts-grid .feature-page-copy {
    max-width: none;
  }

  .customer-management-grid .feature-page-visual {
    width: 100%;
    justify-self: stretch;
  }

  .feature-page-grid-reverse .feature-page-visual {
    order: 2;
  }

  .feature-page-grid-reverse .feature-page-copy {
    order: 1;
  }

  .feature-page-screenshot,
  .feature-connection-screen,
  .customer-feature-screenshot,
  .finance-feature-screenshot {
    height: clamp(360px, 58vw, 500px);
  }

  .operations-feature-screenshot {
    height: clamp(360px, 58vw, 500px);
  }

  .voucher-feature-screenshot {
    height: clamp(290px, 52vw, 410px);
  }

  .inventory-alert-visual {
    max-width: none;
  }

  .inventory-alert-screenshot {
    height: clamp(280px, 52vw, 380px);
  }

  .compact-feature-section .feature-page-grid {
    grid-template-columns: 1fr;
  }

  .related-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-screenshot {
    height: clamp(350px, 58vw, 500px);
  }

  .hero-product-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .feature-connection-visual {
    min-height: clamp(380px, 62vw, 540px);
  }
}

@media (max-width: 760px) {
  .page-hero-section {
    padding-top: 86px;
  }

  .feature-hub-grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase {
    padding: 10px;
    border-radius: 20px;
  }

  .feature-showcase-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-showcase-tab {
    min-height: 54px;
    padding: 9px;
  }

  .feature-showcase-panel {
    gap: 22px;
    padding: 18px;
    border-radius: 17px;
  }

  .feature-showcase-copy h3 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .feature-showcase-list li {
    font-size: 0.9rem;
  }

  .feature-showcase-actions .btn {
    width: 100%;
  }

  .feature-showcase-screen {
    height: clamp(300px, 82vw, 380px);
  }

  .feature-showcase-note {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .feature-hub-card {
    min-height: 0;
  }

  .origin-teaser-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .origin-teaser-panel .btn {
    width: 100%;
  }

  .feature-page-points.compact {
    grid-template-columns: 1fr;
  }

  .feature-page-screenshot,
  .feature-connection-screen,
  .customer-feature-screenshot,
  .finance-feature-screenshot {
    height: clamp(300px, 82vw, 420px);
  }

  .operations-feature-screenshot {
    height: clamp(300px, 82vw, 420px);
  }

  .voucher-feature-screenshot {
    height: clamp(250px, 72vw, 340px);
  }

  .inventory-alert-screenshot {
    height: clamp(240px, 70vw, 340px);
  }

  .compact-operations-screenshot {
    height: clamp(280px, 76vw, 380px);
  }

  .related-feature-panel {
    padding: 20px 14px;
    border-radius: 20px;
    row-gap: 8px;
  }

  .related-feature-actions {
    grid-column: 1;
    gap: 10px;
  }

  .related-feature-grid {
    grid-template-columns: 1fr;
  }

  .related-feature-card {
    grid-template-columns: 42px 1fr;
    min-height: 0;
    padding: 14px;
  }

  .related-feature-card .feature-hub-icon {
    width: 42px;
    height: 42px;
  }

  .related-feature-cta {
    grid-column: 2;
  }

  .related-feature-wide-cta {
    grid-template-columns: 42px 1fr;
    margin-top: 0;
    padding: 14px;
  }

  .related-feature-wide-cta .feature-hub-icon {
    width: 42px;
    height: 42px;
  }

  .related-feature-wide-cta .related-feature-cta {
    grid-area: auto;
    grid-column: 2;
  }

  .page-hero-visual {
    padding: 6px 0 0;
  }

  .onlinebooking-hero {
    padding-top: 88px;
  }

  .onlinebooking-hero-layout {
    gap: 22px;
  }

  .onlinebooking-hero-heading {
    justify-items: start;
    text-align: left;
  }

  .onlinebooking-hero-heading h1 {
    font-size: clamp(2.45rem, 11vw, 3.9rem);
    line-height: 1.04;
    letter-spacing: -0.032em;
  }

  .onlinebooking-hero-bottom {
    justify-items: start;
    text-align: left;
  }

  .onlinebooking-flow-section,
  .customer-flow-section,
  .finance-flow-section,
  .inventory-flow-section,
  .operations-flow-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .booking-flow-split__media {
    min-height: clamp(200px, 52vw, 300px);
  }

  .booking-flow-split__media::after {
    background: linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.7) 82%, #fff 100%);
  }

  .booking-flow-split__content {
    padding: 28px var(--container-padding) 40px;
    background: #fff;
  }

  .onlinebooking-flow-copy .cta-row,
  .onlinebooking-flow-copy .btn {
    width: 100%;
  }

  .onlinebooking-hero-bottom .hero-actions,
  .onlinebooking-hero-bottom .btn {
    width: 100%;
  }

  .onlinebooking-hero-visual .page-hero-screenshot,
  .booking-config-screenshot {
    height: clamp(280px, 82vw, 390px);
  }

  .feature-connection-panel {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .feature-connection-visual {
    min-height: auto;
    padding-bottom: 132px;
  }

  .phone-preview {
    right: 16px;
    bottom: 0;
    width: 132px;
    min-width: 132px;
  }
}

.why-card-icon .icon-svg {
  width: 21px;
  height: 21px;
}

.outcome-signal .icon-svg {
  width: 20px;
  height: 20px;
}

.platform-group i,
.workflow-step-icon {
  padding: 0;
}

.badge-icon {
  width: 28px;
  min-width: 28px;
  padding: 3px;
}

.badge-icon .icon-svg {
  width: 15px;
  height: 15px;
}

.no-show-action-icon .icon-svg,
.system-warning > span .icon-svg {
  width: 16px;
  height: 16px;
}

.system-warning > span {
  font-size: 1rem;
}

/* Final icon polish: keep outline SVGs centred and prevent stroke clipping across marketing pages. */
.nav-mega-icon,
.trust-icon,
.badge-icon,
.platform-group i,
.workflow-step-icon,
.dashboard-benefit-icon,
.calendar-benefit-icon,
.finance-benefit-icon,
.working-hours-benefit-icon,
.booking-benefit-icon,
.why-card-icon,
.fit-panel-icon,
.outcome-signal,
.no-show-action-icon,
.system-warning > span,
.why-tool-icon,
.why-platform-groups i,
.why-benefit-pills i,
.feature-mini-icon,
.feature-hub-icon {
  align-items: center;
  justify-content: center;
  overflow: visible;
  line-height: 0;
}

.nav-mega-icon .icon-svg,
.trust-icon .icon-svg,
.badge-icon .icon-svg,
.platform-group i .icon-svg,
.workflow-step-icon .icon-svg,
.dashboard-benefit-icon .icon-svg,
.calendar-benefit-icon .icon-svg,
.finance-benefit-icon .icon-svg,
.working-hours-benefit-icon .icon-svg,
.booking-benefit-icon .icon-svg,
.why-card-icon .icon-svg,
.fit-panel-icon .icon-svg,
.outcome-signal .icon-svg,
.no-show-action-icon .icon-svg,
.system-warning > span .icon-svg,
.why-tool-icon .icon-svg,
.why-platform-groups i .icon-svg,
.why-benefit-pills i .icon-svg,
.feature-mini-icon .icon-svg,
.feature-hub-icon .icon-svg {
  display: block;
  flex: 0 0 auto;
  max-width: none;
  overflow: visible;
}

/* Pilotprogramm refresh */
.pilot-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(79, 70, 229, 0.09), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(20, 184, 166, 0.07), transparent 28%),
    #fff;
}

.pilot-page .text-gradient {
  display: inline-block;
  padding-bottom: 0.07em;
  line-height: 1.08;
}

.pilot-page .lead,
.pilot-page .section-copy,
.pilot-page p,
.pilot-page li {
  color: #263447;
}

.pilot-page .section-kicker {
  color: var(--color-primary);
}

.pilot-hero-modern {
  padding: clamp(82px, 10vw, 128px) 0 clamp(70px, 8vw, 104px);
  background:
    radial-gradient(circle at 18% 12%, rgba(79, 70, 229, 0.12), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(20, 184, 166, 0.1), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.pilot-hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 82px);
  align-items: center;
}

.pilot-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.55rem, 4.4vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: 0.006em;
}

.pilot-hero-copy .lead {
  max-width: 610px;
  margin: 26px 0 0;
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
  line-height: 1.62;
}

.pilot-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pilot-hero-badges span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #243044;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: rgba(15, 23, 42, 0.05) 0 12px 28px;
}

.pilot-hero-media {
  position: relative;
  min-height: clamp(430px, 48vw, 680px);
  margin: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(20, 184, 166, 0.08));
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.pilot-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), transparent 36%),
    radial-gradient(circle at 82% 16%, rgba(79, 70, 229, 0.13), transparent 28%);
  pointer-events: none;
  content: "";
}

.pilot-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pilot-hero-media figcaption {
  position: absolute;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 2;
  display: grid;
  gap: 5px;
  max-width: min(420px, calc(100% - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(16px);
}

.pilot-hero-media figcaption strong {
  color: #0f172a;
  font-size: 0.98rem;
}

.pilot-hero-media figcaption span {
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.45;
}

.pilot-info-card {
  display: grid;
}

.pilot-section-intro {
  max-width: 980px;
}

.pilot-number-grid,
.pilot-info-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pilot-number-card,
.pilot-info-card,
.pilot-step-card,
.pilot-fit-card,
.pilot-story-item,
.pilot-form-note-card {
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfcff);
  box-shadow: rgba(15, 23, 42, 0.06) 0 16px 38px;
}

.pilot-number-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
}

.pilot-number-card span,
.pilot-step-card span,
.pilot-story-item span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.13), rgba(20, 184, 166, 0.12));
  color: #4338ca;
  font-weight: 950;
}

.pilot-number-card h3,
.pilot-info-card h3,
.pilot-step-card h3,
.pilot-fit-card h2,
.pilot-story-item h3 {
  margin: 0;
  color: #0f172a;
}

.pilot-number-card p,
.pilot-info-card p,
.pilot-step-card p,
.pilot-story-item p {
  margin: 0;
  color: #334155;
  line-height: 1.58;
}

.pilot-dark-section {
  position: relative;
  padding: clamp(74px, 9vw, 118px) 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(20, 184, 166, 0.18), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(129, 140, 248, 0.22), transparent 34%),
    linear-gradient(135deg, #08111f 0%, #111936 54%, #07121f 100%);
  color: #fff;
  overflow: hidden;
}

.pilot-dark-section .section-kicker,
.pilot-dark-section h2 {
  color: #fff;
}

.pilot-dark-section .section-copy {
  color: rgba(226, 232, 240, 0.82);
}

.pilot-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pilot-dark-card {
  display: grid;
  gap: 12px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: rgba(0, 0, 0, 0.18) 0 18px 44px;
}

.pilot-dark-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.2);
  color: #a7f3d0;
  font-size: 0.78rem;
  font-weight: 950;
}

.pilot-dark-card h3,
.pilot-dark-card p {
  margin: 0;
}

.pilot-dark-card h3 {
  color: #fff;
}

.pilot-dark-card p {
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.58;
}

.pilot-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pilot-fit-card {
  padding: clamp(28px, 4vw, 44px);
}

.pilot-fit-card--good {
  border-color: rgba(20, 184, 166, 0.2);
  background:
    radial-gradient(circle at right top, rgba(20, 184, 166, 0.12), transparent 32%),
    linear-gradient(180deg, #fff, #f7fcfb);
}

.pilot-fit-card .bullet-list {
  margin-top: 22px;
}

.pilot-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pilot-step-card {
  display: grid;
  gap: 15px;
  min-height: 220px;
  padding: 24px;
}

.pilot-info-card {
  padding: 24px;
}

.pilot-info-card p {
  margin-top: 12px;
}

.pilot-story-section {
  padding: clamp(78px, 9vw, 116px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(79, 70, 229, 0.08), transparent 30%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.pilot-story-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pilot-story-timeline::before {
  position: absolute;
  top: 46px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.22), rgba(20, 184, 166, 0.34));
  content: "";
}

.pilot-story-item {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.pilot-form-section {
  padding: clamp(78px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(79, 70, 229, 0.11), transparent 30%),
    linear-gradient(180deg, #fff, #f7faff);
}

.pilot-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.pilot-form-copy {
  position: sticky;
  top: 110px;
}

.pilot-form-copy h2,
.pilot-final-panel h2 {
  max-width: 720px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0.006em;
}

.pilot-form-note-card {
  display: grid;
  gap: 7px;
  max-width: 440px;
  margin-top: 28px;
  padding: 18px;
  border-color: rgba(20, 184, 166, 0.2);
  background: linear-gradient(180deg, #fff, #f6fcfb);
}

.pilot-form-note-card strong {
  color: #0f172a;
}

.pilot-form-note-card span {
  color: #334155;
  line-height: 1.52;
}

.pilot-page .pilot-form-card {
  padding: clamp(24px, 4vw, 36px);
  border-color: rgba(79, 70, 229, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at right top, rgba(79, 70, 229, 0.08), transparent 34%),
    #fff;
  box-shadow: rgba(15, 23, 42, 0.11) 0 24px 72px;
}

.pilot-page .field label,
.pilot-page .field-full label {
  color: #132033;
  font-weight: 850;
}

.pilot-page input,
.pilot-page textarea {
  color: #0f172a;
}

.pilot-choice-field {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.pilot-choice-field legend {
  margin: 0;
  padding: 0;
  color: #132033;
  font-size: 0.92rem;
  font-weight: 850;
}

.pilot-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pilot-choice-grid label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(203, 213, 225, 0.86);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: #243044;
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color 160ms, background 160ms, box-shadow 160ms;
}

.pilot-choice-grid label:hover {
  border-color: rgba(79, 70, 229, 0.28);
  background: rgba(248, 250, 255, 0.96);
  box-shadow: rgba(79, 70, 229, 0.08) 0 10px 26px;
}

.pilot-choice-grid input {
  width: 17px;
  min-width: 17px;
  min-height: 17px;
  padding: 0;
  accent-color: #4f46e5;
}

.pilot-faq-section .faq-grid {
  max-width: 1080px;
  margin: 0 auto;
}

.pilot-final-section {
  padding: clamp(72px, 9vw, 112px) 0 clamp(80px, 9vw, 118px);
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.09), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(79, 70, 229, 0.11), transparent 32%),
    #fff;
}

.pilot-final-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.pilot-final-panel .section-copy {
  max-width: 700px;
  margin: 22px auto 0;
  color: #263447;
}

.pilot-final-panel .cta-row {
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .pilot-number-grid,
  .pilot-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pilot-story-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pilot-story-timeline::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .pilot-hero-grid,
  .pilot-form-grid,
  .pilot-fit-grid {
    grid-template-columns: 1fr;
  }

  .pilot-hero-media {
    min-height: clamp(320px, 64vw, 520px);
  }

  .pilot-form-copy {
    position: static;
  }

  .pilot-dark-grid,
  .pilot-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pilot-hero-modern {
    padding-top: 64px;
  }

  .pilot-hero-copy h1,
  .pilot-form-copy h2,
  .pilot-final-panel h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
    line-height: 1.04;
  }

  .pilot-number-grid,
  .pilot-info-grid,
  .pilot-story-timeline {
    grid-template-columns: 1fr;
  }

  .pilot-hero-badges,
  .pilot-final-panel .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pilot-choice-grid {
    grid-template-columns: 1fr;
  }

  .pilot-hero-badges span {
    justify-content: center;
  }

  .pilot-hero-media figcaption {
    position: static;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: none;
  }
}
