/* ==========================================================================
   BiometricDevice.ae — Zeronix Technology Trading LLC
   Palette per brand spec. Layout uses logical properties throughout so the
   Arabic (RTL) build mirrors without a second stylesheet.
   ========================================================================== */

:root {
  --navy: #0B1F3A;
  --navy-800: #102949;
  --navy-700: #16355c;
  --blue: #1E90FF;
  --blue-600: #0f7ae6;
  --teal: #17A2B8;
  --green: #2ECC71;
  --amber: #F5A623;
  --bg: #F7F9FC;
  --surface: #FFFFFF;
  --text: #1A1D23;
  --muted: #5b6472;
  --line: #e3e8f0;
  --line-dark: rgba(255,255,255,.12);

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(11,31,58,.06), 0 2px 8px rgba(11,31,58,.05);
  --shadow: 0 4px 12px rgba(11,31,58,.08), 0 12px 32px rgba(11,31,58,.07);
  --shadow-lg: 0 12px 28px rgba(11,31,58,.12), 0 28px 64px rgba(11,31,58,.10);

  --wrap: 1180px;
  --gap: clamp(1rem, 2.4vw, 1.75rem);
  --section-y: clamp(3rem, 7vw, 5.5rem);

  /* Three roles: Mulish carries body copy, Space Grotesk gives headings their
     technical character, Saira handles uppercase micro-labels and numerals. */
  --font: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-ui: "Saira", "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-ar: "Noto Kufi Arabic", "Tajawal", "Mulish", -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* Arabic has no Latin-family equivalent for the three above, so every role
   collapses onto the Arabic face. Redefining the tokens (rather than setting
   font-family on body) means headings and UI labels follow too. */
html[dir="rtl"] {
  --font: var(--font-ar);
  --font-display: var(--font-ar);
  --font-ui: var(--font-ar);
}
html[dir="rtl"] body { line-height: 1.85; }

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.02em; color: var(--navy); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { letter-spacing: 0; line-height: 1.4; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.9vw, 2.15rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.3rem); }

/* Saira carries two jobs: the tracked uppercase micro-labels, and any figure
   the reader is meant to compare (prices, KPIs, stats). Grouped here so the
   type system stays legible instead of being scattered across the file. */
.kicker, .step-label, .panel h5, .kpi span, thead th, .site-footer h4,
.dash-live, .result-card .ribbon, .pill, .feed-row .tag, .bars-axis span,
.logo, .price, .kpi b, .result-price, .calc-out .range, .stat b, .donut-label b {
  font-family: var(--font-ui);
}
.price, .kpi b, .result-price, .calc-out .range, .stat b, .donut-label b {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

p  { margin: 0 0 1.1em; }
a  { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0 0 1.1em; padding-inline-start: 1.25em; }
li { margin-bottom: .4em; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--dark { background: var(--navy); color: #dce6f5; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--alt { background: #eef2f8; }
.center { text-align: center; }
.muted { color: var(--muted); }
.section--dark .muted { color: #9fb2cd; }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--muted); max-width: 68ch; }
.section--dark .lead { color: #b9c9e2; }
.center .lead { margin-inline: auto; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,31,58,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: 68px; }
.logo { display: flex; align-items: center;line-height: 0.9rem; gap: .6rem; color: #fff; font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em; }
.logo:hover { text-decoration: none; }
.logo-mark { width: 32px; height: 32px; flex: none; }
.logo small { display: block; font-size: .48rem; font-weight: 500; color: #8fa8c8; letter-spacing: .04em; text-transform: uppercase; }
html[dir="rtl"] .logo small { letter-spacing: 0; }

.nav { display: flex; align-items: center; gap: .15rem; margin-inline-start: auto; }
.nav a {
  color: #cfdcef; padding: .5rem .7rem; border-radius: 8px; font-size: .93rem; font-weight: 500;
  white-space: nowrap; transition: background .15s, color .15s;
}
.nav a:hover { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.nav a.is-active { color: #fff; background: rgba(30,144,255,.18); }
.nav-actions { display: flex; align-items: center; gap: .5rem; margin-inline-start: .75rem; }
.lang-switch {
  color: #cfdcef; border: 1px solid var(--line-dark); border-radius: 8px;
  padding: .38rem .7rem; font-size: .85rem; font-weight: 600;
}
.lang-switch:hover { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-dark); border-radius: 8px; color: #fff; padding: .5rem .6rem; cursor: pointer; }

@media (max-width: 1040px) {
  .nav-toggle { display: block; margin-inline-start: auto; }
  .nav {
    position: fixed; inset-block-start: 68px; inset-inline: 0; inset-block-end: 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--navy); padding: 1rem 1.25rem 3rem; overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .18s;
  }
  .nav[data-open="true"] { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: .8rem .6rem; border-bottom: 1px solid var(--line-dark); border-radius: 0; font-size: 1rem; }
  .nav-actions { margin: 1rem 0 0; flex-direction: column; align-items: stretch; }
  .nav-actions .btn { justify-content: center; }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.35rem; border-radius: 10px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .12s, box-shadow .15s, background .15s;
  text-align: center; line-height: 1.3;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: none; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(30,144,255,.32); }
.btn--primary:hover { background: var(--blue-600); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--outline { background: var(--surface); color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue-600); }
.btn--whatsapp { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(46,204,113,.3); }
.btn--whatsapp:hover { background: #27b463; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--sm { padding: .5rem .85rem; font-size: .86rem; border-radius: 8px; }
.btn--lg { padding: .95rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.center .btn-row { justify-content: center; }

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; background: var(--navy); color: #e6eefb; overflow: hidden; isolation: isolate; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 78% 18%, rgba(23,162,184,.30), transparent 62%),
    radial-gradient(55% 60% at 12% 92%, rgba(30,144,255,.24), transparent 60%);
}
.hero-net { position: absolute; inset: 0; z-index: -2; opacity: .55; }

/* Background slideshow: one industry scene per slide, cross-fading on a 30s
   loop with a slow drift. Sits on the same layer the network graphic uses, so
   the ::after tint still washes over it and keeps the copy readable. */
.hero-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
/* Scrim over each photo: heaviest on the side the copy sits on, so white text
   keeps its contrast no matter how bright the supplied image is. */
.hero-slide::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(11,31,58,.95) 0%, rgba(11,31,58,.80) 38%, rgba(11,31,58,.28) 100%),
    linear-gradient(to bottom, rgba(11,31,58,.30), rgba(11,31,58,.10) 40%, rgba(11,31,58,.50));
}
html[dir="rtl"] .hero-slide::after {
  background:
    linear-gradient(to left, rgba(11,31,58,.95) 0%, rgba(11,31,58,.80) 38%, rgba(11,31,58,.28) 100%),
    linear-gradient(to bottom, rgba(11,31,58,.30), rgba(11,31,58,.10) 40%, rgba(11,31,58,.50));
}
.hero-slide { position: absolute; inset: 0; opacity: 0; animation: hero-slide-cycle 30s ease-in-out infinite; }
/* Base opacity above is 0 so idle slides stay hidden, but that also hides the
   first slide during the instant before its animation timeline resolves —
   a visible blank/navy flash on slow connections. Pin it open by default;
   the running animation still overrides this once it engages. */
.hero-slide:first-child { opacity: 1; }
/* Photos are cropped to fill. The focal point is biased away from the copy:
   the subject side stays visible while the text side falls on quieter pixels. */
.hero-scene {
  /* Focal point sits right of centre (away from the copy) and above the middle:
     sources squarer than the hero lose height to the crop, and heads live in
     the upper half. */
  width: 100%; height: 100%; display: block; object-fit: cover; object-position: 72% 38%;
  /* The slow zoom lives on the image, not the slide: scaling the slide also
     scaled its label out past the edge of the hero. Delay is inherited so the
     drift stays in step with that slide's fade. */
  animation: hero-scene-drift 30s ease-in-out infinite;
  animation-delay: inherit;
}
html[dir="rtl"] .hero-scene { object-position: 28% 38%; }
.hero-slide-label {
  /* 6rem clears the floating WhatsApp button, which is fixed to the same
     corner in LTR and mirrors to the other side in RTL. */
  position: absolute; z-index: 2; inset-block-end: 1.5rem; inset-inline-end: 6rem;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #cfdcef;
  background: rgba(11,31,58,.55); border: 1px solid var(--line-dark);
  padding: .34rem .7rem; border-radius: 999px; backdrop-filter: blur(4px);
}
html[dir="rtl"] .hero-slide-label { letter-spacing: 0; }
.hero-slide-label i { width: 7px; height: 7px; border-radius: 50%; flex: none; }
@keyframes hero-slide-cycle {
  0%        { opacity: 0; }
  2%        { opacity: 1; }
  15%       { opacity: 1; }
  18%, 100% { opacity: 0; }
}
@keyframes hero-scene-drift {
  0%        { transform: scale(1.07); }
  18%, 100% { transform: scale(1); }
}
@media (max-width: 720px) { .hero-slide-label { display: none; } }
/* The blanket reduced-motion rule at the end of this file collapses every
   animation to its final frame, which for the slideshow means "all slides
   hidden". Pin the first one open instead. */
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-scene { animation-name: none !important; transform: none !important; }
  .hero-slide { opacity: 0 !important; }
  .hero-slide:first-child { opacity: 1 !important; }
}

/* Top-aligned: the dashboard column is much taller than the copy, and centring
   it opened a large void above the headline. */
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; padding-block: clamp(3rem, 6.5vw, 5.5rem); }
/* Text-only hero (home page): a single start-aligned column over the slideshow,
   held to a readable measure and set a step smaller than the global h1. */
.hero-inner--solo { grid-template-columns: 1fr; }
.hero-inner--solo > * { max-width: 40rem; }
.hero-inner--solo h1 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
.hero-inner--solo .lead { max-width: 46ch; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p { color: #b9c9e2; font-size: clamp(1.02rem,1.5vw,1.16rem); max-width: 56ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.hero .btn-row { margin-top: 1.6rem; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

.kicker {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--teal); background: rgba(23,162,184,.14); border: 1px solid rgba(23,162,184,.3);
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1rem;
}
html[dir="rtl"] .kicker { letter-spacing: 0; }
.kicker--light { color: var(--blue-600); background: rgba(30,144,255,.1); border-color: rgba(30,144,255,.22); }

.pill {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600;
  padding: .32rem .7rem; border-radius: 999px; background: rgba(255,255,255,.08);
  border: 1px solid var(--line-dark); color: #cfdcef;
}
.pill--green { color: #7ee2a8; background: rgba(46,204,113,.13); border-color: rgba(46,204,113,.3); }
.pill--amber { color: #ffc978; background: rgba(245,166,35,.14); border-color: rgba(245,166,35,.32); }
.pill--light { background: #fff; border-color: var(--line); color: var(--muted); }
.pill--tag { background: rgba(30,144,255,.1); border-color: rgba(30,144,255,.24); color: var(--blue-600); }

/* --- Trust strip -------------------------------------------------------- */
.trust-strip { background: var(--navy-800); border-block: 1px solid var(--line-dark); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; padding-block: .95rem; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: #b9c9e2; font-weight: 500; }
.trust-item svg { color: var(--green); flex: none; }
.trust-item b { color: #fff; font-weight: 700; }

/* --- Industries slider --------------------------------------------------- */
.industries { position: relative; }
.industries-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline-start: 1px;
  padding-block: .25rem .5rem; margin-inline: -1px; scrollbar-width: none;
}
.industries-track::-webkit-scrollbar { display: none; }
.industry-card {
  scroll-snap-align: start; flex: 0 0 auto; width: min(272px, 78vw);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s, border-color .16s;
  display: flex; flex-direction: column;
}
.industry-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfdcf0; }
.industry-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.industry-card p { color: var(--muted); font-size: .87rem; margin: 0; }
.industry-badge { margin-bottom: .75rem; }

.industries-nav { display: flex; justify-content: center; gap: .6rem; margin-top: 1.1rem; }
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--navy); cursor: pointer;
  transition: background .15s, border-color .15s, opacity .15s;
}
.slider-btn:hover { border-color: var(--blue); color: var(--blue-600); }
.slider-btn:disabled { opacity: .35; cursor: default; border-color: var(--line); color: var(--navy); }
html[dir="rtl"] .slider-btn svg { transform: scaleX(-1); }

/* --- Cards & grids ------------------------------------------------------ */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s, border-color .16s;
  display: flex; flex-direction: column;
}
a.card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfdcf0; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .94rem; margin-bottom: 1rem; }
.card .card-foot { margin-top: auto; font-weight: 600; color: var(--blue-600); font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
.card--dark { background: var(--navy-800); border-color: var(--line-dark); color: #cfdcef; }
.card--dark h3 { color: #fff; }
.card--dark p { color: #9fb2cd; }
.card--flat { box-shadow: none; }

.icon-badge {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 1rem;
  background: rgba(30,144,255,.1); color: var(--blue-600); flex: none;
}
.icon-badge--teal { background: rgba(23,162,184,.12); color: var(--teal); }
.icon-badge--green { background: rgba(46,204,113,.12); color: #1f9e57; }
.icon-badge--amber { background: rgba(245,166,35,.14); color: #b9781a; }
.card--dark .icon-badge { background: rgba(30,144,255,.16); color: #7cc0ff; }

.section-head { max-width: 62ch; margin-bottom: clamp(1.6rem, 3vw, 2.5rem); }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--muted); margin-bottom: 0; }
.section--dark .section-head p { color: #a9bcd6; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* --- Device table ------------------------------------------------------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
table { border-collapse: collapse; width: 100%; font-size: .93rem; min-width: 660px; }
th, td { padding: .85rem 1rem; text-align: start; border-bottom: 1px solid var(--line); vertical-align: middle; }
thead th { background: #f2f6fc; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; white-space: nowrap; }
html[dir="rtl"] thead th { letter-spacing: 0; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #f8fbff; }
td b { color: var(--navy); }
.price { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--navy); white-space: nowrap; }
.price small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; }

.cmp-table th:first-child, .cmp-table td:first-child { min-width: 230px; font-weight: 600; color: var(--navy); }
.cmp-table .col-ours { background: rgba(30,144,255,.05); }
.cmp-table thead .col-ours { background: rgba(30,144,255,.12); color: var(--blue-600); }
.yes { color: #1f9e57; font-weight: 700; }
.no { color: #b6bfcd; }

/* --- Feature list ------------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; margin: 0; font-size: .96rem; }
.checklist li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: .16rem; border-radius: 50%;
  background: rgba(46,204,113,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ECC71' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checklist--dark li { color: #cfdcef; }
.crosslist li::before {
  background: rgba(245,166,35,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* --- Prose -------------------------------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-inline-start: 1.15em; }
.prose li { color: #333a45; }
.prose blockquote {
  margin: 1.8em 0; padding: 1.1rem 1.35rem; border-inline-start: 3px solid var(--teal);
  background: #fff; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--muted); font-size: .95rem;
}
html[dir="rtl"] .prose blockquote { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }

/* --- Breadcrumbs -------------------------------------------------------- */
.crumbs { font-size: .84rem; color: var(--muted); padding-block: 1rem .25rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue-600); }
.crumbs span { color: #aab4c3; }
.page-head { padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(1.2rem, 2.5vw, 2rem); border-bottom: 1px solid var(--line); background: var(--surface); }

/* --- Sticky CTA bar ----------------------------------------------------- */
.sticky-cta {
  position: sticky; bottom: 0; z-index: 40; background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px); border-top: 1px solid var(--line); padding-block: .7rem;
  box-shadow: 0 -4px 20px rgba(11,31,58,.07);
}
.sticky-cta .wrap { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between; }
.sticky-cta p { margin: 0; font-weight: 600; font-size: .93rem; color: var(--navy); }
.sticky-cta small { display: block; font-weight: 500; color: var(--muted); }
@media (max-width: 620px) { .sticky-cta .wrap { justify-content: center; text-align: center; } .sticky-cta .btn { flex: 1; } }

/* --- Floating WhatsApp -------------------------------------------------- */
.wa-float {
  position: fixed; inset-block-end: 84px; inset-inline-end: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transition: transform .18s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: wa-pulse 2.6s infinite;
}
@keyframes wa-pulse { 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.wa-nudge {
  position: fixed; inset-block-end: 84px; inset-inline-end: 88px; z-index: 69;
  max-width: 268px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .9rem 1rem; box-shadow: var(--shadow-lg); font-size: .9rem;
  opacity: 0; transform: translateY(8px); pointer-events: none; transition: .25s;
}
.wa-nudge[data-show="true"] { opacity: 1; transform: none; pointer-events: auto; }
.wa-nudge p { margin: 0 0 .6rem; color: var(--navy); font-weight: 600; }
.wa-nudge-close { position: absolute; inset-block-start: 4px; inset-inline-end: 6px; background: none; border: 0; color: #b6bfcd; font-size: 1.1rem; cursor: pointer; line-height: 1; padding: .2rem .35rem; }
@media (max-width: 560px) { .wa-nudge { inset-inline: 16px auto; max-width: calc(100vw - 100px); } }

/* --- Modal -------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 90; display: none; place-items: center; padding: 1.25rem; }
.modal[data-open="true"] { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11,31,58,.62); backdrop-filter: blur(3px); }
.modal-card {
  position: relative; background: #fff; border-radius: var(--radius); max-width: 460px; width: 100%;
  padding: 1.75rem; box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto;
}
.modal-close { position: absolute; inset-block-start: .6rem; inset-inline-end: .75rem; background: none; border: 0; font-size: 1.4rem; color: #9aa5b4; cursor: pointer; line-height: 1; }

/* --- Forms -------------------------------------------------------------- */
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .72rem .85rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .95rem; background: #fff; color: var(--text); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,144,255,.16);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .75rem; }
.form-status { margin-top: .9rem; padding: .8rem 1rem; border-radius: 10px; font-size: .9rem; display: none; }
.form-status[data-state="ok"] { display: block; background: rgba(46,204,113,.12); color: #17703f; border: 1px solid rgba(46,204,113,.3); }
.form-status[data-state="error"] { display: block; background: rgba(245,166,35,.14); color: #8a5a05; border: 1px solid rgba(245,166,35,.35); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2rem); box-shadow: var(--shadow); }

/* --- Compare assistant -------------------------------------------------- */
.assistant { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.assistant-head { background: var(--navy); color: #fff; padding: 1.1rem 1.35rem; display: flex; align-items: center; gap: .8rem; }
.assistant-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(46,204,113,.2); flex: none; }
.assistant-head h3 { color: #fff; margin: 0; font-size: 1rem; }
.assistant-head small { color: #9fb2cd; display: block; font-size: .78rem; font-weight: 500; }
.assistant-body { padding: clamp(1.1rem, 2.5vw, 1.75rem); min-height: 340px; }
.assistant-foot { border-top: 1px solid var(--line); padding: .9rem 1.1rem; background: #fbfcfe; }

.progress { height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 1.25rem; }
.progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--teal), var(--blue)); border-radius: 999px; transition: width .35s ease; }
.step-label { font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
html[dir="rtl"] .step-label { letter-spacing: 0; }

.opt-grid { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.opt {
  border: 1px solid var(--line); background: #fff; border-radius: 11px; padding: .85rem 1rem;
  font: inherit; font-size: .95rem; font-weight: 600; color: var(--navy); cursor: pointer; text-align: start;
  transition: border-color .14s, background .14s, transform .12s;
}
.opt:hover { border-color: var(--blue); background: rgba(30,144,255,.05); transform: translateY(-1px); }
.opt[aria-pressed="true"] { border-color: var(--blue); background: rgba(30,144,255,.1); }

.chat-log { display: flex; flex-direction: column; gap: .75rem; max-height: 380px; overflow-y: auto; padding-inline-end: .25rem; }
.msg { max-width: 88%; padding: .8rem 1rem; border-radius: 14px; font-size: .94rem; line-height: 1.6; }
.msg--bot { background: #f2f6fc; color: var(--text); border-start-start-radius: 4px; align-self: flex-start; }
.msg--user { background: var(--blue); color: #fff; border-start-end-radius: 4px; align-self: flex-end; }
.msg--bot b { color: var(--navy); }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .85rem; }
.chip {
  border: 1px solid rgba(30,144,255,.3); background: rgba(30,144,255,.07); color: var(--blue-600);
  border-radius: 999px; padding: .42rem .85rem; font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer;
}
.chip:hover { background: rgba(30,144,255,.14); }
.chat-input { display: flex; gap: .5rem; }
.chat-input input { flex: 1; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: .93rem; }
.chat-input input:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,144,255,.16); }
.typing { display: inline-flex; gap: 3px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #9aa9bd; animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%,60%,100% { opacity: .25; } 30% { opacity: 1; } }

.entry-split { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.25rem; }
@media (max-width: 560px) { .entry-split { grid-template-columns: 1fr; } }
.entry-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem; background: #fff; cursor: pointer;
  font: inherit; text-align: start; transition: .15s;
}
.entry-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.entry-card strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: .2rem; }
.entry-card span { color: var(--muted); font-size: .86rem; }
.preset-list { display: grid; gap: .45rem; }
.preset {
  border: 0; background: #f2f6fc; border-radius: 9px; padding: .68rem .9rem; font: inherit; font-size: .9rem;
  color: var(--navy); cursor: pointer; text-align: start; display: flex; gap: .5rem; align-items: center;
}
.preset:hover { background: rgba(30,144,255,.1); color: var(--blue-600); }
.preset::before { content: "→"; color: var(--teal); font-weight: 700; }
html[dir="rtl"] .preset::before { content: "←"; }

/* --- Result card -------------------------------------------------------- */
.result-card { border: 2px solid var(--blue); border-radius: var(--radius); padding: 1.4rem; background: linear-gradient(180deg, rgba(30,144,255,.05), #fff 40%); position: relative; }
.result-card .ribbon {
  position: absolute; inset-block-start: -12px; inset-inline-start: 1.2rem;
  background: var(--blue); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .28rem .7rem; border-radius: 999px;
}
html[dir="rtl"] .result-card .ribbon { letter-spacing: 0; }
.result-alt { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; background: #fbfcfe; }
.result-price { font-size: 1.5rem; font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; }

/* --- Dashboard demo ----------------------------------------------------- */
.dash {
  background: #0d2039; border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  overflow: hidden; box-shadow: 0 24px 60px rgba(4,12,26,.45); color: #cfdcef;
  /* The dashboard appears both full-width (/dashboard) and in a narrow hero
     column, so its internals respond to its own width, not the viewport's. */
  container-type: inline-size;
}
.dash-bar { display: flex; align-items: center; gap: .5rem; padding: .7rem .95rem; background: #0a1a30; border-bottom: 1px solid rgba(255,255,255,.08); }
.dash-bar .tl { display: flex; gap: 6px; }
.dash-bar .tl i { width: 10px; height: 10px; border-radius: 50%; background: #24384f; }
.dash-bar .url { flex: 1; text-align: center; font-size: .74rem; color: #7d93b3; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.dash-body { display: grid; grid-template-columns: 178px 1fr; min-height: 430px; }
@media (max-width: 760px) { .dash-body { grid-template-columns: 1fr; } .dash-side { display: none; } }
/* The dashboard also renders inside a half-width column (hero, software
   section) at desktop viewports, where the 760px viewport query above never
   fires — so the 178px sidebar was permanently eating a third of a ~560px
   container and squeezing the feed/flags panels to single-letter names. */
@container (max-width: 640px) { .dash-body { grid-template-columns: 1fr; } .dash-side { display: none; } }
.dash-side { border-inline-end: 1px solid rgba(255,255,255,.08); padding: 1rem .75rem; background: rgba(255,255,255,.02); }
.dash-side .brandline { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: .88rem; margin-bottom: 1.1rem; padding-inline-start: .4rem; }
.dash-nav { display: grid; gap: .15rem; }
.dash-nav a, .dash-nav span {
  display: flex; align-items: center; gap: .55rem; padding: .5rem .6rem; border-radius: 8px;
  font-size: .82rem; color: #90a6c4; cursor: default;
}
.dash-nav .on { background: rgba(30,144,255,.16); color: #fff; font-weight: 600; }
.dash-main { padding: 1.1rem 1.2rem 1.4rem; }
.dash-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.dash-head h4 { color: #fff; margin: 0; font-size: 1.02rem; }
.dash-head .stamp { font-size: .75rem; color: #7d93b3; font-family: ui-monospace, Menlo, monospace; }
.dash-live { display: inline-flex; align-items: center; gap: .4rem; font-size: .74rem; font-weight: 700; color: #7ee2a8; text-transform: uppercase; letter-spacing: .07em; }
.dash-live i { width: 7px; height: 7px; border-radius: 50%; background: #2ECC71; animation: livepulse 1.6s infinite; }
@keyframes livepulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; margin-bottom: 1rem; }
@media (max-width: 620px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
/* Four uppercase labels across need real width; below that, go two-up rather
   than letting "ON SITE NOW" break onto three lines. */
@container (max-width: 640px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
.kpi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 11px; padding: .8rem .9rem; min-width: 0; }
.kpi span { display: block; font-size: .72rem; color: #A3B8D7; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .3rem; }
html[dir="rtl"] .kpi span, html[dir="rtl"] .dash-live { letter-spacing: 0; }
.kpi b { font-size: 1.5rem; color: #fff; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1.1; display: block; }
.kpi em { font-style: normal; font-size: .74rem; font-weight: 600; }
.kpi em.up { color: #7ee2a8; }
.kpi em.warn { color: #ffc978; }
.kpi em.flat { color: #A3B8D7; }

.dash-cols { display: grid; grid-template-columns: 1.35fr 1fr; gap: .8rem; }
/* Without min-width:0 a grid item cannot shrink below its content, so the
   left panel's text was stealing width from the feed and truncating names. */
.dash-cols > * { min-width: 0; }
@media (max-width: 860px) { .dash-cols { grid-template-columns: 1fr; } }
@container (max-width: 560px) { .dash-cols { grid-template-columns: 1fr; } }
.panel { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 11px; padding: .85rem .95rem; }
.panel h5 { margin: 0 0 .75rem; font-size: .8rem; color: #b9c9e2; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
html[dir="rtl"] .panel h5 { letter-spacing: 0; }

.bars { display: flex; align-items: flex-end; gap: 6px; height: 116px; }
.bars .bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #1E90FF, #17A2B8); opacity: .85; transition: height .7s cubic-bezier(.4,0,.2,1); position: relative; }
.bars .bar.peak { background: linear-gradient(180deg, #2ECC71, #17A2B8); opacity: 1; }
.bars-axis { display: flex; gap: 6px; margin-top: .45rem; }
.bars-axis span { flex: 1; text-align: center; font-size: .62rem; color: #6f86a6; }

/* The feed swaps a row every few seconds. Rows are a fixed height and the
   container reserves all four up front, so nothing below it ever reflows —
   without this the hero grid resizes on every insert. */
.feed { display: grid; gap: .5rem; grid-auto-rows: 52px; min-height: 232px; align-content: start; }
.feed-row { display: flex; align-items: center; gap: .6rem; padding: .45rem .55rem; border-radius: 8px; background: rgba(255,255,255,.03); animation: slidein .45s ease; height: 52px; overflow: hidden; }
@keyframes slidein { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.avatar { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; font-weight: 700; color: #fff; flex: none; }
.feed-row .who { flex: 1; min-width: 0; }
/* Explicit line-height so the row fits identically in LTR and RTL, where the
   body line-height is looser. */
.feed-row .who b { display: block; color: #e6eefb; font-size: .82rem; font-weight: 600; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-row .who span { display: block; font-size: .7rem; color: #7d93b3; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-row .tag { font-size: .68rem; font-weight: 700; padding: .18rem .45rem; border-radius: 5px; white-space: nowrap; }
.tag--in { background: rgba(46,204,113,.16); color: #7ee2a8; }
.tag--out { background: rgba(30,144,255,.16); color: #7cc0ff; }
.tag--late { background: rgba(245,166,35,.18); color: #ffc978; }
.tag--geo { background: rgba(23,162,184,.18); color: #6fd8ea; }

.donut { position: relative; display: grid; place-items: center; }
.donut svg { transform: rotate(-90deg); }
.donut .track { stroke: rgba(255,255,255,.08); }
.donut .val { stroke: #2ECC71; stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.donut-label { position: absolute; inset-block-start: 50%; transform: translateY(-50%); text-align: center; line-height: 1.3; }
.donut-label b { display: block; font-size: 1.55rem; color: #fff; font-weight: 800; }
.donut-label span { font-size: .7rem; color: #A3B8D7; }

.alerts { display: grid; gap: .45rem; }
.alert-row { display: flex; gap: .55rem; align-items: flex-start; font-size: .78rem; color: #b9c9e2; padding: .5rem .6rem; border-radius: 8px; background: rgba(245,166,35,.08); border-inline-start: 2px solid var(--amber); }
.alert-row.ai { background: rgba(23,162,184,.1); border-inline-start-color: var(--teal); }
.alert-row b { color: #fff; font-weight: 600; }

/* --- Phone mock --------------------------------------------------------- */
.phone { width: 232px; border-radius: 30px; background: #0a1a30; border: 8px solid #14283f; box-shadow: var(--shadow-lg); overflow: hidden; margin-inline: auto; }
.phone-top { height: 22px; background: #0a1a30; display: grid; place-items: center; }
.phone-top i { width: 60px; height: 5px; border-radius: 99px; background: #22384f; display: block; }
.phone-screen { padding: .9rem .85rem 1.1rem; color: #cfdcef; }
.phone-screen h6 { margin: 0 0 .15rem; color: #fff; font-size: .92rem; }
.phone-screen .sub { font-size: .7rem; color: #7d93b3; margin-bottom: .8rem; }
.geo-map { position: relative; height: 118px; border-radius: 10px; background: radial-gradient(circle at 50% 50%, rgba(30,144,255,.18), rgba(10,26,48,0) 68%), #0d2039; border: 1px solid rgba(255,255,255,.08); overflow: hidden; margin-bottom: .7rem; }
.geo-ring { position: absolute; inset-block-start: 50%; inset-inline-start: 50%; width: 78px; height: 78px; margin: -39px 0 0 -39px; border-radius: 50%; border: 1.5px dashed rgba(46,204,113,.55); }
html[dir="rtl"] .geo-ring { margin: -39px -39px 0 0; }
.geo-ring::after { content: ""; position: absolute; inset: -1px; border-radius: 50%; background: rgba(46,204,113,.08); animation: georing 2.6s infinite; }
@keyframes georing { 0% { transform: scale(.75); opacity: .9; } 100% { transform: scale(1.45); opacity: 0; } }
.geo-pin { position: absolute; inset-block-start: 50%; inset-inline-start: 50%; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(46,204,113,.25); }
html[dir="rtl"] .geo-pin { margin: -6px -6px 0 0; }
.phone-btn { background: var(--green); color: #fff; border: 0; border-radius: 10px; padding: .65rem; width: 100%; font: inherit; font-weight: 700; font-size: .86rem; }
.phone-meta { display: flex; justify-content: space-between; font-size: .68rem; color: #7d93b3; margin-top: .55rem; }

/* --- Quote calculator --------------------------------------------------- */
.calc-out { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 1.5rem; }
.calc-out .range { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.calc-out .breakdown { display: grid; gap: .4rem; margin-top: 1rem; font-size: .88rem; color: #b9c9e2; }
.calc-out .breakdown div { display: flex; justify-content: space-between; gap: 1rem; padding-block: .3rem; border-bottom: 1px solid var(--line-dark); }
.calc-out .breakdown div:last-child { border-bottom: 0; }
input[type="range"] { width: 100%; accent-color: var(--blue); }

/* --- Stats -------------------------------------------------------------- */
.stat-row { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; }
.stat b { display: block; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.1; }
.section--dark .stat b { color: #fff; }
.stat span { font-size: .85rem; color: var(--muted); }
.section--dark .stat span { color: #9fb2cd; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.25rem; font-weight: 400; flex: none; }
.faq details[open] summary::after { content: "−"; }
.faq .answer { padding: 0 1.25rem 1.1rem; color: var(--muted); font-size: .94rem; }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #9fb2cd; padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem 1.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; }
html[dir="rtl"] .site-footer h4 { letter-spacing: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer a { color: #9fb2cd; font-size: .9rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 2.5rem; padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; font-size: .82rem; }

/* --- Utility ------------------------------------------------------------ */
.stack > * + * { margin-top: 1rem; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.page { display: flex; flex-direction: column; min-height: 100vh; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

@media print {
  .site-header, .site-footer, .wa-float, .wa-nudge, .sticky-cta, .modal { display: none !important; }
  body { background: #fff; }
}
