:root {
  --navy: #162945;
  --navy-deep: #10213a;
  --ink: #1b2c43;
  --muted: #6a7888;
  --muted-light: #a9b7c7;
  --paper: #fbfcfd;
  --white: #ffffff;
  --surface: #f2f5f8;
  --line: #dce4ec;
  --line-dark: #30445f;
  --accent: #ff7a2f;
  --accent-dark: #e56520;
  --accent-soft: rgba(255, 122, 47, .12);
  --success: #177c5a;
  --success-soft: rgba(23, 124, 90, .08);
  --grid-line: rgba(22, 41, 69, .08);
  --shadow: rgba(16, 33, 58, .12);
  --shadow-strong: rgba(16, 33, 58, .25);
  --transparent: transparent;
  --font-sans: 'DM Sans', Arial, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --content: 1110px;
  --nav-height: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: var(--transparent); }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.orange-text, .orange-light { color: var(--accent); }
.text-center { text-align: center; }
.container { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-150%); background: var(--navy); color: var(--white); padding: 10px 14px; border-radius: var(--radius-sm); font-weight: 700; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.site-nav { position: sticky; top: 0; z-index: 40; min-height: var(--nav-height); background: rgba(251, 252, 253, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-inner { min-height: var(--nav-height); display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; min-height: 44px; color: var(--navy); text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--navy); color: var(--white); font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: -.08em; }
.brand-copy { display: grid; gap: 1px; }
.brand-type { font-size: 15px; font-weight: 700; letter-spacing: .06em; line-height: 1.1; }
.brand-sub { color: var(--muted); font-size: 11px; letter-spacing: .02em; line-height: 1.4; }
.nav-links { flex-basis: 100%; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
.nav-link { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 700; transition: color .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-actions { display: none; align-items: center; gap: 10px; margin-left: auto; }
.language-link { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; margin-left: auto; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--navy); font-size: 12px; font-weight: 700; white-space: nowrap; text-decoration: none; }
.language-link:hover { border-color: var(--navy); }
.mobile-menu-button { display: none; place-items: center; width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--navy); font-size: 21px; }
.mobile-menu { display: none; gap: 2px; padding: 14px 20px 20px; border-top: 1px solid var(--line); background: var(--paper); }
.mobile-menu .nav-link { min-height: 44px; display: flex; align-items: center; padding: 0 8px; border-bottom: 1px solid var(--line); }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr; gap: 10px; padding-top: 12px; }

/* Collapsed nav is a JS-only enhancement: script.js sets .js on <html>. Without
   it the links stay a plain visible row, so the nav works with no JavaScript. */
.js .nav-links { display: none; }
.js .mobile-menu-button { display: grid; margin-left: 0; }
.js .mobile-menu { display: grid; }
.js .mobile-menu[hidden] { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 18px; border: 1px solid var(--transparent); border-radius: 10px; font-size: 13px; font-weight: 700; line-height: 1.2; text-decoration: none; transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button-primary:active { background: var(--accent-dark); box-shadow: 0 3px 10px var(--accent-soft); }
.button-secondary:active { background: var(--navy); color: var(--white); }
.button-primary { background: var(--accent); color: var(--navy-deep); box-shadow: 0 6px 16px var(--accent-soft); }
.button-primary:hover { background: var(--accent-dark); box-shadow: 0 9px 20px var(--accent-soft); }
.button-secondary { border-color: var(--navy); background: var(--white); color: var(--navy); }
.button-secondary:hover { background: var(--navy); color: var(--white); }
.button-small { min-height: 42px; padding: 9px 14px; font-size: 12px; }

/* Anchor targets sit under the sticky header, so offset the scroll landing. */
section[id] { scroll-margin-top: calc(var(--nav-height) + 12px); }
.paper-grid { background-color: var(--paper); background-image: linear-gradient(var(--grid-line) 1px, var(--transparent) 1px), linear-gradient(90deg, var(--grid-line) 1px, var(--transparent) 1px); background-size: 26px 26px; }
.hero-section { overflow: hidden; border-bottom: 1px solid var(--line); padding: 64px 0 70px; }
.hero-grid { display: grid; align-items: center; gap: 46px; }
.eyebrow, .section-kicker { margin: 0; color: var(--accent-dark); font-size: 12px; font-weight: 700; letter-spacing: .02em; line-height: 1.5; }
.eyebrow::before { display: inline-block; width: 22px; height: 2px; margin: 0 10px 3px 0; background: var(--accent); content: ''; }
.hero-title { max-width: 690px; margin: 22px 0 0; color: var(--navy); font-size: clamp(2.8rem, 11vw, 5.5rem); font-weight: 700; letter-spacing: -.075em; line-height: .98; }
.hero-copy { max-width: 580px; margin: 26px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.center-actions { justify-content: center; }
.microcopy { margin: 18px 0 0; color: var(--muted); font-size: 12px; letter-spacing: .02em; }

.phone-card { width: min(100%, 305px); margin: 0 auto; padding: 11px; border-radius: 35px; background: var(--navy-deep); box-shadow: 18px 24px 40px var(--shadow-strong); transform: rotate(2deg); transition: transform .35s ease; }
.phone-card:hover { transform: rotate(0deg) translateY(-5px); }
.phone-screen { min-height: 560px; overflow: hidden; display: flex; flex-direction: column; border-radius: 25px; background: var(--white); }
.mock-top { padding: 20px 18px 22px; background: var(--navy); color: var(--white); }
.mock-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.mock-top p { margin: 0; }
.mock-location { margin-top: 4px !important; color: var(--muted-light); font-size: 10px; }
.mock-number { padding: 4px 8px; border: 1px solid var(--line-dark); border-radius: 999px; color: var(--accent); font-family: var(--font-mono); font-size: 9px; }
.mock-top h2 { margin: 30px 0 0; color: var(--white); font-size: 31px; letter-spacing: -.05em; line-height: 1; }
.mock-top > p { margin-top: 7px; color: var(--muted-light); font-size: 11px; }
.mock-photo-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 102px 66px; gap: 4px; padding: 8px; }
.mock-photo { border-radius: 5px; background: var(--surface); }
.photo-one { grid-row: span 2; background: linear-gradient(145deg, var(--accent), var(--navy)); }
.photo-two { background: linear-gradient(145deg, var(--muted-light), var(--navy)); }
.photo-three { background: linear-gradient(145deg, var(--surface), var(--muted)); }
.mock-body { flex: 1; padding: 5px 18px; }
.mock-heading { margin: 0; color: var(--navy); font-size: 11px; font-weight: 700; }
.mock-list { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.mock-list span { padding: 5px 7px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 9px; }
.license { display: flex; align-items: center; gap: 7px; margin: 24px 0 0; color: var(--success); font-size: 10px; }
.mock-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
.mock-bottom div { padding: 12px 8px; border-radius: 8px; text-align: center; font-size: 11px; font-weight: 700; }
.mock-call { background: var(--accent); color: var(--navy-deep); }
.mock-text { background: var(--navy); color: var(--white); }

.stat-strip { background: var(--navy); color: var(--white); }
.stat-grid { display: grid; }
.stat-item { padding: 25px 8px; border-bottom: 1px solid var(--line-dark); }
.stat-item:last-child { border-bottom: 0; }
.stat-number { color: var(--accent); font-family: var(--font-mono); font-size: 28px; font-weight: 700; letter-spacing: -.08em; line-height: 1; }
.stat-label { max-width: 220px; margin: 9px 0 0; color: var(--muted-light); font-size: 12px; line-height: 1.5; }

.section { padding: 76px 0; }
.section-muted { background: var(--surface); }
.section-heading { max-width: 690px; }
.section-title { margin: 14px 0 0; color: var(--navy); font-size: clamp(2.1rem, 7vw, 3.8rem); font-weight: 700; letter-spacing: -.065em; line-height: 1.02; }
.section-title.small-title { font-size: clamp(1.9rem, 5vw, 2.75rem); }
.section-copy { max-width: 670px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-copy.large { max-width: 750px; margin-top: 24px; font-size: 18px; }
.three-up, .two-up, .four-up { display: grid; gap: 15px; }
.three-up { margin-top: 36px; }
.outline-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
@media (prefers-reduced-motion: no-preference) {
  .outline-card { transition: transform .14s ease, border-color .14s ease; }
  .outline-card:hover, .outline-card:focus-within { transform: translateY(-3px); border-color: var(--muted-light); }
}
.feature-grid .outline-card { padding: 22px; }
.feature-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-dark); font-size: 19px; }
.outline-card h3 { margin: 18px 0 0; color: var(--navy); font-size: 16px; line-height: 1.25; }
.outline-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--navy); font-size: 14px; font-weight: 700; text-decoration: none; transition: color .2s ease; }
.footer-contact-link:hover { color: var(--accent-dark); }
.cta-band { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; padding: 30px; border-radius: var(--radius-lg); background: var(--navy); }
.cta-band h2, .dark-panel h2, .dark-section h2 { max-width: 690px; margin: 15px 0 0; color: var(--white); font-size: clamp(1.8rem, 5vw, 2.7rem); letter-spacing: -.055em; line-height: 1.05; }

.page-intro { border-bottom: 1px solid var(--line); padding: 64px 0; }
.page-title { max-width: 850px; font-size: clamp(2.8rem, 9vw, 5rem); }
.work-feature-grid, .service-layout, .about-grid, .contact-grid { display: grid; gap: 22px; }
.placeholder-art { min-height: 245px; display: grid; place-items: center; overflow: hidden; position: relative; background-color: var(--surface); background-image: linear-gradient(var(--grid-line) 1px, var(--transparent) 1px), linear-gradient(90deg, var(--grid-line) 1px, var(--transparent) 1px); background-size: 20px 20px; }
.placeholder-art::before, .placeholder-art::after { position: absolute; border: 1px solid var(--line); border-radius: 50%; content: ''; }
.placeholder-art::before { width: 180px; height: 180px; }
.placeholder-art::after { width: 280px; height: 280px; }
.placeholder-content { position: relative; z-index: 1; display: grid; justify-items: center; gap: 5px; text-align: center; }
.placeholder-content .mono { color: var(--navy); font-size: 9px; letter-spacing: .13em; }
.placeholder-content > span:last-child { color: var(--muted); font-size: 12px; }
.placeholder-icon, .family-mark { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 999px; background: var(--navy); color: var(--white); font-size: 19px; }
.card-content { padding: 20px; }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-topline h2 { margin: 0; color: var(--navy); font-size: 18px; letter-spacing: -.03em; }
.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border-radius: 999px; background: var(--success-soft); color: var(--success); font-size: 12px; }
.status-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.muted, .fine-note { color: var(--muted); font-size: 13px; }
.body-copy { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.dark-panel { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 28px; border-radius: var(--radius-md); background: var(--navy); color: var(--muted-light); }
.dark-panel > p:not(.section-kicker) { max-width: 470px; margin: 18px 0 0; font-size: 14px; line-height: 1.75; }
.dark-panel .button { margin-top: 34px; }
.section-heading-space { margin-top: 74px; }
.empty-grid { margin-top: 28px; }
.empty-card { min-height: 260px; display: flex; flex-direction: column; justify-content: center; padding: 28px; border-style: dashed; background: var(--surface); }
.empty-number, .accent-number { color: var(--accent); font-size: 25px; letter-spacing: -.1em; }
.empty-card h3 { margin-top: 18px; }

.price-panel { padding: 28px; }
.price-line { display: flex; align-items: baseline; gap: 10px; margin-top: 12px; }
.price-line strong { color: var(--white); font-size: 66px; letter-spacing: -.1em; line-height: 1; }
.price-line span { color: var(--muted-light); font-family: var(--font-mono); font-size: 10px; }
.price-panel > p:not(.section-kicker) { margin: 20px 0 0; color: var(--muted-light); font-size: 14px; line-height: 1.75; }
.price-panel .button { margin-top: 26px; }
.fine-note { margin: 14px 0 0; line-height: 1.6; }
.fine-note strong { color: var(--navy); }
.included-list { display: grid; gap: 13px; padding: 0; margin: 26px 0 0; list-style: none; }
.included-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.check { display: grid; place-items: center; width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); }
.honest-note { display: flex; gap: 12px; margin-top: 28px; padding: 16px; border: 1px solid var(--accent-soft); border-radius: var(--radius-md); background: var(--accent-soft); color: var(--muted); font-size: 13px; line-height: 1.65; }
.honest-note p { margin: 0; }
.note-icon { color: var(--accent-dark); font-size: 18px; }
.input-grid { margin-top: 32px; }
.input-grid .outline-card { padding: 22px; }
.input-grid h3 { margin-top: 18px; }

.steps-grid { margin-top: 0; }
.step-card { padding: 22px; }
.step-card h2 { margin: 28px 0 0; color: var(--navy); font-size: 21px; letter-spacing: -.04em; line-height: 1.1; }
.step-card p { margin-top: 12px; }
.step-final { border-color: var(--accent); background: var(--accent-soft); }
.center-note { max-width: 760px; margin: 42px auto 0; }
.dark-section { background: var(--navy); color: var(--muted-light); }
.dark-section h2 { margin-top: 15px; }
.dark-section-grid { display: flex; flex-direction: column; align-items: flex-start; gap: 25px; }
.dark-section-grid > div > p:not(.section-kicker) { max-width: 620px; margin: 14px 0 0; font-size: 15px; line-height: 1.75; }

.about-lead { margin: 0; color: var(--muted); font-size: 19px; line-height: 1.75; }
.about-facts { margin-top: 30px; }
.about-facts > div { padding-left: 14px; border-left: 2px solid var(--accent); }
.about-facts strong { display: block; margin-top: 5px; color: var(--navy); }
.fact-label { margin: 0; color: var(--accent-dark); font-size: 12px; letter-spacing: .02em; }
.about-art { min-height: 340px; transform: rotate(1deg); }

.contact-options { display: grid; gap: 10px; }
.contact-option { display: flex; align-items: center; gap: 14px; min-height: 80px; padding: 17px; text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.contact-option:hover { border-color: var(--accent); transform: translateX(3px); }
.contact-option > span:nth-child(2) { display: grid; gap: 3px; }
.contact-option small { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.contact-option strong { color: var(--navy); font-size: 15px; }
.location-line { display: flex; align-items: flex-start; gap: 9px; margin-top: 30px; color: var(--muted); font-size: 14px; }
.location-line .icon { margin-top: 3px; color: var(--accent-dark); }
.form-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.form-heading { display: flex; align-items: center; gap: 12px; }
.form-heading h2 { margin: 0; color: var(--navy); font-size: 21px; letter-spacing: -.04em; }
.form-heading p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.form-card form { display: grid; gap: 15px; margin-top: 26px; }
.form-card label { display: grid; gap: 7px; color: var(--navy); font-size: 13px; font-weight: 700; }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 0; color: var(--muted); font-size: 11px; text-align: center; }
.success-box { margin-top: 24px; padding: 18px; border: 1px solid var(--success-soft); border-radius: var(--radius-md); background: var(--success-soft); color: var(--muted); }
.success-box p { margin: 0; font-size: 13px; line-height: 1.65; }
.success-box p:first-child { display: flex; align-items: center; gap: 7px; color: var(--success); }
.success-box p:nth-child(2) { margin-top: 8px; }
.success-box .button { margin-top: 14px; }

.not-found { min-height: 66vh; display: grid; place-items: center; padding: 100px 0; }
.not-found .hero-title { margin-right: auto; margin-left: auto; }
.not-found .section-copy { margin-right: auto; margin-left: auto; }

.mobile-action { display: block; position: fixed; right: 14px; bottom: 14px; left: 14px; z-index: 35; }
.mobile-action .button { width: 100%; box-shadow: 0 9px 25px var(--shadow-strong); }

/* The whole non-interactive motion budget: one hero load sequence, staggered
   80ms. Both this and the sticky bar are scoped to .js-reveal, which only
   exists when scripting runs AND the visitor has not asked for reduced motion,
   so no-JS and reduce both render everything immediately at full opacity. */
@keyframes hero-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: no-preference) {
  .js-reveal .hero-title { animation: hero-in .5s ease both; }
  .js-reveal .hero-copy { animation: hero-in .5s ease .08s both; }
  .js-reveal .hero-actions { animation: hero-in .5s ease .16s both; }

  /* Sticky bar slides up once when the hero is behind you, then stays put.
     Transition, not animation, so it cannot re-run on later scrolls. */
  .js-reveal .mobile-action { transform: translateY(150%); transition: transform .28s ease; }
  .js-reveal .mobile-action.is-visible { transform: none; }
}
.footer { padding: 62px 0 25px; background: var(--navy-deep); color: var(--muted-light); }
.footer-grid { display: grid; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); }
.footer-brand .brand-type { font-size: 14px; }
.footer p { max-width: 340px; margin: 15px 0 0; font-size: 13px; line-height: 1.8; }
.footer-note { color: var(--muted-light); font-size: 12px !important; letter-spacing: .02em; }
.footer-label { margin: 0 !important; color: var(--accent); font-size: 12px !important; letter-spacing: .02em; }
.footer-links { display: grid; gap: 8px; margin-top: 13px; }
.footer-links a { color: var(--muted-light); font-size: 13px; text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-contact-link { margin-top: 13px; color: var(--white); }
.footer-bottom { display: flex; flex-direction: column; gap: 7px; margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line-dark); color: var(--muted-light); font-size: 10px; }

/* Revealed content is visible by default. The hidden starting state exists only
   once script.js has confirmed it is running (it sets .js-reveal on <html>), so
   a page with no JavaScript renders fully instead of blank. */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
  .js-reveal .reveal.is-visible { opacity: 1; transform: none; }
}

/* Before / after comparison. Panels never stack: they are stacked layers, clipped
   at --compare-pos, so the comparison holds at every width. No transitions or
   keyframes here on purpose - the handle moves only when a person moves it. */
.compare-section { padding-top: 0; }
.compare-instruction { margin: 0 auto 18px; max-width: 36ch; text-align: center; color: var(--muted); font-size: 15px; }
.compare-sr-text { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.compare-frame { --compare-pos: 50%; position: relative; width: min(320px, 100%); aspect-ratio: 5 / 6; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); overflow: hidden; box-shadow: 0 18px 40px var(--shadow); }
.compare-panel { position: absolute; inset: 0; display: flex; flex-direction: column; }
.compare-before { background: var(--paper); }
.compare-after { background: var(--white); clip-path: inset(0 0 0 var(--compare-pos)); }

.cmp-bar { margin: 14px 12px 10px; padding: 9px 14px; border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 12px; }
.cmp-body { flex: 1; padding: 0 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.cmp-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 12px; }
.cmp-name { display: block; font-weight: 600; font-size: 14px; color: var(--ink); }
.cmp-phone { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }
.cmp-ghost { height: 13px; border-radius: 7px; background: var(--surface); }
.cmp-ghost-short { width: 62%; }
.cmp-card-plain { background: var(--white); }
.cmp-card-rich { border-color: var(--transparent); background: var(--navy); }
.cmp-card-rich .cmp-name { color: var(--white); }
.cmp-trade { display: block; margin-top: 4px; font-size: 12px; color: var(--muted-light); }
.cmp-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 10px; }
.cmp-shot { aspect-ratio: 1; border-radius: 6px; background: linear-gradient(135deg, var(--navy-deep), var(--line-dark)); }
.cmp-shot:nth-child(2) { background: linear-gradient(200deg, var(--navy-deep), var(--line-dark)); }
.cmp-shot:nth-child(3) { background: linear-gradient(80deg, var(--navy-deep), var(--line-dark)); }
.cmp-call { display: block; margin-top: 10px; padding: 9px; border-radius: var(--radius-sm); background: var(--accent); color: var(--white); font-weight: 600; font-size: 13px; text-align: center; }

.compare-tag { position: absolute; bottom: 12px; padding: 5px 11px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.compare-tag-before { left: 12px; background: var(--surface); color: var(--muted); }
.compare-tag-after { right: 12px; background: var(--accent); color: var(--white); }

/* pan-y lets a vertical swipe that starts on the handle scroll the page:
   the browser keeps vertical panning and fires pointercancel, which ends the drag. */
.compare-handle { position: absolute; top: 0; bottom: 0; left: var(--compare-pos); width: 44px; margin-left: -22px; padding: 0; display: flex; align-items: center; justify-content: center; border: 0; background: var(--transparent); touch-action: pan-y; }
.compare-handle::before { content: ""; position: absolute; top: 0; bottom: 0; width: 2px; background: var(--white); box-shadow: 0 0 0 1px var(--shadow-strong); }
.compare-grip { position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 2px solid var(--accent); box-shadow: 0 4px 12px var(--shadow-strong); }
.compare-grip::before, .compare-grip::after { content: ""; position: absolute; top: 50%; width: 6px; height: 6px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.compare-grip::before { left: 8px; transform: translateY(-50%) rotate(-135deg); }
.compare-grip::after { right: 8px; transform: translateY(-50%) rotate(45deg); }
.compare-handle:focus-visible { outline: none; }
.compare-handle:focus-visible .compare-grip { outline: 3px solid var(--accent); outline-offset: 3px; }

@media (min-width: 620px) {
  .container { width: min(var(--content), calc(100% - 64px)); }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 27px 20px; border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .stat-item:last-child { border-right: 0; }
  .three-up { grid-template-columns: repeat(3, 1fr); }
  .two-up { grid-template-columns: repeat(2, 1fr); }
  .four-up { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 42px; }
  .about-facts { max-width: 470px; }
  .footer-grid { grid-template-columns: 1.35fr .8fr .9fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 860px) {
  :root { --nav-height: 74px; }
  .nav-links, .js .nav-links { flex-basis: auto; display: flex; flex-wrap: nowrap; gap: 26px; margin-left: auto; }
  .nav-inner { gap: 18px; flex-wrap: nowrap; }
  .language-link { margin-left: 0; }
  .nav-actions { display: flex; }
  .mobile-menu-button, .js .mobile-menu-button { display: none; }
  .mobile-menu, .js .mobile-menu { display: none !important; }
  .hero-section { padding: 108px 0 112px; }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 70px; }
  .phone-card { margin: 0 auto; }
  .section { padding: 110px 0; }
  .page-intro { padding: 106px 0; }
  .work-feature-grid { grid-template-columns: 1.15fr .85fr; }
  .service-layout { grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
  .about-grid { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 76px; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 70px; }
  .dark-section-grid { flex-direction: row; align-items: center; justify-content: space-between; }
  .dark-section-grid > .button { flex: 0 0 auto; }
  .mobile-action { display: none; }
}

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