:root {
  --navy-950: #050b18;
  --navy-900: #07142e;
  --navy-850: #0a1b3d;
  --navy-800: #0d2249;
  --ink: #14213b;
  --text: #27354f;
  --muted: #68758b;
  --blue: #245bff;
  --blue-dark: #1746d7;
  --blue-soft: #e9efff;
  --orange: #ff6b20;
  --green: #159260;
  --surface: #f3f6fa;
  --surface-2: #eaf0f7;
  --white: #fff;
  --line: #dbe3ee;
  --line-dark: rgba(255,255,255,.12);
  --shadow-window: 0 42px 100px rgba(2, 10, 28, .28);
  --shadow-soft: 0 22px 70px rgba(15, 35, 72, .1);
  --radius: 20px;
  --wrap: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wrap { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
.section { padding: 132px 0; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 12px 16px; color: white; border-radius: 8px; background: var(--blue); }
.skip-link:focus { top: 16px; }
[id] { scroll-margin-top: 90px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow-on-dark { color: #9bb5ff; }
.section-copy h2,
.feature-copy h2,
.workspace-head h2,
.reports-head h2,
.studio-title h2,
.setup-head h2,
.pricing-head h2,
.faq-intro h2,
.closing-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: 1.03;
  letter-spacing: -.048em;
}
.section-copy > p:not(.eyebrow),
.feature-copy > p:not(.eyebrow),
.workspace-head > p,
.reports-head > p,
.studio-title > p,
.setup-head > p:not(.eyebrow),
.pricing-head > div > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow),
.closing-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--blue-dark); font-size: 16px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 15px 35px rgba(36, 91, 255, .28); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 18px 44px rgba(36, 91, 255, .35); }
.button-ghost { color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.button-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.1); }
.button-outline { color: var(--ink); border-color: #cbd5e4; background: white; box-shadow: none; }
.button-outline:hover { border-color: var(--blue); color: var(--blue-dark); }
.button-compact { min-height: 44px; padding: 0 18px; font-size: 14px; border-radius: 10px; }

/* Navigation */
.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: 82px;
  color: var(--ink);
  border-bottom: 1px solid rgba(16,34,73,.1);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  transition: height .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { height: 72px; background: rgba(255,255,255,.98); box-shadow: 0 12px 40px rgba(3,10,24,.12); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { position: relative; width: 224px; display: inline-flex; flex-direction: column; align-items: flex-start; flex: 0 0 auto; color: var(--ink); line-height: 1; }
.brand-image { width: 224px; height: auto; display: block; }
.brand-word { position: relative; z-index: 1; font-size: 24px; font-weight: 900; letter-spacing: -.05em; }
.brand-word > span { color: #dce6ff; }
.brand-line { position: absolute; left: 1px; top: 23px; width: 80px; height: 9px; overflow: hidden; }
.brand-line::before, .brand-line::after { content: ""; position: absolute; height: 2px; border-radius: 999px; background: var(--orange); transform: rotate(-8deg); }
.brand-line::before { width: 66px; left: 1px; top: 2px; }
.brand-line::after { width: 48px; left: 17px; top: 6px; opacity: .72; }
.brand-line i { position: absolute; left: 4px; top: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.brand small { margin-top: 10px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 31px; margin-left: auto; }
.desktop-nav a, .nav-login { position: relative; color: #536078; font-size: 14px; font-weight: 750; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--blue); transition: right .2s ease; }
.desktop-nav a:hover, .nav-login:hover { color: var(--blue-dark); }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.menu-button { width: 44px; height: 44px; display: none; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); cursor: pointer; }
.menu-button span { width: 21px; height: 2px; display: block; margin: 4px auto; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  z-index: 199;
  inset: 82px 16px auto;
  max-height: calc(100vh - 100px);
  overflow: auto;
  display: none;
  padding: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-window);
}
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 14px 16px; border-radius: 10px; font-size: 16px; font-weight: 750; }
.mobile-nav a:hover { color: var(--blue); background: var(--surface); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 172px 0 112px; color: white; background: var(--navy-900); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero-orbit { position: absolute; width: 780px; height: 780px; right: -260px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(36,91,255,.36), rgba(36,91,255,0) 68%); filter: blur(10px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 5fr 7fr; align-items: center; gap: 70px; }
.hero-copy h1 { max-width: 640px; margin: 0; font-size: clamp(52px, 5.6vw, 78px); line-height: .98; letter-spacing: -.058em; }
.hero-copy h1 > span { display: block; color: #adc1ff; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 19px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 31px 0 0; padding: 0; list-style: none; }
.hero-trust li { position: relative; padding-left: 21px; color: rgba(255,255,255,.64); font-size: 13px; font-weight: 650; }
.hero-trust li::before { content: "✓"; position: absolute; left: 0; color: #74d6aa; font-weight: 900; }
.hero-product { position: relative; min-width: 0; }
.hero-product .product-window { animation: heroFloat 7s ease-in-out infinite; }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.product-window { overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 20px; background: #eef2f8; box-shadow: var(--shadow-window); }
.window-bar { height: 56px; display: grid; grid-template-columns: 70px 1fr 40px; align-items: center; gap: 14px; padding: 0 17px; color: var(--muted); border-bottom: 1px solid #d8e0eb; background: white; }
.window-dots { display: flex; gap: 6px; }.window-dots i { width: 8px; height: 8px; display: block; border-radius: 50%; background: #d8dee8; }.window-dots i:first-child { background: #ff7b6f; }.window-dots i:nth-child(2) { background: #ffc55f; }.window-dots i:nth-child(3) { background: #4bcf88; }
.window-bar > span { justify-self: center; padding: 6px 34px; border-radius: 7px; background: #f3f6fa; font-size: 12px; }
.window-bar > b { width: 32px; height: 32px; display: grid; place-items: center; justify-self: end; color: white; border-radius: 9px; background: var(--orange); font-size: 11px; }
.product-content { display: grid; grid-template-columns: 64px minmax(0, 1fr); }
.product-sidebar { display: flex; flex-direction: column; align-items: center; gap: 20px; padding-top: 22px; background: var(--navy-850); }
.product-sidebar strong { width: 32px; height: 32px; display: grid; place-items: center; margin-bottom: 12px; color: white; border-radius: 9px; background: var(--blue); font-size: 11px; }
.product-sidebar i { width: 20px; height: 20px; display: block; border: 2px solid rgba(255,255,255,.28); border-radius: 6px; }
.product-sidebar i.active { border-color: #8ca7ff; background: rgba(36,91,255,.5); }
.product-screen { min-width: 0; display: flex; flex-direction: column; background: #f3f5f9; }
.product-screen > img { width: 100%; height: auto; display: block; object-fit: cover; object-position: left top; }
.product-screen > img.demo-stock-image { height: auto; object-fit: contain; object-position: center; }
.screen-summary { min-height: 100px; flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-top: 1px solid #dbe2ec; background: #dbe2ec; }
.screen-summary > span { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 16px; background: white; }
.screen-summary small { color: #7b8799; font-size: 12px; }
.screen-summary strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink); font-size: 15px; }
.screen-summary strong.positive { color: var(--green); }
.hero-caption { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 17px; color: rgba(255,255,255,.58); font-size: 13px; }
.hero-caption strong { color: white; }
.live-dot { width: 8px; height: 8px; margin-right: 2px; border-radius: 50%; background: #52d594; box-shadow: 0 0 0 6px rgba(82,213,148,.1); }
.hero-activity { position: absolute; z-index: 4; right: -26px; bottom: 54px; width: 258px; min-height: 74px; pointer-events: none; }
.hero-activity > span { position: absolute; inset: 0; display: grid; grid-template-columns: 34px 1fr; align-content: center; column-gap: 12px; padding: 13px 16px; color: var(--ink); border: 1px solid rgba(219,227,238,.95); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 18px 45px rgba(2,10,28,.25); opacity: 0; transform: translateY(12px) scale(.97); transition: opacity .35s ease, transform .35s ease; backdrop-filter: blur(14px); }
.hero-activity > span.active { opacity: 1; transform: none; }
.hero-activity i { width: 34px; height: 34px; display: grid; place-items: center; grid-row: 1 / 3; color: white; border-radius: 10px; background: var(--blue); font-size: 11px; font-style: normal; font-weight: 900; }
.hero-activity b { font-size: 13px; line-height: 1.2; }.hero-activity small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.swiss-strip { color: var(--text); border-bottom: 1px solid var(--line); background: white; }
.swiss-strip-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.swiss-strip strong { color: var(--ink); font-size: 14px; }
.swiss-strip span { position: relative; padding-left: 18px; color: var(--muted); font-size: 13px; white-space: nowrap; }
.swiss-strip span::before { content: ""; position: absolute; left: 0; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); transform: translateY(-50%); }

/* Portal tour */
.portal-section { overflow: hidden; background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%); }
.portal-head { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 90px; margin-bottom: 52px; }
.portal-head h2 { max-width: 720px; margin: 0; font-size: clamp(44px, 5vw, 68px); line-height: 1.02; letter-spacing: -.052em; }
.portal-head > p { max-width: 560px; margin: 0 0 7px; color: var(--muted); font-size: 18px; line-height: 1.72; }
.portal-tour { position: relative; }
.portal-tabs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 15px; }
.portal-tabs button { min-height: 64px; display: flex; align-items: center; gap: 12px; padding: 0 18px; color: #607087; border: 1px solid #d8e1ec; border-radius: 12px; background: rgba(255,255,255,.7); font-size: 14px; font-weight: 800; cursor: pointer; transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease; }
.portal-tabs button:hover { color: var(--blue-dark); border-color: #afc2ff; transform: translateY(-2px); }
.portal-tabs button.active { color: white; border-color: var(--navy-850); background: var(--navy-850); box-shadow: 0 14px 30px rgba(7,20,46,.16); }
.portal-tabs button span { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-dark); border-radius: 9px; background: var(--blue-soft); font-size: 11px; }
.portal-tabs button.active span { color: white; background: var(--blue); }
.portal-browser { position: relative; overflow: hidden; min-height: 650px; border: 1px solid #cfd9e6; border-radius: 24px; background: #f4f7fb; box-shadow: 0 38px 100px rgba(14,32,68,.17); }
.portal-browser-bar { height: 58px; display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 14px; padding: 0 20px; color: var(--muted); border-bottom: 1px solid #d9e1ec; background: white; }
.portal-browser-bar > span { justify-self: center; min-width: 230px; padding: 7px 28px; border-radius: 8px; background: #f2f5f9; font-size: 12px; text-align: center; }
.portal-browser-bar > small { padding: 6px 10px; color: var(--blue-dark); border-radius: 7px; background: var(--blue-soft); font-size: 11px; font-weight: 850; }
.portal-panel { min-height: 588px; display: grid; grid-template-columns: 70px minmax(0,1fr); animation: portalIn .42s ease both; }
.portal-panel[hidden] { display: none; }
@keyframes portalIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.portal-sidebar { display: flex; flex-direction: column; align-items: center; gap: 23px; padding-top: 25px; background: var(--navy-900); }
.portal-sidebar b { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 12px; color: white; border-radius: 11px; background: var(--blue); font-size: 12px; }
.portal-sidebar i { width: 21px; height: 21px; display: block; border: 2px solid rgba(255,255,255,.25); border-radius: 6px; }
.portal-sidebar i.active { border-color: #9ab1ff; background: rgba(36,91,255,.48); box-shadow: 0 0 0 5px rgba(36,91,255,.11); }
.portal-stock-screen, .portal-dossier-screen, .portal-documents-screen, .portal-service-screen { min-width: 0; padding: 27px 31px 30px; background: #f5f7fb; }
.portal-screen-title { min-height: 57px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.portal-screen-title > span { display: grid; gap: 4px; }.portal-screen-title small { color: #8290a4; font-size: 11px; font-weight: 850; letter-spacing: .08em; }.portal-screen-title strong { color: var(--ink); font-size: 25px; letter-spacing: -.035em; }
.portal-screen-title button { min-height: 38px; padding: 0 14px; color: white; border: 0; border-radius: 9px; background: var(--orange); font-size: 12px; font-weight: 850; }
.portal-screen-title em { padding: 7px 11px; color: var(--green); border-radius: 8px; background: #e6f7ef; font-size: 12px; font-style: normal; font-weight: 850; }
.portal-stock-screen > img { width: 100%; height: auto; display: block; object-fit: contain; object-position: center; border: 1px solid #dce4ef; border-radius: 14px; background: white; }
.portal-screen-caption { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 15px; padding: 17px 20px; border: 1px solid #dbe4ef; border-radius: 13px; background: white; }
.portal-screen-caption b { font-size: 15px; }.portal-screen-caption span { color: var(--muted); font-size: 13px; }
.dossier-layout { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: 230px 190px; gap: 16px; margin-top: 12px; }
.dossier-photo { position: relative; overflow: hidden; grid-row: 1 / 3; border-radius: 16px; background: var(--navy-900); }
.dossier-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }.dossier-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 40%; background: linear-gradient(transparent, rgba(5,11,24,.58)); }
.dossier-photo > span { position: absolute; z-index: 2; left: 17px; bottom: 16px; padding: 7px 10px; color: white; border-radius: 8px; background: rgba(7,20,46,.82); font-size: 12px; font-weight: 800; }
.dossier-summary, .dossier-card { display: flex; flex-direction: column; padding: 20px; border: 1px solid #dbe4ef; border-radius: 15px; background: white; }
.dossier-summary > small, .dossier-card > small { margin-bottom: 7px; color: #7e8ba0; font-size: 11px; font-weight: 850; letter-spacing: .07em; }
.dossier-summary > strong { margin-bottom: 15px; font-size: 25px; letter-spacing: -.04em; }.dossier-summary > span { display: flex; justify-content: space-between; gap: 15px; padding: 7px 0; color: var(--muted); border-top: 1px solid #edf1f6; font-size: 12px; }.dossier-summary > span b { color: var(--green); }
.dossier-card { display: grid; grid-template-columns: 1fr auto; align-content: start; gap: 8px 14px; }.dossier-card > small { grid-column: 1 / -1; }.dossier-card > b { font-size: 12px; }.dossier-card > span { color: var(--muted); font-size: 12px; text-align: right; }.dossier-card:last-child { display: flex; gap: 0; }.dossier-card:last-child > span { display: flex; align-items: center; gap: 9px; padding: 8px 0; color: var(--text); border-top: 1px solid #edf1f6; text-align: left; }.dossier-card:last-child i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.document-kpis, .service-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin: 13px 0 16px; }
.document-kpis > span, .service-kpis > span { min-height: 88px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 15px 17px; border: 1px solid #dbe4ef; border-radius: 13px; background: white; }.document-kpis small, .service-kpis small { color: var(--muted); font-size: 12px; }.document-kpis b, .service-kpis b { font-size: 18px; }
.portal-table { overflow: hidden; border: 1px solid #dbe4ef; border-radius: 14px; background: white; }
.portal-table > div { min-height: 67px; display: grid; grid-template-columns: 1.25fr 1fr .65fr .55fr; align-items: center; gap: 16px; padding: 0 18px; color: var(--muted); border-top: 1px solid #e8edf4; font-size: 12px; }.portal-table > div:first-child { border-top: 0; }
.portal-table .portal-table-head { min-height: 42px; color: #7f8ba0; background: #f7f9fc; font-size: 11px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.portal-table > div > span:first-child { display: flex; align-items: center; gap: 10px; color: var(--ink); }.portal-table i { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-dark); border-radius: 8px; background: var(--blue-soft); font-size: 10px; font-style: normal; font-weight: 900; }.portal-table em { justify-self: start; padding: 6px 8px; border-radius: 7px; font-size: 10px; font-style: normal; font-weight: 850; }.portal-table em.paid { color: var(--green); background: #e6f7ef; }.portal-table em.open { color: #b76a14; background: #fff2df; }
.service-board { display: grid; gap: 10px; }.service-board article { min-height: 78px; display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 17px; padding: 12px 17px; border: 1px solid #dbe4ef; border-radius: 13px; background: white; }.service-board article > span { color: var(--blue-dark); font-size: 14px; font-weight: 900; }.service-board article > div { display: grid; gap: 4px; }.service-board article b { font-size: 14px; }.service-board article small { color: var(--muted); font-size: 12px; }.service-board article em { padding: 6px 9px; color: #a86413; border-radius: 7px; background: #fff2df; font-size: 11px; font-style: normal; font-weight: 850; }.service-board article em.done { color: var(--green); background: #e6f7ef; }
.portal-progress { position: absolute; z-index: 5; left: 70px; right: 0; bottom: 0; height: 3px; background: rgba(36,91,255,.09); }.portal-progress span { width: 0; height: 100%; display: block; background: var(--blue); }.portal-tour.playing .portal-progress span { animation: portalProgress 5.5s linear forwards; }
@keyframes portalProgress { from { width: 0; } to { width: 100%; } }
.portal-disclaimer { margin: 16px 2px 0; color: #7b899e; font-size: 12px; text-align: right; }

/* Problem / flow */
.problem-section { background: white; }
.problem-grid { display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: 100px; }
.problem-grid .section-copy > p:not(.eyebrow) { max-width: 590px; margin: 27px 0 0; }
.system-flow { min-height: 540px; display: grid; grid-template-columns: 1fr 82px 1.12fr; align-items: center; padding: 40px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
.flow-sources { display: grid; gap: 12px; }
.flow-sources span { min-height: 62px; display: flex; align-items: center; gap: 13px; padding: 12px 15px; color: var(--text); border: 1px solid #dce4ef; border-radius: 12px; background: white; font-size: 14px; font-weight: 750; }
.flow-sources svg { width: 22px; color: #77849a; }
.flow-lines { height: 350px; display: flex; flex-direction: column; justify-content: space-around; }
.flow-lines i { position: relative; width: 100%; height: 1px; display: block; background: linear-gradient(90deg, #cad5e4, var(--blue)); }
.flow-lines i::after { content: ""; position: absolute; right: -1px; top: -4px; width: 8px; height: 8px; border-top: 2px solid var(--blue); border-right: 2px solid var(--blue); transform: rotate(45deg); }
.flow-core { min-height: 310px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; color: white; border-radius: 20px; background: linear-gradient(145deg, var(--navy-900), #10295d); box-shadow: 0 28px 60px rgba(7,20,46,.25); text-align: center; }
.core-mark { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: var(--blue); font-size: 24px; font-weight: 900; }
.flow-core small { color: rgba(255,255,255,.56); font-size: 13px; }
.flow-core strong { margin-top: 4px; font-size: 28px; letter-spacing: -.04em; }
.flow-core p { max-width: 230px; margin: 18px 0 0; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.55; }

/* Inventory */
.inventory-section { overflow: hidden; background: var(--surface); }
.feature-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 80px; }
.feature-copy > p:not(.eyebrow) { max-width: 570px; margin: 27px 0 0; }
.feature-list { display: grid; gap: 0; margin: 38px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; display: grid; gap: 4px; padding: 19px 0 19px 34px; border-top: 1px solid #d9e1eb; }
.feature-list li:last-child { border-bottom: 1px solid #d9e1eb; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 25px; width: 12px; height: 12px; border: 3px solid var(--blue); border-radius: 50%; }
.feature-list strong { font-size: 16px; }.feature-list span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.inventory-visual { overflow: hidden; border: 1px solid #d5deea; border-radius: 22px; background: white; box-shadow: var(--shadow-soft); }
.visual-toolbar { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); }
.visual-toolbar span { font-size: 15px; font-weight: 850; }
.visual-toolbar button { min-height: 34px; padding: 0 13px; color: white; border: 0; border-radius: 8px; background: var(--blue); font-size: 12px; font-weight: 800; }
.inventory-visual > img { width: 100%; height: auto; display: block; object-fit: cover; object-position: left top; }
.inventory-bottom { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.inventory-bottom > span { min-height: 82px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 10px; padding: 14px 18px; }
.inventory-bottom > span + span { border-left: 1px solid var(--line); }
.inventory-bottom i { width: 9px; height: 9px; grid-row: 1 / 3; align-self: center; border-radius: 50%; background: var(--blue); }.inventory-bottom > span:nth-child(2) i { background: var(--green); }.inventory-bottom > span:nth-child(3) i { background: var(--orange); }
.inventory-bottom strong { font-size: 17px; }.inventory-bottom small { color: var(--muted); font-size: 12px; }
.status-journey { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 18px; margin-top: 74px; }
.status-journey span { color: var(--ink); font-size: 14px; font-weight: 800; white-space: nowrap; }
.status-journey i { position: relative; height: 1px; background: #cbd5e2; }.status-journey i::after { content: ""; position: absolute; right: -1px; top: -3px; width: 6px; height: 6px; border-top: 2px solid #9ba9bd; border-right: 2px solid #9ba9bd; transform: rotate(45deg); }

/* Scanner */
.scanner-section { color: white; background: var(--navy-900); }
.scanner-grid { display: grid; grid-template-columns: 1.28fr .72fr; align-items: center; gap: 76px; }
.scanner-copy h2 { color: white; }
.scanner-copy > p:not(.eyebrow) { margin: 27px 0 0; color: rgba(255,255,255,.65); }
.scanner-points { display: grid; gap: 16px; margin-top: 34px; }
.scanner-points span { min-height: 56px; display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.scanner-points i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: #afc1ff; border: 1px solid rgba(155,181,255,.25); border-radius: 10px; background: rgba(36,91,255,.12); font-size: 12px; font-style: normal; font-weight: 850; }
.scanner-points b { font-size: 14px; }
.scanner-disclaimer { display: block; margin-top: 22px; color: rgba(255,255,255,.43); font-size: 12px; line-height: 1.55; }
.scanner-disclaimer a { color: #b9c8ff; text-decoration: underline; }
.scanner-visual { position: relative; display: grid; grid-template-columns: minmax(0,1.48fr) 46px minmax(210px,.72fr); align-items: center; }
.registration-camera { position: relative; min-height: 478px; display: grid; place-items: center; padding: 44px 34px 62px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: radial-gradient(circle at 50% 42%, #263b60 0%, #101f3a 58%, #09152d 100%); box-shadow: 0 36px 85px rgba(0,0,0,.3); }
.registration-camera::before { content: "Kamera · Dokument vollständig im Rahmen"; position: absolute; left: 25px; top: 18px; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 750; letter-spacing: .02em; }
.camera-corner { position: absolute; z-index: 5; width: 34px; height: 34px; border-color: #90adff; border-style: solid; opacity: .9; }.camera-corner-tl { left: 18px; top: 45px; border-width: 2px 0 0 2px; border-radius: 9px 0 0; }.camera-corner-tr { right: 18px; top: 45px; border-width: 2px 2px 0 0; border-radius: 0 9px 0 0; }.camera-corner-bl { left: 18px; bottom: 45px; border-width: 0 0 2px 2px; border-radius: 0 0 0 9px; }.camera-corner-br { right: 18px; bottom: 45px; border-width: 0 2px 2px 0; border-radius: 0 0 9px; }
.permit-card { position: relative; overflow: hidden; width: 100%; min-height: 330px; padding: 21px 22px; color: #263139; border: 1px solid rgba(77,105,95,.27); border-radius: 7px; background-color: #e9efe3; background-image: repeating-linear-gradient(12deg, rgba(59,112,96,.055) 0 1px, transparent 1px 9px), repeating-linear-gradient(102deg, rgba(44,90,78,.04) 0 1px, transparent 1px 12px), radial-gradient(circle at 15% 22%, rgba(255,255,255,.75), transparent 28%), linear-gradient(145deg, #eff4e9, #dfe8dd); box-shadow: 0 22px 55px rgba(0,0,0,.32); transform: rotate(-1deg); }
.permit-card::before { content: "CH"; position: absolute; right: 15px; bottom: -22px; color: rgba(38,80,74,.055); font-size: 122px; font-weight: 950; }
.permit-watermark { position: absolute; z-index: 1; left: 50%; top: 54%; color: rgba(176,45,45,.1); border: 3px solid rgba(176,45,45,.08); padding: 5px 13px; font-size: 39px; font-weight: 950; letter-spacing: .14em; transform: translate(-50%,-50%) rotate(-14deg); }
.permit-head { position: relative; z-index: 2; display: grid; grid-template-columns: 43px 1fr; column-gap: 11px; padding-bottom: 12px; border-bottom: 2px solid rgba(63,101,90,.34); }
.permit-head > span { width: 43px; height: 34px; display: grid; place-items: center; grid-row: 1 / 3; color: white; border-radius: 3px; background: #d63030; font-size: 27px; font-weight: 800; line-height: 1; }
.permit-head strong { font-size: 14px; letter-spacing: .055em; }.permit-head small { color: #607068; font-size: 10px; }
.permit-columns { position: relative; z-index: 2; display: grid; grid-template-columns: .48fr 1.52fr; gap: 17px; padding-top: 15px; }
.permit-owner { min-width: 0; display: flex; flex-direction: column; padding: 12px 11px; border: 1px solid rgba(72,108,97,.22); background: rgba(255,255,255,.27); }.permit-owner small { color: #66766d; font-size: 10px; }.permit-owner b { margin: 22px 0 10px; color: #6f7a74; font-size: 12px; letter-spacing: .06em; }.permit-owner span { color: #738078; font-size: 10px; line-height: 1.45; }
.permit-body { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 13px; padding: 0; }
.permit-body > div { min-width: 0; display: grid; gap: 2px; padding-bottom: 6px; border-bottom: 1px solid rgba(73,105,95,.24); }.permit-body .wide { grid-column: 1 / -1; }
.permit-body small { color: #607068; font-size: 9px; }.permit-body b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.scan-line { position: absolute; z-index: 6; left: 8px; right: 8px; top: 50%; height: 2px; background: #4b79ff; box-shadow: 0 0 22px 7px rgba(80,125,255,.58); animation: scan 3.5s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: translateY(-150px); opacity: .18; } 50% { transform: translateY(150px); opacity: 1; } }
.scan-readout { position: absolute; z-index: 8; left: 30px; right: 30px; bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: rgba(255,255,255,.72); font-size: 11px; }.scan-readout b { color: white; font-size: 12px; }
.permit-arrow { position: relative; z-index: 3; width: 46px; height: 46px; display: grid; place-items: center; color: white; border: 4px solid var(--navy-900); border-radius: 50%; background: var(--blue); font-size: 22px; font-weight: 900; }
.vehicle-entry { min-height: 392px; display: flex; flex-direction: column; gap: 12px; padding: 22px; color: var(--ink); border: 1px solid #d7e1ed; border-radius: 16px; background: white; box-shadow: 0 28px 60px rgba(0,0,0,.23); }
.entry-status { align-self: flex-start; padding: 7px 9px; color: var(--green); border-radius: 7px; background: #e8f7f0; font-size: 11px; font-weight: 850; }
.vehicle-entry > strong { margin: 2px 0 3px; font-size: 19px; }
.vehicle-entry label { position: relative; display: grid; gap: 4px; padding: 7px 8px; color: var(--muted); border: 1px solid transparent; border-radius: 8px; font-size: 11px; transition: border-color .25s ease, background-color .25s ease, opacity .25s ease; opacity: .38; }.vehicle-entry label b { overflow: hidden; color: var(--ink); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }.vehicle-entry label.detected { border-color: #b9e6d1; background: #effaf5; opacity: 1; }.vehicle-entry label.detected::after { content: "✓"; position: absolute; right: 8px; top: 8px; color: var(--green); font-size: 11px; font-weight: 900; }
.entry-actions { display: grid; grid-template-columns: 1fr; gap: 7px; margin-top: auto; }.entry-actions span { padding: 9px 6px; color: var(--muted); border: 1px solid var(--line); border-radius: 7px; text-align: center; font-size: 10px; font-weight: 800; }.entry-actions .selected { color: white; border-color: var(--blue); background: var(--blue); }

/* Studio */
.studio-section { color: white; background: var(--navy-950); }
.studio-title, .workspace-head, .reports-head, .pricing-head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 90px; margin-bottom: 56px; }
.studio-title h2, .reports-head h2 { color: white; }
.studio-title > p, .reports-head > p { margin: 0 0 5px; color: rgba(255,255,255,.62); }
.studio-workspace { overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(340px, .6fr); border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: #0d1930; box-shadow: 0 40px 100px rgba(0,0,0,.38); }
.studio-preview { position: relative; min-height: 630px; overflow: hidden; background: #111; }
.studio-preview img { width: 100%; height: 100%; display: block; object-fit: cover; transition: opacity .18s ease, transform .32s ease; }.studio-preview.changing img { opacity: .35; transform: scale(1.01); }
.studio-label { position: absolute; left: 24px; top: 23px; padding: 9px 13px; color: white; border: 1px solid rgba(255,255,255,.35); border-radius: 8px; background: rgba(7,20,46,.75); backdrop-filter: blur(10px); font-size: 13px; font-weight: 800; }
.studio-pager { position: absolute; left: 50%; bottom: 22px; display: flex; gap: 8px; transform: translateX(-50%); }.studio-pager button { width: 32px; height: 5px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.38); cursor: pointer; }.studio-pager button.active { background: white; }
.studio-controls { display: flex; flex-direction: column; padding: 31px; background: #0c1830; }
.studio-control { min-height: 85px; display: grid; grid-template-columns: 38px 1fr 24px; align-items: center; gap: 13px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.studio-control > span { width: 34px; height: 34px; display: grid; place-items: center; color: #a8baf0; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; font-size: 12px; font-weight: 850; }
.studio-control > div { display: grid; gap: 4px; }.studio-control strong { font-size: 15px; }.studio-control small { color: rgba(255,255,255,.48); font-size: 12px; }.studio-control > b { color: #6fd7a8; font-size: 15px; text-align: right; }
.studio-control.active > span { color: white; border-color: var(--blue); background: var(--blue); }
.studio-note { display: flex; align-items: flex-start; gap: 13px; margin: 24px 0; padding: 16px; border: 1px solid rgba(111,215,168,.19); border-radius: 12px; background: rgba(111,215,168,.07); }
.studio-note svg { width: 25px; flex: 0 0 auto; color: #6fd7a8; }.studio-note p { display: grid; gap: 5px; margin: 0; }.studio-note strong { font-size: 13px; }.studio-note span { color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.55; }
.studio-controls .button { width: 100%; margin-top: auto; }

/* Connected workspace tabs */
.workspace-section { background: white; }
.workspace-head > p { margin: 0 0 4px; }
.workspace-tabs { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-soft); }
.tab-list { display: grid; grid-template-columns: repeat(3,1fr); padding: 8px; border-bottom: 1px solid var(--line); background: white; }
.tab-list button { min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 20px; color: var(--muted); border: 0; border-radius: 12px; background: transparent; font-size: 15px; font-weight: 800; cursor: pointer; }
.tab-list button span { color: #9ca8ba; font-size: 12px; }.tab-list button.active { color: white; background: var(--navy-900); }.tab-list button.active span { color: #9bb5ff; }
.tab-panel { min-height: 570px; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; padding: 68px; }
.tab-panel[hidden] { display: none; }
.tab-copy h3 { margin: 0; font-size: clamp(34px, 3.5vw, 48px); line-height: 1.07; letter-spacing: -.04em; }
.tab-copy > p:not(.eyebrow) { margin: 23px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.tab-copy ul { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }.tab-copy li { position: relative; padding-left: 24px; color: var(--text); font-size: 14px; }.tab-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.docs-visual { position: relative; height: 430px; }
.document { position: absolute; width: 330px; height: 410px; left: 50%; top: 50%; display: flex; flex-direction: column; padding: 31px; color: var(--ink); border: 1px solid #d5deea; border-radius: 6px; background: white; box-shadow: 0 22px 50px rgba(16,34,68,.15); }
.document-back { transform: translate(-75%, -48%) rotate(-8deg); }.document-middle { transform: translate(-37%, -52%) rotate(5deg); }.document-front { transform: translate(-55%, -50%); }
.document > span { color: var(--blue); font-size: 13px; font-weight: 950; }.document > strong { margin-top: 32px; font-size: 22px; }.document > small { margin: 14px 0 27px; color: var(--muted); font-size: 11px; }.document > i { height: 8px; display: block; margin-bottom: 11px; border-radius: 3px; background: #e6ebf2; }.document > i:nth-of-type(2) { width: 78%; }.document > i:nth-of-type(3) { width: 62%; }.document > b { margin-top: auto; font-size: 22px; }.document > em { width: 55px; height: 55px; display: grid; place-items: center; align-self: flex-end; margin-top: 20px; color: white; background: var(--navy-900); font-size: 12px; font-style: normal; font-weight: 900; }
.customer-visual, .workshop-visual { overflow: hidden; min-height: 390px; padding: 30px; border: 1px solid #d8e1ed; border-radius: 18px; background: white; box-shadow: 0 22px 55px rgba(16,34,68,.12); }
.customer-head { display: flex; align-items: center; gap: 14px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }.customer-head > span { width: 48px; height: 48px; display: grid; place-items: center; color: white; border-radius: 12px; background: var(--blue); font-size: 14px; font-weight: 900; }.customer-head > div { display: grid; gap: 3px; }.customer-head strong { font-size: 17px; }.customer-head small { color: var(--muted); font-size: 12px; }.customer-head > b { margin-left: auto; padding: 6px 9px; color: var(--green); border-radius: 7px; background: #e9f8f1; font-size: 11px; }
.customer-stats { display: grid; grid-template-columns: repeat(3,1fr); margin: 24px 0; border: 1px solid var(--line); border-radius: 12px; }.customer-stats > span { display: grid; gap: 6px; padding: 15px; }.customer-stats > span + span { border-left: 1px solid var(--line); }.customer-stats small { color: var(--muted); font-size: 11px; }.customer-stats strong { font-size: 22px; }
.history-row { min-height: 68px; display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 12px; border-top: 1px solid #e7ebf1; }.history-row i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }.history-row > div { display: grid; gap: 3px; }.history-row strong { font-size: 13px; }.history-row small, .history-row > span { color: var(--muted); font-size: 11px; }
.workshop-top { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); }.workshop-top > div { display: grid; gap: 5px; }.workshop-top small { color: var(--muted); font-size: 11px; }.workshop-top strong { font-size: 19px; }.workshop-top > span { padding: 7px 10px; color: #a35e00; border-radius: 7px; background: #fff1d6; font-size: 11px; font-weight: 850; }
.workshop-car { display: flex; align-items: center; gap: 14px; margin: 23px 0; padding: 15px; border-radius: 12px; background: var(--surface); }.workshop-car i { width: 45px; height: 30px; border: 3px solid var(--blue); border-radius: 12px 16px 7px 7px; }.workshop-car > div { display: grid; gap: 3px; }.workshop-car strong { font-size: 14px; }.workshop-car small { color: var(--muted); font-size: 12px; }
.workshop-line { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); font-size: 13px; }.workshop-line b { white-space: nowrap; }.workshop-total { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 8px; padding-top: 19px; border-top: 2px solid var(--ink); }.workshop-total span { color: var(--muted); font-size: 13px; }.workshop-total strong { font-size: 23px; }

/* Reports */
.reports-section { color: white; background: var(--navy-900); }
.reports-head > p { max-width: 530px; }
.report-board { overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: #0b1935; box-shadow: 0 35px 85px rgba(0,0,0,.27); }
.report-kpis { display: grid; grid-template-columns: .8fr 1fr 1.2fr 1.15fr .9fr; border-bottom: 1px solid rgba(255,255,255,.11); }
.report-kpis > span { min-height: 130px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 22px; }.report-kpis > span + span { border-left: 1px solid rgba(255,255,255,.11); }
.report-kpis small { color: rgba(255,255,255,.5); font-size: 12px; }.report-kpis strong { font-size: clamp(20px, 2vw, 28px); white-space: nowrap; }.report-kpis em { color: rgba(255,255,255,.28); font-size: 11px; font-style: normal; }.report-kpis .positive { color: #6ee0ac; }
.report-main { display: grid; grid-template-columns: 1.45fr .55fr; }
.chart-panel { min-width: 0; padding: 31px; border-right: 1px solid rgba(255,255,255,.11); }
.chart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }.chart-head > div { display: grid; gap: 4px; }.chart-head small { color: rgba(255,255,255,.46); font-size: 11px; }.chart-head strong { font-size: 17px; }.chart-head > span { color: rgba(255,255,255,.46); font-size: 11px; }
.chart { width: 100%; height: auto; margin-top: 26px; }.chart .grid { stroke: rgba(255,255,255,.08); }.chart .area { fill: url(#area); stroke: none; }.chart .line { stroke: #5981ff; stroke-width: 4; }.chart .margin-line { stroke: #66dba8; stroke-width: 3; stroke-dasharray: 7 6; }.chart .months { fill: rgba(255,255,255,.37); stroke: none; font-size: 11px; font-weight: 700; }
.chart-legend { display: flex; gap: 22px; margin-top: 15px; color: rgba(255,255,255,.55); font-size: 11px; }.chart-legend span { display: flex; align-items: center; gap: 7px; }.chart-legend i { width: 16px; height: 3px; border-radius: 2px; background: #5981ff; }.chart-legend span:nth-child(2) i { background: #66dba8; }
.stock-panel { padding: 31px; }.stock-panel > small { color: rgba(255,255,255,.48); font-size: 11px; }.stock-panel > strong { display: block; margin-top: 5px; font-size: 19px; }
.donut { position: relative; width: 165px; height: 165px; display: grid; place-items: center; margin: 25px auto; border-radius: 50%; background: conic-gradient(var(--blue) 0 59%, #f2a84c 59% 81%, #63d6a4 81% 100%); }.donut::before { content: ""; position: absolute; inset: 22px; border-radius: 50%; background: #0b1935; }.donut > span { position: relative; display: grid; text-align: center; }.donut b { font-size: 29px; }.donut small { color: rgba(255,255,255,.48); font-size: 11px; }
.stock-panel ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }.stock-panel li { display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 10px; color: rgba(255,255,255,.62); font-size: 12px; }.stock-panel li i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }.stock-panel li:nth-child(2) i { background: #f2a84c; }.stock-panel li:nth-child(3) i { background: #63d6a4; }.stock-panel li b { color: white; }

/* Setup */
.setup-section { background: white; }
.setup-head { max-width: 760px; margin: 0 auto; text-align: center; }.setup-head > p:not(.eyebrow) { margin: 22px auto 0; }
.setup-steps { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 70px; margin-top: 74px; padding: 0; list-style: none; }.setup-steps::before { content: ""; position: absolute; left: 16%; right: 16%; top: 29px; height: 1px; background: #ced8e5; }
.setup-steps li { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }.setup-steps li > span { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; color: white; border: 8px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px #cfd9e6; font-size: 15px; font-weight: 900; }
.setup-steps li > div { display: grid; gap: 8px; margin-top: 20px; }.setup-steps strong { font-size: 18px; }.setup-steps p { max-width: 290px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Pricing */
.pricing-section { background: var(--surface); }
.pricing-head { align-items: center; }
.pricing-head > div > p:not(.eyebrow) { margin: 19px 0 0; }
.billing-toggle { justify-self: end; display: flex; gap: 5px; padding: 5px; border: 1px solid #d4deea; border-radius: 13px; background: white; }
.billing-toggle button { min-width: 120px; min-height: 46px; padding: 6px 15px; color: var(--muted); border: 0; border-radius: 9px; background: transparent; font-size: 13px; font-weight: 800; cursor: pointer; }.billing-toggle button span { display: block; color: var(--green); font-size: 11px; }.billing-toggle button.active { color: white; background: var(--navy-900); }.billing-toggle button.active span { color: #91e6bd; }
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; min-height: 610px; display: flex; flex-direction: column; padding: 34px; border: 1px solid #d5dfeb; border-radius: 20px; background: white; }
.price-card-featured { border: 2px solid var(--blue); box-shadow: 0 25px 65px rgba(36,91,255,.14); }
.popular { position: absolute; left: 50%; top: -14px; padding: 7px 14px; color: white; border-radius: 999px; background: var(--blue); transform: translateX(-50%); font-size: 11px; font-weight: 850; white-space: nowrap; }
.plan-title { min-height: 142px; }.plan-title > span { color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .1em; }.plan-title p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.plan-price { display: flex; align-items: flex-start; min-height: 71px; }.plan-price sup { margin: 8px 7px 0 0; color: var(--muted); font-size: 13px; font-weight: 850; }.plan-price strong { font-size: 54px; line-height: 1; letter-spacing: -.05em; }.plan-price small { align-self: flex-end; margin: 0 0 9px 8px; color: var(--muted); font-size: 13px; }
.plan-billing { min-height: 22px; margin: 4px 0 23px; color: #8793a7; font-size: 12px; }.price-card > .button { width: 100%; }
.price-card ul { display: grid; gap: 14px; margin: 28px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }.price-card li { position: relative; padding-left: 26px; color: var(--text); font-size: 14px; line-height: 1.45; }.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.pricing-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; margin-top: 36px; color: var(--muted); font-size: 12px; }.pricing-note span::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }
.comparison { margin-top: 94px; }.comparison-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 27px; }.comparison-head h3 { margin: 0; font-size: 32px; letter-spacing: -.035em; }.comparison-head a { color: var(--blue); font-size: 14px; font-weight: 800; }
.comparison-scroll { overflow-x: auto; border: 1px solid #d5dfeb; border-radius: 18px; background: white; }
.comparison table { width: 100%; min-width: 720px; border-collapse: collapse; }.comparison th, .comparison td { height: 64px; padding: 13px 21px; border-bottom: 1px solid #e5eaf1; text-align: center; font-size: 14px; }.comparison th { color: var(--ink); background: #f8fafc; font-size: 13px; }.comparison th:first-child, .comparison td:first-child { width: 46%; text-align: left; font-weight: 700; }.comparison td:not(:first-child) { color: var(--green); font-size: 17px; font-weight: 900; }.comparison .highlight { background: rgba(36,91,255,.045); }.comparison tbody tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 100px; }
.faq-intro { position: sticky; top: 110px; }.faq-intro > p:not(.eyebrow) { max-width: 450px; margin: 23px 0 0; }
.faq-list { display: grid; gap: 10px; }.faq-list details { overflow: hidden; border-bottom: 1px solid var(--line); }.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 14px 0; cursor: pointer; list-style: none; font-size: 16px; font-weight: 800; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); border: 1px solid var(--line); border-radius: 50%; font-size: 21px; transition: transform .2s ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { max-width: 740px; margin: -1px 54px 22px 0; color: var(--muted); font-size: 15px; line-height: 1.72; }

/* Closing */
.closing-section { position: relative; overflow: hidden; padding: 126px 0; color: white; background: var(--navy-900); }
.closing-section::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; mask-image: linear-gradient(90deg, black, transparent 68%); }
.closing-glow { position: absolute; width: 700px; height: 700px; left: -260px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(36,91,255,.45), transparent 66%); }
.closing-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.closing-copy > p:not(.eyebrow) { max-width: 560px; margin: 27px 0 0; color: rgba(255,255,255,.64); }.closing-contact { display: grid; gap: 4px; margin-top: 36px; }.closing-contact span { color: rgba(255,255,255,.45); font-size: 12px; }.closing-contact a { font-size: 20px; font-weight: 800; }
.demo-form { padding: 35px; color: var(--ink); border-radius: 20px; background: white; box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.form-heading { display: grid; gap: 4px; margin-bottom: 26px; }.form-heading strong { font-size: 24px; }.form-heading span { color: var(--muted); font-size: 14px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.demo-form label { display: grid; gap: 7px; margin-bottom: 15px; }.demo-form label > span { color: #4f5d73; font-size: 12px; font-weight: 800; }
.demo-form input, .demo-form select, .demo-form textarea { width: 100%; color: var(--ink); border: 1px solid #d8e0eb; border-radius: 10px; outline: 0; background: #fbfcfe; transition: border-color .2s ease, box-shadow .2s ease; }.demo-form input, .demo-form select { height: 48px; padding: 0 13px; }.demo-form textarea { padding: 12px 13px; resize: vertical; }.demo-form input:focus, .demo-form select:focus, .demo-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(36,91,255,.1); }
.honeypot { position: absolute !important; left: -9999px !important; }.form-submit { width: 100%; margin-top: 4px; }.form-privacy { margin: 12px 0 0; color: #8793a7; text-align: center; font-size: 11px; line-height: 1.5; }.form-privacy a { color: var(--blue-dark); text-decoration: underline; }.form-status { min-height: 19px; margin: 8px 0 0; color: var(--green); text-align: center; font-size: 12px; }.form-status.error { color: #c33a42; }

/* Footer */
.site-footer { color: rgba(255,255,255,.58); background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1.55fr repeat(3, .75fr) 1fr; gap: 45px; padding: 70px 0 50px; }
.footer-brand p { max-width: 290px; margin: 22px 0 0; font-size: 13px; line-height: 1.65; }.brand-footer { width: 224px; padding: 7px 9px; border-radius: 9px; background: white; }
.footer-main > div:not(.footer-brand), .footer-main address { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-style: normal; }.footer-main strong { margin-bottom: 5px; color: white; font-size: 13px; }.footer-main a, .footer-main address span { font-size: 13px; }.footer-main a:hover { color: white; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.mobile-demo-bar { display: none; }

/* Progressive enhancement: visible by default. Motion only after JS is ready. */
.motion-ready .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.motion-ready .reveal.revealed { opacity: 1; transform: none; }
.motion-ready .reveal-delay { transition-delay: .08s; }

/* Legal pages */
.legal-page { background: var(--surface); }.legal-page .site-header { position: static; background: white; }.legal-page .site-header .button-ghost { color: var(--ink); border-color: var(--line); background: var(--surface); }.legal-hero { padding: 90px 0 65px; color: white; background: var(--navy-900); }.legal-hero h1 { margin: 0; font-size: clamp(44px, 6vw, 70px); letter-spacing: -.05em; }.legal-hero p { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: 17px; }.legal-content { max-width: 900px; padding: 70px 0 100px; }.legal-content section { padding: 28px 0; border-bottom: 1px solid var(--line); }.legal-content section:first-child { padding-top: 0; }.legal-content h2 { margin: 0 0 14px; font-size: 24px; }.legal-content p, .legal-content li { color: var(--text); font-size: 15px; line-height: 1.75; }.legal-content p { margin: 0 0 12px; }.legal-content ul { margin: 0; padding-left: 20px; }.legal-content a { color: var(--blue-dark); font-weight: 750; }.legal-back { display: inline-flex; margin-top: 38px; color: var(--blue-dark); font-weight: 800; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 44px; }
  .hero-copy h1 { font-size: 58px; }
  .product-content { min-height: 0; }.product-screen > img { height: auto; }
  .swiss-strip-inner { flex-wrap: wrap; justify-content: flex-start; padding: 22px 0; }.swiss-strip strong { width: 100%; }
  .portal-head { gap: 55px; }.portal-browser { min-height: 620px; }.portal-panel { min-height: 558px; }.portal-stock-screen > img { height: auto; }
  .problem-grid, .feature-grid, .scanner-grid { gap: 55px; }
  .system-flow { grid-template-columns: .95fr 60px 1.05fr; padding: 28px; }
  .studio-workspace { grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); }.studio-preview { min-height: 560px; }
  .tab-panel { padding: 50px; gap: 45px; }
  .report-kpis { grid-template-columns: repeat(3,1fr); }.report-kpis > span:nth-child(4) { border-left: 0; border-top: 1px solid rgba(255,255,255,.11); }.report-kpis > span:nth-child(5) { border-top: 1px solid rgba(255,255,255,.11); }
  .footer-main { grid-template-columns: 1.4fr repeat(2, .8fr); }.footer-main > div:nth-child(4), .footer-main address { margin-top: 10px; }
}

@media (max-width: 900px) {
  .section { padding: 104px 0; }
  .hero { padding-top: 145px; }.hero-grid { grid-template-columns: 1fr; gap: 58px; }.hero-copy { max-width: 760px; }.hero-copy h1 { font-size: clamp(52px, 8vw, 70px); }.hero-product { max-width: 820px; }
  .portal-head { grid-template-columns: 1fr; gap: 24px; }.portal-head > p { max-width: 720px; }.portal-tabs button { padding-inline: 13px; }.portal-browser { min-height: 600px; }.portal-panel { min-height: 538px; }.portal-stock-screen > img { height: auto; }.dossier-layout { grid-template-rows: 215px 175px; }
  .problem-grid, .feature-grid, .scanner-grid, .studio-title, .workspace-head, .reports-head, .pricing-head, .faq-grid, .closing-grid { grid-template-columns: 1fr; gap: 45px; }
  .problem-grid .section-copy, .feature-copy, .scanner-copy { max-width: 740px; }
  .system-flow { min-height: 500px; }
  .scanner-visual { order: 2; }.scanner-copy { order: 1; }
  .studio-title, .workspace-head, .reports-head, .pricing-head { margin-bottom: 42px; }.studio-title > p, .workspace-head > p, .reports-head > p { max-width: 700px; }
  .studio-workspace { grid-template-columns: 1fr; }.studio-preview { min-height: 560px; }.studio-controls { gap: 0; }
  .tab-panel { grid-template-columns: 1fr; min-height: auto; }.tab-copy { max-width: 700px; }.docs-visual { margin-top: 10px; }
  .report-main { grid-template-columns: 1fr; }.chart-panel { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }.stock-panel { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }.stock-panel > strong { grid-column: 1; }.donut { grid-column: 2; grid-row: 1 / 4; }.stock-panel ul { grid-column: 3; grid-row: 1 / 4; }
  .price-cards { grid-template-columns: 1fr 1fr; }.price-card:last-child { grid-column: 1 / -1; width: 100%; }.price-card { min-height: 570px; }
  .billing-toggle { justify-self: start; }
  .faq-intro { position: static; max-width: 700px; }
  .closing-copy { max-width: 700px; }
  .footer-main { grid-template-columns: 1.4fr repeat(2,1fr); }
}

@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  html { scroll-padding-top: 72px; }
  .site-header { height: 70px; }.site-header.scrolled { height: 66px; }.brand, .brand-footer { width: 170px; }.brand-image { width: 170px; }.nav-login, .nav-actions > .button { display: none; }.mobile-nav { inset: 70px 12px auto; }
  .section { padding: 84px 0; }
  .eyebrow { margin-bottom: 15px; font-size: 11px; }
  .section-copy h2, .feature-copy h2, .workspace-head h2, .reports-head h2, .studio-title h2, .setup-head h2, .pricing-head h2, .faq-intro h2, .closing-copy h2 { font-size: clamp(38px, 11vw, 48px); }
  .section-copy > p:not(.eyebrow), .feature-copy > p:not(.eyebrow), .workspace-head > p, .reports-head > p, .studio-title > p, .setup-head > p:not(.eyebrow), .pricing-head > div > p:not(.eyebrow), .faq-intro > p:not(.eyebrow), .closing-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero { padding: 118px 0 78px; }.hero-grid { gap: 44px; }.hero-copy h1 { font-size: clamp(44px, 13vw, 56px); }.hero-lead { margin-top: 23px; font-size: 17px; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }.hero-trust { display: grid; gap: 9px; }.hero-product .product-window { animation: none; }.hero-activity { position: relative; right: auto; bottom: auto; width: 100%; min-height: 74px; margin-top: 18px; }.hero-activity > span { box-shadow: 0 13px 32px rgba(2,10,28,.2); }
  .product-window { border-radius: 14px; }.window-bar { height: 44px; grid-template-columns: 45px 1fr 28px; padding: 0 9px; }.window-dots { gap: 4px; }.window-dots i { width: 6px; height: 6px; }.window-bar > span { padding: 5px 9px; font-size: 11px; }.window-bar > b { width: 25px; height: 25px; border-radius: 7px; font-size: 11px; }.product-content { min-height: 300px; grid-template-columns: 39px 1fr; }.product-sidebar { gap: 13px; padding-top: 13px; }.product-sidebar strong { width: 25px; height: 25px; margin-bottom: 5px; border-radius: 7px; font-size: 11px; }.product-sidebar i { width: 15px; height: 15px; border-radius: 4px; }.product-screen > img { height: 210px; }.screen-summary { grid-template-columns: 1fr 1fr; }.screen-summary > span { min-height: 78px; padding: 11px; }.screen-summary > span:last-child { display: none; }.screen-summary small { font-size: 11px; }.screen-summary strong { font-size: 12px; }.hero-caption { font-size: 12px; }
  .swiss-strip-inner { min-height: 0; gap: 13px 18px; padding: 25px 0; }.swiss-strip strong { font-size: 13px; }.swiss-strip span { font-size: 12px; }
  .portal-head { margin-bottom: 35px; }.portal-head h2 { font-size: clamp(38px, 11vw, 48px); }.portal-head > p { font-size: 16px; }.portal-tabs { overflow-x: auto; grid-template-columns: repeat(4,minmax(174px,1fr)); margin-right: -14px; padding: 0 14px 8px 0; scrollbar-width: none; }.portal-tabs::-webkit-scrollbar { display: none; }.portal-tabs button { min-height: 58px; font-size: 13px; }.portal-browser { min-height: 590px; border-radius: 17px; }.portal-browser-bar { height: 50px; grid-template-columns: 45px 1fr; padding: 0 11px; }.portal-browser-bar > span { min-width: 0; padding: 6px 10px; font-size: 11px; }.portal-browser-bar > small { display: none; }.portal-panel { min-height: 537px; grid-template-columns: 44px minmax(0,1fr); }.portal-sidebar { gap: 17px; padding-top: 17px; }.portal-sidebar b { width: 29px; height: 29px; margin-bottom: 5px; border-radius: 8px; font-size: 10px; }.portal-sidebar i { width: 17px; height: 17px; border-radius: 5px; }.portal-stock-screen, .portal-dossier-screen, .portal-documents-screen, .portal-service-screen { padding: 18px 14px 22px; }.portal-screen-title { min-height: 50px; }.portal-screen-title strong { font-size: 20px; }.portal-screen-title button { display: none; }.portal-stock-screen > img { height: auto; border-radius: 10px; }.portal-screen-caption { min-height: 100px; align-items: flex-start; flex-direction: column; gap: 7px; padding: 15px; }.portal-screen-caption span { font-size: 12px; }.dossier-layout { grid-template-columns: 1fr 1fr; grid-template-rows: 205px auto auto; gap: 10px; }.dossier-photo { grid-column: 1 / -1; grid-row: auto; }.dossier-summary, .dossier-card { padding: 13px; }.dossier-summary > strong { font-size: 19px; }.dossier-card:last-child { grid-column: 1 / -1; }.document-kpis, .service-kpis { gap: 7px; }.document-kpis > span, .service-kpis > span { min-height: 72px; padding: 10px; }.document-kpis b, .service-kpis b { font-size: 13px; }.document-kpis small, .service-kpis small { font-size: 10px; }.portal-table > div { min-height: 64px; grid-template-columns: 1.4fr .6fr; gap: 8px; padding: 0 11px; }.portal-table > div > span:nth-child(2), .portal-table > div > span:nth-child(3) { display: none; }.portal-table .portal-table-head > span:nth-child(2), .portal-table .portal-table-head > span:nth-child(3) { display: none; }.portal-table em { justify-self: end; }.service-board article { min-height: 75px; grid-template-columns: 47px 1fr; gap: 9px; padding: 10px; }.service-board article em { grid-column: 2; justify-self: start; margin-top: -7px; }.service-board article b { font-size: 12px; }.service-board article small { font-size: 10px; }.portal-progress { left: 44px; }.portal-disclaimer { text-align: left; }
  .system-flow { min-height: 0; grid-template-columns: 1fr; gap: 22px; padding: 19px; }.flow-lines { height: 45px; flex-direction: row; align-items: center; justify-content: center; }.flow-lines i { display: none; }.flow-lines::after { content: "↓"; color: var(--blue); font-size: 28px; font-weight: 900; }.flow-core { min-height: 250px; }.flow-sources span { min-height: 54px; font-size: 13px; }
  .inventory-visual > img { height: auto; object-fit: contain; }.visual-toolbar { height: 55px; padding: 0 13px; }.visual-toolbar span { font-size: 13px; }.visual-toolbar button { font-size: 11px; }.inventory-bottom > span { min-height: 74px; padding: 10px; }.inventory-bottom strong { font-size: 14px; }.inventory-bottom small { font-size: 11px; }.status-journey { grid-template-columns: 1fr; gap: 10px; margin-top: 50px; }.status-journey i { width: 1px; height: 20px; margin-left: 7px; }.status-journey i::after { right: -3px; top: auto; bottom: -1px; transform: rotate(135deg); }
  .scanner-visual { grid-template-columns: 1fr; gap: 0; }.registration-camera { min-height: 430px; padding: 43px 27px 60px; }.permit-card { min-height: 300px; transform: none; }.permit-columns { grid-template-columns: .44fr 1.56fr; gap: 10px; }.permit-owner { padding: 8px; }.permit-owner b { margin-top: 18px; font-size: 10px; }.permit-owner span { font-size: 8px; }.permit-body { gap: 6px 8px; }.permit-body small { font-size: 8px; }.permit-body b { font-size: 9px; }.permit-arrow { margin: -8px auto; transform: rotate(90deg); }.vehicle-entry { min-height: 365px; }.entry-actions { grid-template-columns: 1fr 1fr; }.entry-actions span { font-size: 9px; }
  .studio-workspace { border-radius: 17px; }.studio-preview { min-height: auto; aspect-ratio: 4 / 3; }.studio-controls { padding: 22px; }.studio-control { min-height: 78px; }.studio-control small { font-size: 11px; }.studio-note { margin: 20px 0; }
  .tab-list { overflow-x: auto; grid-template-columns: repeat(3,minmax(140px,1fr)); }.tab-list button { min-height: 55px; padding: 0 12px; font-size: 13px; }.tab-panel { padding: 31px 22px 38px; gap: 30px; }.tab-copy h3 { font-size: 34px; }.docs-visual { height: 365px; overflow: hidden; }.document { width: 270px; height: 350px; padding: 23px; }.document-back { transform: translate(-70%,-48%) rotate(-7deg); }.document-middle { transform: translate(-40%,-51%) rotate(4deg); }.document-front { transform: translate(-55%,-50%); }.customer-visual, .workshop-visual { padding: 21px; }.customer-stats > span { padding: 12px 8px; }.customer-stats small { font-size: 11px; }.history-row > span { display: none; }
  .report-kpis { grid-template-columns: 1fr 1fr; }.report-kpis > span { min-height: 110px; padding: 17px; }.report-kpis > span:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.11); }.report-kpis > span:nth-child(4), .report-kpis > span:nth-child(5) { border-top: 1px solid rgba(255,255,255,.11); }.report-kpis > span:nth-child(5) { grid-column: 1 / -1; border-left: 0; }.report-kpis small { font-size: 11px; }.report-kpis strong { font-size: 19px; }.report-kpis em { font-size: 10px; }.chart-panel { padding: 22px 16px; }.chart-head { flex-direction: column; gap: 5px; }.stock-panel { display: block; padding: 24px; }.donut { margin: 24px auto; }.stock-panel ul { margin-top: 20px; }
  .setup-steps { grid-template-columns: 1fr; gap: 35px; margin-top: 52px; }.setup-steps::before { left: 29px; right: auto; top: 30px; bottom: 30px; width: 1px; height: auto; }.setup-steps li { align-items: flex-start; flex-direction: row; gap: 18px; text-align: left; }.setup-steps li > div { margin-top: 4px; }.setup-steps p { max-width: none; }
  .billing-toggle { width: 100%; }.billing-toggle button { min-width: 0; flex: 1; }.price-cards { grid-template-columns: 1fr; }.price-card, .price-card:last-child { min-height: auto; grid-column: auto; padding: 28px; }.plan-title { min-height: auto; margin-bottom: 28px; }.comparison { margin-top: 72px; }.comparison-head { align-items: flex-start; flex-direction: column; }.comparison-head h3 { font-size: 28px; }
  .faq-grid { gap: 36px; }.faq-list summary { min-height: 68px; font-size: 14px; }.faq-list details p { margin-right: 0; font-size: 14px; }
  .closing-section { padding: 86px 0 110px; }.demo-form { padding: 24px 19px; }.form-two { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding: 54px 0 40px; }.footer-brand { grid-column: 1 / -1; }.footer-main address { margin-top: 0; }.footer-bottom { min-height: 100px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; padding-bottom: 76px; }
  .mobile-demo-bar { position: fixed; z-index: 190; inset: auto 0 0; min-height: calc(68px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); color: var(--ink); border-top: 1px solid var(--line); background: rgba(255,255,255,.96); box-shadow: 0 -12px 35px rgba(7,20,46,.12); backdrop-filter: blur(16px); }.mobile-demo-bar > span { display: grid; }.mobile-demo-bar small { color: var(--muted); font-size: 10px; }.mobile-demo-bar strong { font-size: 14px; }.mobile-demo-bar a { min-height: 43px; display: inline-flex; align-items: center; padding: 0 19px; color: white; border-radius: 9px; background: var(--blue); font-size: 13px; font-weight: 850; }
}

@media (max-width: 390px) {
  .hero-copy h1 { font-size: 42px; }
  .button { padding-inline: 18px; font-size: 14px; }
  .product-screen > img { height: 190px; }
  .registration-camera { min-height: 404px; padding-inline: 22px; }.permit-card { min-height: 282px; padding: 17px; }.permit-head strong { font-size: 12px; }.permit-head small { font-size: 8px; }.permit-columns { grid-template-columns: .4fr 1.6fr; }.permit-owner { display: none; }.permit-body { grid-column: 1 / -1; gap: 5px 7px; }.permit-body b { font-size: 9px; }
  .studio-preview { aspect-ratio: 1 / 1; }
  .document { width: 245px; }
  .footer-main { grid-template-columns: 1fr; }.footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-ready .reveal { opacity: 1; transform: none; transition: none; }
  .scan-line { animation: none; top: 70%; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Multi-page product site */
.desktop-nav a[aria-current="page"], .mobile-nav a[aria-current="page"] { color: var(--blue-dark); }
.desktop-nav a[aria-current="page"]::after { right: 0; }
.product-page { background: var(--white); }
.page-hero { position: relative; overflow: hidden; padding: 174px 0 108px; color: white; background: var(--navy-900); }
.page-hero::before { content: ""; position: absolute; width: 780px; height: 780px; right: -250px; top: -360px; border-radius: 50%; background: radial-gradient(circle, rgba(36,91,255,.4), rgba(36,91,255,0) 67%); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 30px 30px; mask-image: linear-gradient(105deg, black, transparent 70%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(440px,1.12fr); align-items: center; gap: 82px; }
.page-hero-copy { max-width: 720px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 0 0 27px; color: rgba(255,255,255,.5); font-size: 12px; font-weight: 750; }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-style: normal; opacity: .55; }
.page-hero h1 { margin: 0; max-width: 800px; font-size: clamp(52px, 6.2vw, 82px); line-height: .98; letter-spacing: -.055em; }
.page-hero h1 span { color: #9bb5ff; }
.page-lead { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 19px; line-height: 1.72; }
.page-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.page-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 33px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 720; }
.page-proof li::before { content: "✓"; margin-right: 8px; color: #78daa9; font-weight: 950; }
.page-hero-card { position: relative; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.075); box-shadow: 0 42px 100px rgba(0,0,0,.3); backdrop-filter: blur(10px); }
.page-hero-card > img { width: 100%; display: block; border-radius: 14px; background: white; }
.page-hero-card-caption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 8px 2px; color: rgba(255,255,255,.62); font-size: 12px; }
.page-hero-card-caption strong { color: white; font-size: 13px; }
.page-hero-card-caption span::before { content: ""; width: 7px; height: 7px; display: inline-block; margin-right: 8px; border-radius: 50%; background: #55d79b; box-shadow: 0 0 0 5px rgba(85,215,155,.12); }
.page-hero-card .screen-summary { overflow: hidden; border-radius: 0 0 13px 13px; background: white; }

.page-section { padding: 116px 0; }
.page-section-soft { background: var(--surface); }
.page-section-dark { color: white; background: var(--navy-950); }
.section-heading { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.section-heading h2 { max-width: 850px; margin: 0; font-size: clamp(42px, 4.7vw, 64px); line-height: 1.03; letter-spacing: -.048em; }
.section-heading > p { max-width: 600px; margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.page-section-dark .section-heading > p { color: rgba(255,255,255,.62); }
.page-section-dark .section-heading h2 { color: white; }
.section-heading-centered { max-width: 850px; display: block; margin: 0 auto 58px; text-align: center; }
.section-heading-centered > p { max-width: 700px; margin: 22px auto 0; }
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.module-card { min-height: 310px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 19px; background: white; box-shadow: 0 18px 50px rgba(15,35,72,.055); }
.module-card:hover { border-color: #b8c8e7; box-shadow: 0 24px 62px rgba(15,35,72,.11); transform: translateY(-3px); }
.module-card { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.module-number { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 34px; color: var(--blue-dark); border-radius: 13px; background: var(--blue-soft); font-size: 12px; font-weight: 900; }
.module-card h3 { margin: 0; font-size: 24px; letter-spacing: -.025em; }
.module-card p { margin: 14px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.module-card a { margin-top: auto; color: var(--blue-dark); font-size: 13px; font-weight: 850; }
.module-card ul { display: grid; gap: 10px; margin: 16px 0 0; padding: 0; color: var(--text); list-style: none; font-size: 13px; }
.module-card li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }
.module-card-wide { grid-column: span 2; }

.feature-band { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.feature-band-reverse { grid-template-columns: 1.15fr .85fr; }
.feature-band-copy h2 { margin: 0; font-size: clamp(40px, 4.2vw, 60px); line-height: 1.04; letter-spacing: -.045em; }
.feature-band-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.feature-band-copy ul { display: grid; gap: 13px; margin: 29px 0 0; padding: 0; list-style: none; }
.feature-band-copy li { display: flex; gap: 12px; color: var(--text); font-size: 14px; line-height: 1.55; }
.feature-band-copy li::before { content: "✓"; color: var(--green); font-weight: 950; }
.feature-media { overflow: hidden; padding: 13px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow-soft); }
.feature-media img { width: 100%; display: block; border-radius: 13px; }
.feature-media-dark { border-color: rgba(255,255,255,.14); background: #0d1b36; box-shadow: 0 35px 85px rgba(0,0,0,.3); }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; margin-top: 44px; border: 1px solid var(--line); border-radius: 17px; background: var(--line); }
.stat-row span { min-height: 112px; display: grid; align-content: center; gap: 5px; padding: 21px; background: white; }
.stat-row strong { font-size: 25px; letter-spacing: -.03em; }
.stat-row small { color: var(--muted); font-size: 11px; }

.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 55px; }
.process-grid article { position: relative; min-height: 230px; padding: 29px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.process-grid article::before { counter-increment: process; content: "0" counter(process); display: block; margin-bottom: 47px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.process-grid article:not(:last-child)::after { content: "→"; position: absolute; z-index: 3; right: -25px; top: 47px; width: 32px; height: 32px; display: grid; place-items: center; color: var(--blue); border: 1px solid var(--line); border-radius: 50%; background: white; font-weight: 900; }
.process-grid h3 { margin: 0; font-size: 19px; }
.process-grid p { margin: 11px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.permit-photo-frame { position: relative; overflow: hidden; width: 100%; aspect-ratio: 1234 / 861; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: #d8d4c3; box-shadow: 0 22px 55px rgba(0,0,0,.32); transform: rotate(-.45deg); }
.permit-photo-frame img { width: 100%; height: 100%; display: block; object-fit: contain; }
.permit-photo-frame .scan-line { left: 0; right: 0; }
.permit-original { margin: 0; }
.permit-original-frame { overflow: hidden; width: 100%; aspect-ratio: 1234 / 861; display: grid; place-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow-soft); }
.permit-original-frame img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 12px; }
.permit-credit { margin: 13px 3px 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.permit-credit a { color: var(--blue-dark); text-decoration: underline; }
.permit-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: start; gap: 72px; }
.field-map { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--line); }
.field-map div { min-height: 62px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 17px; padding: 11px 16px; background: white; }
.field-map b { width: 37px; height: 37px; display: grid; place-items: center; color: var(--blue-dark); border-radius: 10px; background: var(--blue-soft); font-size: 12px; }
.field-map span { color: var(--text); font-size: 13px; font-weight: 780; }
.field-map small { color: var(--muted); font-size: 11px; text-align: right; }

.studio-page-showcase { overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.13); box-shadow: 0 40px 100px rgba(0,0,0,.35); }
.studio-page-showcase figure { position: relative; min-height: 420px; margin: 0; overflow: hidden; background: #101827; }
.studio-page-showcase img { width: 100%; height: 100%; display: block; object-fit: cover; }
.studio-page-showcase figcaption { position: absolute; left: 17px; bottom: 17px; padding: 8px 11px; color: white; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; background: rgba(5,11,24,.72); font-size: 11px; font-weight: 800; backdrop-filter: blur(8px); }

.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.audience-card { min-height: 380px; display: flex; flex-direction: column; padding: 33px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.audience-card > span { align-self: flex-start; padding: 7px 10px; color: var(--blue-dark); border-radius: 7px; background: var(--blue-soft); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.audience-card h3 { margin: 42px 0 0; font-size: 28px; letter-spacing: -.035em; }
.audience-card p { margin: 16px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.audience-card ul { display: grid; gap: 11px; margin: auto 0 0; padding: 0; list-style: none; color: var(--text); font-size: 13px; }
.audience-card li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 950; }

.page-price-hero { padding-bottom: 84px; text-align: center; }
.page-price-hero .page-hero-copy { max-width: 900px; margin-inline: auto; }
.page-price-hero .page-lead { margin-inline: auto; }
.page-price-hero .page-actions, .page-price-hero .page-proof { justify-content: center; }
.pricing-page .pricing-section { padding-top: 95px; }
.pricing-page .pricing-head { grid-template-columns: 1fr auto; }
.price-smallprint { max-width: 890px; margin: 42px auto 0; color: var(--muted); text-align: center; font-size: 12px; line-height: 1.7; }
.faq-page-list { max-width: 900px; display: grid; gap: 0; margin: 0 auto; }
.faq-page-list details { border-bottom: 1px solid var(--line); }
.faq-page-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 820; }
.faq-page-list summary::-webkit-details-marker { display: none; }
.faq-page-list summary span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); border: 1px solid var(--line); border-radius: 50%; font-size: 21px; transition: transform .2s ease; }
.faq-page-list details[open] summary span { transform: rotate(45deg); }
.faq-page-list details p { max-width: 790px; margin: 0 54px 25px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 75px; }
.contact-copy h2 { margin: 0; font-size: clamp(42px,4.5vw,62px); line-height: 1.04; letter-spacing: -.048em; }
.contact-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.contact-cards { display: grid; gap: 12px; margin-top: 34px; }
.contact-cards a, .contact-cards div { display: grid; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.contact-cards small { color: var(--muted); font-size: 11px; }
.contact-cards strong { color: var(--ink); font-size: 14px; }
.contact-layout .demo-form { border: 1px solid var(--line); box-shadow: var(--shadow-soft); }

.page-cta { position: relative; overflow: hidden; padding: 92px 0; color: white; background: var(--navy-900); }
.page-cta::before { content: ""; position: absolute; width: 620px; height: 620px; right: -230px; top: -310px; border-radius: 50%; background: radial-gradient(circle, rgba(36,91,255,.52), transparent 67%); }
.page-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.page-cta h2 { max-width: 780px; margin: 0; font-size: clamp(40px,4.8vw,64px); line-height: 1.03; letter-spacing: -.05em; }
.page-cta p { max-width: 650px; margin: 20px 0 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; }
.page-cta-actions { display: flex; flex: 0 0 auto; gap: 12px; }
.source-note { padding: 18px 0; color: var(--muted); border-top: 1px solid var(--line); background: white; font-size: 11px; text-align: center; }
.source-note a { color: var(--blue-dark); text-decoration: underline; }

@media (max-width: 1120px) {
  .page-hero-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article:nth-child(2)::after { display: none; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .page-hero { padding: 145px 0 90px; }
  .page-hero-grid, .section-heading, .feature-band, .feature-band-reverse, .permit-detail-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-copy { max-width: 760px; }
  .page-hero-card { max-width: 820px; }
  .section-heading { align-items: start; }
  .section-heading > p { max-width: 760px; }
  .feature-band-reverse .feature-media { order: 2; }
  .feature-band-reverse .feature-band-copy { order: 1; }
  .page-cta-inner { align-items: flex-start; flex-direction: column; }
  .pricing-page .pricing-head { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .page-hero { padding: 118px 0 72px; }
  .page-hero h1 { font-size: clamp(44px,13vw,58px); }
  .page-lead { font-size: 17px; }
  .page-actions { flex-direction: column; }
  .page-actions .button { width: 100%; }
  .page-hero-card { padding: 9px; border-radius: 17px; }
  .page-hero-card-caption { align-items: flex-start; flex-direction: column; gap: 6px; }
  .page-section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .feature-band-copy h2, .contact-copy h2 { font-size: clamp(38px,11vw,48px); }
  .module-grid, .audience-grid, .process-grid, .studio-page-showcase { grid-template-columns: 1fr; }
  .module-card-wide, .audience-card:last-child { grid-column: auto; }
  .module-card { min-height: 270px; padding: 24px; }
  .module-number { margin-bottom: 25px; }
  .stat-row { grid-template-columns: 1fr; }
  .process-grid article:not(:last-child)::after { display: none; }
  .process-grid article { min-height: 205px; }
  .process-grid article::before { margin-bottom: 32px; }
  .permit-photo-frame { transform: none; }
  .permit-original { min-width: 0; width: 100%; }
  .permit-original-frame { padding: 8px; border-radius: 16px; }
  .permit-original-frame img { border-radius: 9px; }
  .permit-credit { margin-top: 10px; font-size: 10px; }
  .field-map div { grid-template-columns: 46px 1fr; }
  .field-map small { grid-column: 2; text-align: left; }
  .studio-page-showcase figure { min-height: 310px; }
  .audience-card { min-height: 340px; padding: 27px; }
  .page-cta { padding: 80px 0 100px; }
  .page-cta-actions { width: 100%; flex-direction: column; }
  .page-cta-actions .button { width: 100%; }
  .contact-layout .demo-form { padding: 24px 19px; }
  .faq-page-list summary { min-height: 72px; font-size: 14px; }
  .faq-page-list details p { margin-right: 0; font-size: 14px; }
  .product-page .mobile-demo-bar a { min-width: 112px; justify-content: center; }
}
