/* SUOMImotors — Finnish blue & white, mirror of PDF sample */
:root {
  /* Backgrounds — clean cool whites (Finnish snow) */
  --bg: oklch(0.985 0.005 240);
  --bg-2: oklch(0.96 0.012 235);
  --bg-3: oklch(0.93 0.018 235);

  /* Ink — deep navy */
  --ink: oklch(0.20 0.06 255);
  --ink-2: oklch(0.40 0.04 255);
  --ink-3: oklch(0.58 0.025 250);

  --line: oklch(0.90 0.015 235);
  --line-2: oklch(0.82 0.02 235);

  /* Brand — Finnish flag blue (#003580 ish) */
  --blue: oklch(0.40 0.18 258);          /* Finnish blue */
  --blue-2: oklch(0.50 0.18 258);
  --blue-deep: oklch(0.28 0.16 258);     /* darker for headers/footers */
  --blue-soft: oklch(0.94 0.04 250);     /* faint blue tint for chips/icon bg */
  --blue-ice: oklch(0.96 0.025 240);

  /* Accents — Finnish summer warmth */
  --sand: oklch(0.78 0.10 75);            /* warm sand / lakeside */
  --sand-soft: oklch(0.94 0.04 75);
  --berry: oklch(0.55 0.16 25);           /* lingonberry red — used sparingly */

  --paper: oklch(0.995 0.003 240);
  --shadow: 0 1px 2px oklch(0.2 0.05 250 / 0.06), 0 8px 24px oklch(0.2 0.05 250 / 0.08);
  --radius: 14px;
  --radius-sm: 8px;

  /* Backwards-compat aliases (old code still references these) */
  --green: var(--blue);
  --green-2: var(--blue-2);
  --green-soft: var(--blue-soft);
  --ochre: var(--sand);
  --ochre-soft: var(--sand-soft);
  --rust: var(--berry);
}

[data-theme="dark"] {
  --bg: oklch(0.18 0.04 255);
  --bg-2: oklch(0.22 0.045 255);
  --bg-3: oklch(0.26 0.05 255);
  --ink: oklch(0.96 0.01 240);
  --ink-2: oklch(0.82 0.015 240);
  --ink-3: oklch(0.66 0.02 245);
  --line: oklch(0.32 0.04 255);
  --line-2: oklch(0.42 0.05 255);
  --blue: oklch(0.78 0.15 250);
  --blue-2: oklch(0.70 0.16 252);
  --blue-deep: oklch(0.18 0.05 255);
  --blue-soft: oklch(0.30 0.06 255);
  --blue-ice: oklch(0.26 0.05 255);
  --sand: oklch(0.82 0.12 75);
  --sand-soft: oklch(0.30 0.05 75);
  --berry: oklch(0.70 0.14 25);
  --paper: oklch(0.22 0.045 255);
  --shadow: 0 1px 2px oklch(0 0 0 / 0.3), 0 8px 24px oklch(0 0 0 / 0.35);
  --green: var(--blue); --green-2: var(--blue-2); --green-soft: var(--blue-soft);
  --ochre: var(--sand); --ochre-soft: var(--sand-soft); --rust: var(--berry);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 1.8vw, 24px); }
h4 { font-size: 18px; }
p { color: var(--ink-2); text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

.mono { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid var(--line-2); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); background: var(--paper); margin-bottom: 18px; }
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 500; font-size: 15px; transition: transform .15s, background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn-primary { background: var(--green); color: var(--paper); }
.btn-primary:hover { background: var(--green-2); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-ochre { background: var(--ochre); color: oklch(0.18 0.015 150); }
.btn-ochre:hover { transform: translateY(-1px); }
.arrow { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover .arrow { transform: translate(2px, -2px); }

/* TOP STRIP — like sample */
.topstrip { background: var(--blue-deep); color: oklch(0.94 0.02 240); font-size: 12px; }
[data-theme="dark"] .topstrip { background: oklch(0.10 0.04 255); }
.topstrip-inner { display: flex; justify-content: space-between; align-items: center; padding: 9px 28px; max-width: 1280px; margin: 0 auto; gap: 20px; }
.topstrip-l { color: oklch(0.94 0.02 240 / 0.78); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.topstrip-l > span { display: inline-flex; align-items: center; gap: 6px; }
.ts-flag { font-weight: 600; color: oklch(0.96 0.01 240); }
.ts-flag svg { border: 1px solid oklch(0.96 0.01 240 / 0.3); }
.ts-sep { color: oklch(0.94 0.02 240 / 0.35); }
.topstrip-r { display: flex; gap: 8px; align-items: center; }
.ts-pill { padding: 5px 12px; background: oklch(0.96 0.01 240 / 0.10); border: 1px solid oklch(0.96 0.01 240 / 0.18); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(0.96 0.01 240); }
.ts-pill-ghost { background: transparent; }
.ts-pill:hover { background: var(--sand); color: var(--blue-deep); border-color: var(--sand); }
@media (max-width: 980px) { .topstrip-l > span:not(.ts-flag), .ts-sep { display: none; } }
@media (max-width: 540px) { .topstrip-l { display: none; } }

/* NAV */
.nav { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; max-width: 1280px; margin: 0 auto; gap: 28px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.logo-mark { width: 44px; height: 30px; border-radius: 4px; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; color: var(--blue); overflow: hidden; }
.logo-mark svg { display: block; }
.logo span.suo { color: var(--blue); font-weight: 700; }
.logo span.mot { color: var(--ink-3); font-weight: 500; }
.nav-links { display: flex; gap: 26px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; gap: 14px; align-items: center; }
.nav-phone-text { display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink); }
.nav-phone-text:hover { color: var(--blue); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; background: var(--blue); color: var(--paper); font-weight: 500; font-size: 14px; }
.nav-phone:hover { background: var(--blue-2); transform: translateY(-1px); }
@media (max-width: 1180px) { .nav-phone-text { display: none; } }
@media (max-width: 980px) { .nav-links { display: none; } }
@media (max-width: 540px) { .nav-phone { padding: 10px 14px; font-size: 13px; } }

/* HERO — заголовок слева, фото справа (как образец) */
.hero { padding: 64px 0 32px; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 60%; background: linear-gradient(180deg, var(--blue-ice) 0%, transparent 100%); pointer-events: none; z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 { margin: 18px 0 22px; }
.hero h1 br { display: block; }
.hero-sub { font-size: 18px; color: var(--ink-2); max-width: 540px; margin-bottom: 22px; line-height: 1.55; }
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; max-width: 540px; }
.hero-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink); line-height: 1.45; }
.hb-check { flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--blue); color: var(--paper); display: grid; place-items: center; margin-top: 1px; }
.hb-check svg { width: 14px; height: 14px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-microtext { font-size: 13px; color: var(--ink-3); max-width: 480px; line-height: 1.5; }

/* HERO PHOTO */
.hero-photo { position: relative; aspect-ratio: 16/11; border-radius: var(--radius); background: var(--bg-2); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-photo.wide-h { aspect-ratio: 3/2; }
.hero-photo.has-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo.has-image .placeholder { display: none; }
.hero-photo.big { aspect-ratio: 4/5; }
.hero-photo.wide { aspect-ratio: 16/11; }
.hero-photo-tag { position: absolute; top: 16px; left: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px 6px 8px; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow); font-size: 12px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; color: var(--ink-2); }
.flag-fi { display: inline-grid; place-items: center; }
.flag-fi svg { display: block; border-radius: 1px; }
.placeholder { position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, var(--bg-3) 0 1px, transparent 1px 14px); display: grid; place-items: center; padding: 20px; }
.placeholder-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; line-height: 1.55; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); background: var(--paper); padding: 10px 14px; border-radius: 6px; border: 1px solid var(--line); text-align: center; max-width: 86%; }
.ph-meta { color: var(--ink-3); opacity: 0.7; font-size: 9px; letter-spacing: 0.04em; }

/* SERVICES STRIP — dark green band, 4 columns (mirrors sample's services row) */
.strip-services { padding: 0; margin-top: 8px; }
.services-strip { background: var(--green); color: oklch(0.95 0.01 90); border-radius: var(--radius); padding: 36px 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-cell { display: flex; flex-direction: column; gap: 12px; padding-right: 20px; border-right: 1px solid oklch(0.95 0.01 90 / 0.18); }
.service-cell:last-child { border-right: 0; }
.service-icon { width: 42px; height: 42px; border-radius: 10px; background: oklch(0.95 0.01 90 / 0.12); display: grid; place-items: center; }
.service-icon svg { width: 22px; height: 22px; }
.service-cell h4 { color: oklch(0.95 0.01 90); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; }
.service-cell p { color: oklch(0.95 0.01 90 / 0.75); font-size: 13px; line-height: 1.45; }
@media (max-width: 980px) { .services-strip { grid-template-columns: repeat(2, 1fr); } .service-cell { border-right: 0; padding-right: 0; } }
@media (max-width: 540px) { .services-strip { grid-template-columns: 1fr; padding: 24px; } }

/* SECTION default */
section { padding: 80px 0; }
.block-head { max-width: 760px; margin-bottom: 44px; }
.block-head h2 { margin-bottom: 12px; }
.block-head p { font-size: 16px; color: var(--ink-2); }

/* BIG SERVICES — text + photo split (mirrors "новые возможности" block) */
.big-services { padding-top: 96px; }
.bs-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 980px) { .bs-grid { grid-template-columns: 1fr; gap: 32px; } }
.bs-text h2 { margin-bottom: 18px; }
.bs-lead { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin-bottom: 26px; }
.bs-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.bs-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.bs-list li b { color: var(--ink); font-weight: 600; }
.bs-bullet { flex: 0 0 18px; color: var(--ochre); font-weight: 700; margin-top: 1px; }
.bs-photo { position: relative; }

/* Services illustration (инспекция / приёмка авто — вертикальный 4:5 SVG) */
.svc-illust { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.svc-dot { fill: var(--ink-3); opacity: 0.32; }
[data-theme="dark"] .svc-dot { opacity: 0.2; }
.svc-line { stroke: var(--ink-3); stroke-width: 1; opacity: 0.45; }
.svc-line-dark { stroke: oklch(0.18 0.015 150); stroke-width: 1.4; opacity: 0.65; stroke-linecap: round; }
.svc-light { fill: var(--ochre); }
.svc-light-cone { fill: var(--ochre); opacity: 0.10; }
.svc-bay { fill: var(--paper); stroke: var(--ink-3); stroke-width: 1.5; opacity: 0.7; }
.svc-bay-line { stroke: var(--ink-3); stroke-width: 1; opacity: 0.35; }
.svc-floor { fill: var(--bg-2); }
[data-theme="dark"] .svc-floor { fill: oklch(0.16 0.015 150); }
.svc-mark { stroke: var(--ochre); stroke-width: 2.5; opacity: 0.55; stroke-linecap: round; }
.svc-car-body { fill: var(--green); stroke: oklch(0.18 0.015 150); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
[data-theme="dark"] .svc-car-body { fill: var(--ochre); stroke: oklch(0.95 0.01 90); }
.svc-car-glass { fill: var(--paper); opacity: 0.55; stroke: oklch(0.18 0.015 150); stroke-width: 1.5; stroke-linejoin: round; }
[data-theme="dark"] .svc-car-glass { stroke: oklch(0.95 0.01 90); }
.svc-wheel { fill: oklch(0.18 0.015 150); }
.svc-wheel-rim { fill: var(--bg-2); }
.svc-wheel-hub { fill: oklch(0.18 0.015 150); }
.svc-headlight { fill: var(--ochre); }
.svc-plate { fill: var(--paper); stroke: oklch(0.18 0.015 150); stroke-width: 1; }
.svc-tag { fill: var(--ochre); }
.svc-tag-meta { fill: oklch(0.18 0.015 150); font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 2px; font-weight: 600; }
.svc-tag-num { fill: oklch(0.18 0.015 150); font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; }
.svc-flag-bg { fill: var(--paper); stroke: var(--ink-3); stroke-width: 1; }
.svc-flag-cross { fill: #003580; }
.svc-side-label { fill: var(--ink-3); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 3px; font-weight: 600; }
.svc-stamp { fill: var(--ink-3); font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 2px; font-weight: 600; }
.bs-stamp { position: absolute; left: 20px; right: 20px; bottom: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: baseline; gap: 14px; }
.bs-stamp .stamp-num { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; color: var(--green); }
[data-theme="dark"] .bs-stamp .stamp-num { color: var(--ochre); }
.bs-stamp .stamp-lbl { font-size: 12px; color: var(--ink-3); }

/* FACT GRID 3×3 (mirrors сетка с буллетами в образце) */
.fact-grid-section { padding-top: 24px; }
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 980px) { .fact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fact-grid { grid-template-columns: 1fr; } }
.fact-cell { background: var(--paper); padding: 28px 26px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.fact-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 6px; }
[data-theme="dark"] .fact-icon { color: var(--paper); }
.fact-icon svg { width: 22px; height: 22px; }
.fact-cell h4 { font-size: 17px; }
.fact-cell p { font-size: 13.5px; line-height: 1.5; }

/* PLATFORMS — крупная сетка плиток 4×2 */
.platforms-section { padding-top: 80px; padding-bottom: 80px; }
.platforms-head { margin-bottom: 36px; max-width: 720px; }
.platforms-head p { font-size: 16px; margin-top: 10px; }
.platforms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .platforms-grid { grid-template-columns: repeat(2, 1fr); } }
.platform-tile { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; transition: transform .2s, border-color .2s; }
.platform-tile:hover { transform: translateY(-2px); border-color: var(--ochre); }
.platform-logo { aspect-ratio: 16/9; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--line); position: relative; overflow: hidden; }
.platform-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink); }
.platform-desc { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--ink-3); }

/* OUR SYSTEM — text + big screenshot */
.our-system { padding: 80px 0; background: var(--bg-2); }
.os-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .os-grid { grid-template-columns: 1fr; gap: 32px; } }
.os-text h2 { margin-bottom: 18px; }
.os-text p { font-size: 16px; line-height: 1.65; margin-bottom: 14px; }

/* VIDEO BLOCK */
.video-section { padding: 80px 0; }
.video-head { margin-bottom: 36px; max-width: 720px; }
.video-head p { font-size: 16px; margin-top: 10px; }
.video-card { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.video-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 86px; height: 86px; border-radius: 50%; background: var(--ochre); color: oklch(0.18 0.015 150); display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .2s; }
.video-play:hover { transform: translate(-50%,-50%) scale(1.06); }

/* PACKAGES */
.packages-section { padding: 80px 0; }
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .packages { grid-template-columns: 1fr; } }
.pkg { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; transition: transform .2s, border-color .2s; }
.pkg:hover { transform: translateY(-2px); border-color: var(--green); }
.pkg.featured { background: oklch(0.18 0.015 150); color: oklch(0.95 0.01 90); border-color: oklch(0.18 0.015 150); }
.pkg.featured h3, .pkg.featured .pkg-price { color: oklch(0.95 0.01 90); }
.pkg.featured p, .pkg.featured li, .pkg.featured .pkg-sub { color: oklch(0.85 0.01 90 / 0.85); }
.pkg.featured .pkg-tag { background: var(--ochre); color: oklch(0.18 0.015 150); }
[data-theme="dark"] .pkg.featured { background: var(--bg-3); color: var(--ink); border: 1px solid var(--line-2); }
[data-theme="dark"] .pkg.featured h3, [data-theme="dark"] .pkg.featured .pkg-price { color: var(--ink); }
[data-theme="dark"] .pkg.featured p, [data-theme="dark"] .pkg.featured li { color: var(--ink-2); }
.pkg-tag { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; align-self: flex-start; }
[data-theme="dark"] .pkg-tag { color: var(--paper); }
.pkg h3 { font-size: 24px; margin-bottom: 6px; }
.pkg-sub { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.pkg-price { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 600; margin-bottom: 6px; }
.pkg-price-note { font-size: 12px; color: var(--ink-3); margin-bottom: 22px; font-family: 'JetBrains Mono', monospace; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pkg-list li { font-size: 14px; padding-left: 22px; position: relative; }
.pkg-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pkg.featured .pkg-list li::before { color: var(--ochre); }
.pkg-list li.no::before { content: '×'; color: var(--ink-3); }

/* CALCULATOR */
.calc-section { padding: 60px 0 80px; }
.calc { background: var(--bg-2); border-radius: var(--radius); padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; border: 1px solid var(--line); }
@media (max-width: 980px) { .calc { grid-template-columns: 1fr; padding: 28px; gap: 28px; } }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.calc-fields .full { grid-column: 1/-1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select { padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 8px; background: var(--paper); color: var(--ink); font: inherit; font-size: 15px; transition: border-color .15s; }
.field input:focus, .field select:focus { outline: 0; border-color: var(--green); }
.opt-row { display: flex; flex-wrap: wrap; gap: 10px; }
.opt-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line-2); border-radius: 999px; cursor: pointer; font-size: 13px; user-select: none; background: var(--paper); }
.opt-toggle input { display: none; }
.opt-toggle.on { background: var(--green); color: var(--paper); border-color: var(--green); }
.calc-result { background: var(--paper); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 14px; border: 1px solid var(--line); }
.result-row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 10px; border-bottom: 1px dashed var(--line); }
.result-row.total { border: 0; padding-top: 8px; padding-bottom: 0; }
.result-label { color: var(--ink-2); font-size: 14px; }
.result-val { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: var(--ink); }
.result-row.total .result-label { font-size: 16px; }
.result-row.total .result-val { font-size: 32px; color: var(--green); }
[data-theme="dark"] .result-row.total .result-val { color: var(--ochre); }

/* CASES — carousel of screenshots */
.cases-section { padding: 80px 0; background: var(--bg-2); }
.cases-disclaimer { font-size: 13px; color: var(--ink-3); margin-top: 10px; padding: 10px 14px; background: var(--paper); border: 1px dashed var(--line-2); border-radius: 8px; font-style: italic; }
.cases-carousel { display: grid; grid-template-columns: 1fr; gap: 24px; }
.cases-shot { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow); overflow: hidden; }
.cases-shot img { width: 100%; height: auto; display: block; border-radius: calc(var(--radius) - 4px); }
.cases-controls { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 8px 0; }
@media (max-width: 820px) { .cases-controls { grid-template-columns: 1fr; gap: 14px; } }
.cases-meta .cases-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); }
.cases-meta .cases-note { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--ink-3); margin-top: 4px; }
.cases-dots { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cases-dot { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; color: var(--ink-2); transition: all .2s; }
.cases-dot span:first-child { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--ink-3); }
.cases-dot.active { background: var(--blue); color: var(--paper); border-color: var(--blue); }
.cases-dot.active span:first-child { color: var(--paper); opacity: 0.7; }
.cases-dot:hover:not(.active) { border-color: var(--blue); }
.dot-label { font-size: 12px; }
@media (max-width: 600px) { .dot-label { display: none; } }
.cases-arrows { display: inline-flex; gap: 10px; align-items: center; }
.cases-arrow { width: 38px; height: 38px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line-2); color: var(--ink); font-size: 18px; }
.cases-arrow:hover { background: var(--blue); color: var(--paper); border-color: var(--blue); }
.cases-counter { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-3); }

/* SEO TEXT */
.seo { background: var(--bg); padding: 80px 0; border-top: 1px solid var(--line); }
.seo-head { max-width: 760px; margin-bottom: 28px; }
.seo-body { display: flex; flex-direction: column; gap: 24px; max-width: 880px; }
.seo-body p { font-size: 16px; line-height: 1.75; }
.seo-body h3 { margin-bottom: 4px; margin-top: 12px; }
.price-table { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--paper); margin: 4px 0 12px; }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 12px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--bg-2); font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); font-weight: 500; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table .price-col { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--green); }
[data-theme="dark"] .price-table .price-col { color: var(--ochre); }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--bg-2); }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; margin: 0 auto; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 17px; color: var(--ink); }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-2); display: grid; place-items: center; transition: transform .2s, background .2s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { background: var(--green); color: var(--paper); transform: rotate(45deg); }
.faq-a { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .2s; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.faq-item.open .faq-a { padding: 0 26px 24px; max-height: 800px; }

/* MANAGERS — горизонтальная строка с круглыми фото (как в образце) */
.managers-section { padding: 80px 0; }
.managers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 980px) { .managers { grid-template-columns: repeat(2, 1fr); } }
.mgr { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: border-color .2s; }
.mgr:hover { border-color: var(--green); }
.mgr-photo { width: 96px; height: 96px; border-radius: 50%; position: relative; overflow: hidden; margin-bottom: 10px; border: 1px solid var(--line); }
.mgr-photo .placeholder-label { font-size: 9px; padding: 4px 8px; }
.mgr-name { font-weight: 600; font-size: 15px; color: var(--ink); margin-top: 4px; }
.mgr-role { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.mgr-phone { font-size: 13px; color: var(--ink-2); margin-top: 4px; font-family: 'Space Grotesk', sans-serif; font-weight: 500; }

/* ADDRESS + WIDE MAP — как образец (карта на всю ширину + карточка-оверлей) */
.address-section { padding-top: 80px; padding-bottom: 0; }
.map-wide { position: relative; height: 480px; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.map-wide .placeholder { inset: 0; }

/* Finland illustrated map */
.finland-map { position: absolute; inset: 0; display: grid; place-items: center; }
.finland-map svg { width: 100%; height: 100%; display: block; }
.fm-dot { fill: var(--ink-3); opacity: 0.35; }
[data-theme="dark"] .fm-dot { opacity: 0.22; }
.fm-arctic { stroke: var(--ink-3); opacity: 0.35; stroke-width: 1; }
.fm-meta { fill: var(--ink-3); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; opacity: 0.6; }
.fm-compass { color: var(--ink-3); stroke: currentColor; fill: none; }
.fm-compass-n { fill: var(--green); opacity: 0.85; stroke: none; }
.fm-compass-e { fill: var(--ink-3); opacity: 0.55; stroke: none; }
.fm-compass-label { fill: var(--ink-2); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1px; }
.fm-watermark { fill: var(--ink); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 56px; letter-spacing: 8px; opacity: 0.05; }
.fm-watermark-sub { fill: var(--ink); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 4px; opacity: 0.06; }
.fm-country { fill: var(--paper); stroke: var(--green); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; filter: drop-shadow(0 4px 18px rgba(0,0,0,0.06)); }
[data-theme="dark"] .fm-country { fill: oklch(0.22 0.015 150); stroke: var(--ochre); }
.fm-lake { fill: var(--bg-2); stroke: var(--green); stroke-width: 1; opacity: 0.75; }
[data-theme="dark"] .fm-lake { fill: oklch(0.18 0.015 150); stroke: var(--ochre); opacity: 0.65; }
.fm-pin-halo { fill: var(--ochre); opacity: 0.14; }
.fm-pin-halo2 { fill: var(--ochre); opacity: 0.22; }
.fm-pin-dot { fill: var(--ochre); stroke: var(--paper); stroke-width: 2.5; }
.fm-pin-label { fill: var(--ink); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px; }
.fm-pin-sub { fill: var(--ink-3); font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; }
.fm-mark-dot { fill: var(--ink-2); }
.fm-mark-label { fill: var(--ink-2); font-family: 'Inter Tight', sans-serif; font-weight: 500; font-size: 11px; }
.map-overlay-wrap { position: absolute; left: 0; right: 0; top: 32px; pointer-events: none; }
.map-overlay-wrap.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .map-overlay-wrap.two { grid-template-columns: 1fr; gap: 16px; } }
.map-card-overlay { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); max-width: 380px; pointer-events: auto; display: flex; gap: 14px; align-items: center; }
.map-overlay-flag { width: 56px; height: 56px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--bg-2); border: 1px solid var(--line); }
.map-overlay-flag svg { width: 32px; height: auto; box-shadow: 0 1px 2px rgba(0,0,0,0.12); }
.map-overlay-photo { width: 84px; height: 84px; border-radius: 10px; flex-shrink: 0; position: relative; overflow: hidden; border: 1px solid var(--line); }
.map-overlay-info { flex: 1; }
.map-overlay-info .mt { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; }
.map-overlay-info .mp { font-size: 13px; color: var(--ink-2); margin-top: 2px; line-height: 1.45; }
.map-overlay-info .rating { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12px; }
.map-overlay-info .mc { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.map-stars { color: var(--ochre); }
@media (max-width: 600px) { .map-overlay-wrap { padding: 0 18px; } }

/* INSTAGRAM — лента @fincarbid */
.ig-section { padding: 96px 0 80px; }
.ig-head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 36px; }
@media (max-width: 820px) { .ig-head { grid-template-columns: 1fr; align-items: start; } }
.ig-head-left { max-width: 720px; }
.ig-handle-row { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.ig-icon-wrap { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, #fdf497 0%, #fd5949 35%, #d6249f 65%, #285AEB 100%); color: white; }
.ig-icon-wrap svg { width: 26px; height: 26px; }
.ig-handle { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); }
.ig-meta { font-size: 11px; color: var(--ink-3); font-family: 'JetBrains Mono', monospace; letter-spacing: 2px; margin-top: 2px; }
.ig-head h2 { margin-bottom: 12px; }
.ig-head p { color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 540px; }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ig-widget { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); min-height: 320px; }
.ig-widget iframe { display: block; }
@media (max-width: 820px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ig-grid { grid-template-columns: 1fr; } }
.ig-tile { position: relative; aspect-ratio: 1; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); display: block; transition: transform .2s, box-shadow .2s, border-color .2s; cursor: pointer; }
.ig-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-color: var(--green); }
.ig-tile-bg { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; background: var(--bg-2); }
.ig-tone-a .ig-tile-bg { background: linear-gradient(135deg, oklch(0.92 0.04 150) 0%, oklch(0.85 0.06 150) 100%); }
.ig-tone-b .ig-tile-bg { background: linear-gradient(135deg, oklch(0.94 0.05 75) 0%, oklch(0.86 0.07 70) 100%); }
.ig-tone-c .ig-tile-bg { background: linear-gradient(135deg, oklch(0.90 0.03 240) 0%, oklch(0.82 0.05 230) 100%); }
.ig-tone-d .ig-tile-bg { background: linear-gradient(135deg, oklch(0.93 0.04 30) 0%, oklch(0.84 0.07 25) 100%); }
.ig-tone-e .ig-tile-bg { background: linear-gradient(135deg, oklch(0.91 0.03 180) 0%, oklch(0.83 0.05 175) 100%); }
.ig-tone-f .ig-tile-bg { background: linear-gradient(135deg, oklch(0.90 0.04 320) 0%, oklch(0.82 0.06 315) 100%); }
[data-theme="dark"] [class*="ig-tone-"] .ig-tile-bg { background: linear-gradient(135deg, oklch(0.25 0.02 150) 0%, oklch(0.18 0.02 150) 100%); }
.ig-tile-mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.5px; color: var(--ink-2); opacity: 0.6; }
.ig-tile-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 32px; color: var(--ink); opacity: 0.18; align-self: flex-end; line-height: 1; }
.ig-tile-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.0) 55%); opacity: 0; transition: opacity .22s; }
.ig-tile:hover .ig-tile-overlay { opacity: 1; }
.ig-tile-icon { align-self: flex-end; color: white; opacity: 0.92; }
.ig-tile-icon svg { width: 22px; height: 22px; }
.ig-tile-meta { color: white; }
.ig-tile-caption { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; }
.ig-tile-sub { font-size: 12px; opacity: 0.85; margin-top: 2px; }
.ig-foot { margin-top: 24px; text-align: center; }
.ig-foot .mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; color: var(--ink-3); text-transform: uppercase; }

/* FOOTER */
footer { background: oklch(0.18 0.015 150); color: oklch(0.85 0.01 90); padding: 0 0 32px; }
[data-theme="dark"] footer { background: oklch(0.10 0.015 150); }
.dealer-form { background: var(--ochre); color: oklch(0.18 0.015 150); border-radius: var(--radius); padding: 28px 36px; margin-top: -60px; position: relative; z-index: 2; }
@media (max-width: 820px) { .dealer-form { padding: 24px; margin-top: -40px; } }
.dealer-form form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; }
@media (max-width: 720px) { .dealer-form form { grid-template-columns: 1fr; } }
.dealer-form input { padding: 12px 14px; background: oklch(0.99 0.008 85 / 0.92); border: 1px solid oklch(0.18 0.015 150 / 0.18); border-radius: 8px; color: oklch(0.18 0.015 150); font: inherit; font-size: 14px; }
.dealer-form input::placeholder { color: oklch(0.18 0.015 150 / 0.5); }
.dealer-form button { background: oklch(0.18 0.015 150); color: oklch(0.95 0.01 90); padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 13px; letter-spacing: 0.06em; transition: opacity .15s; }
.dealer-form button:disabled { opacity: 0.55; cursor: not-allowed; }
.dealer-form form { position: relative; }
.dealer-err { margin-top: 12px; font-size: 13px; color: oklch(0.40 0.18 28); background: oklch(0.97 0.04 28); border-radius: 8px; padding: 10px 14px; border: 1px solid oklch(0.85 0.10 28); }
.dealer-form-ok { background: oklch(0.55 0.13 150) !important; }
.dealer-ok { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: oklch(0.18 0.015 150); }
.dealer-ok-icon { width: 44px; height: 44px; border-radius: 50%; background: oklch(0.18 0.015 150); color: oklch(0.95 0.01 90); display: grid; place-items: center; flex-shrink: 0; }
.dealer-ok-icon svg { width: 22px; height: 22px; }
.dealer-ok-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; }
.dealer-ok-sub { font-size: 14px; opacity: 0.78; margin-top: 2px; }
.dealer-ok-again { margin-left: auto; background: transparent; border: 1px solid oklch(0.18 0.015 150 / 0.3); color: oklch(0.18 0.015 150); padding: 10px 18px; border-radius: 8px; font-weight: 600; font-size: 12px; letter-spacing: 0.06em; cursor: pointer; }
.dealer-ok-again:hover { background: oklch(0.18 0.015 150); color: oklch(0.95 0.01 90); }
@media (max-width: 540px) { .dealer-ok-again { margin-left: 0; width: 100%; } }
.footer-disclaimer { font-size: 11px; color: oklch(0.85 0.01 90 / 0.5); margin: 56px 0 32px; line-height: 1.6; max-width: 920px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-top: 28px; border-top: 1px solid oklch(0.95 0.01 90 / 0.10); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { color: oklch(0.95 0.01 90); margin-bottom: 18px; font-size: 14px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a, footer ul li { color: oklch(0.85 0.01 90 / 0.7); font-size: 14px; }
footer ul a:hover { color: oklch(0.95 0.01 90); }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid oklch(0.95 0.01 90 / 0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 11px; color: oklch(0.85 0.01 90 / 0.45); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; text-transform: uppercase; }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-link { width: 40px; height: 40px; border-radius: 10px; display: inline-grid; place-items: center; background: oklch(0.95 0.01 90 / 0.08); border: 1px solid oklch(0.95 0.01 90 / 0.12); color: oklch(0.85 0.01 90 / 0.85); transition: background .18s, color .18s, transform .18s, border-color .18s; }
.social-link svg { width: 18px; height: 18px; display: block; }
.social-link:hover { background: var(--ochre); border-color: var(--ochre); color: oklch(0.18 0.015 150); transform: translateY(-2px); }

.footer-contacts { gap: 14px !important; }
.footer-contacts li { display: block; }
.footer-contacts a { color: oklch(0.85 0.01 90 / 0.85); }
.footer-contacts a:hover { color: var(--ochre); }
.fc-block { display: flex !important; flex-direction: column; gap: 2px; }
.fc-country { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: oklch(0.85 0.01 90 / 0.45); }
.fc-line { font-size: 14px; color: oklch(0.85 0.01 90 / 0.85); }

/* Lang pill in topstrip */
.lang-pill { display: inline-flex; gap: 2px; padding: 3px; background: oklch(0.95 0.01 90 / 0.10); border: 1px solid oklch(0.95 0.01 90 / 0.18); border-radius: 999px; }
.lang-btn { padding: 4px 9px; border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: oklch(0.85 0.01 90 / 0.7); cursor: pointer; }
.lang-btn.active { background: oklch(0.95 0.01 90); color: oklch(0.18 0.015 150); }
.lang-btn:hover:not(.active) { color: oklch(0.95 0.01 90); }

/* Locked overlay for non-RU languages */
.lang-locked-overlay { position: fixed; inset: 0; background: var(--bg); z-index: 200; display: grid; place-items: center; padding: 28px; text-align: center; }
.lang-locked-card { max-width: 440px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow); }
.lang-locked-card h2 { font-size: 24px; margin-bottom: 12px; }
.lang-locked-card p { margin-bottom: 24px; }
