﻿:root {
  --surface: rgba(18, 28, 41, 0.76);
  --surface-strong: rgba(12, 19, 29, 0.92);
  --border: rgba(170, 190, 210, 0.14);
  --text: #eff4fb;
  --muted: #9badc0;
  --green: #8fe21d;
  --green-soft: rgba(143, 226, 29, 0.14);
  --red: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --content: 1200px;
  --parallax-shift: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(143, 226, 29, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(61, 100, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #0b111a 0%, #091018 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

body::before {
  top: 9vh;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(143, 226, 29, 0.12), transparent 72%);
  transform: translate3d(0, calc(var(--parallax-shift) * -0.3), 0);
}

body::after {
  top: 22vh;
  right: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(83, 168, 255, 0.1), transparent 72%);
  transform: translate3d(0, calc(var(--parallax-shift) * 0.22), 0);
}

body.cursor-active::before,
body.cursor-active::after {
  opacity: 0.55;
}

body.cursor-active .site-shell::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 226, 29, 0.12), rgba(143, 226, 29, 0.04) 34%, transparent 72%);
  transform: translate3d(calc(var(--mouse-x, 50vw) - 160px), calc(var(--mouse-y, 50vh) - 160px), 0);
  transition: transform 0.08s linear, opacity 0.2s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

body.cursor-active .site-shell::before {
  opacity: 1;
}

a { color: inherit; text-decoration: none; }
video { max-width: 100%; display: block; }
.site-shell { width: min(calc(100% - 32px), var(--content)); margin: 0 auto; padding-bottom: 48px; }
.topbar {
  position: sticky; top: 12px; z-index: 30; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: 20px auto 0; padding: 18px 22px; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(8, 13, 20, 0.78); backdrop-filter: blur(18px); box-shadow: var(--shadow);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.brand { font-family: "Unbounded", sans-serif; font-size: 1.1rem; letter-spacing: 0.04em; transform: skewX(-8deg); }
.brand-white { color: #f5f7fb; }
.brand-green { color: var(--green); }
.nav { display: flex; align-items: center; gap: 10px; }
.nav a { color: var(--muted); padding: 10px 14px; border-radius: 999px; transition: 0.2s ease; }
.nav a:hover, .nav a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav a:hover {
  background: rgba(143, 226, 29, 0.1);
  box-shadow: inset 0 0 0 1px rgba(143, 226, 29, 0.12);
}
.nav-cta { color: #08110d; background: var(--green); font-weight: 800; }
.nav-cta:hover, .nav-cta.active { background: #a2f238; color: #08110d; }
.menu-toggle {
  display: none; width: 50px; height: 50px; border: 1px solid var(--border); border-radius: 50%; background: transparent; padding: 0;
}
.menu-toggle span { display:block; width:20px; height:2px; background:var(--text); margin:4px auto; }
.hero, .page-hero { display:grid; gap:28px; padding:80px 0 40px; }
.hero {
  position: relative; overflow: hidden; grid-template-columns: 1.1fr 0.9fr; align-items:center; min-height: calc(100vh - 120px); isolation: isolate;
}
.hero-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.market-cube {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 90px;
  padding: 12px 10px 10px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02) 30%, rgba(9, 14, 24, 0.62) 100%),
    var(--cube-bg, rgba(14,22,33,0.84));
  box-shadow:
    0 24px 44px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -10px 18px rgba(0,0,0,0.16);
  backdrop-filter: blur(12px);
  opacity: 0.96;
  will-change: transform;
}
.market-cube::before {
  content: "";
  position: absolute;
  inset: 8px 10px auto;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0));
  opacity: 0.7;
}
.market-cube::after {
  content: "";
  position: absolute;
  inset: auto 12px 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.14);
  filter: blur(8px);
}
.market-cube-badge {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
  font-style: normal;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.market-cube small {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239,244,251,0.86);
  text-align: center;
}
.market-cube[data-market="wb"] { --cube-bg: linear-gradient(160deg, rgba(154, 73, 255, 0.9), rgba(80, 24, 139, 0.88)); }
.market-cube[data-market="kaspi"] { --cube-bg: linear-gradient(160deg, rgba(255, 92, 92, 0.92), rgba(154, 33, 33, 0.9)); }
.market-cube[data-market="ozon"] { --cube-bg: linear-gradient(160deg, rgba(53, 141, 255, 0.92), rgba(19, 64, 148, 0.9)); }
.market-cube[data-market="teez"] { --cube-bg: linear-gradient(160deg, rgba(97, 220, 111, 0.92), rgba(32, 110, 51, 0.9)); }
.market-cube[data-market="wb"] .market-cube-badge { color: #eed4ff; }
.market-cube[data-market="kaspi"] .market-cube-badge { color: #ffe3e3; }
.market-cube[data-market="ozon"] .market-cube-badge { color: #e1efff; }
.market-cube[data-market="teez"] .market-cube-badge { color: #e3ffe8; }
.hero-live { min-height: auto; padding-top: 64px; }
.parallax-orb, .parallax-grid { position: absolute; pointer-events: none; z-index: -1; will-change: transform; }
.orb-a { top: 4%; left: -8%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(143,226,29,0.18), transparent 70%); }
.orb-b { right: -6%; top: 18%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(67,119,255,0.14), transparent 70%); }
.parallax-grid {
  inset: 8% 8% auto auto; width: 360px; height: 360px;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px; opacity: 0.28; mask-image: radial-gradient(circle, #000 45%, transparent 80%);
}
.eyebrow { margin:0 0 14px; color:var(--green); text-transform:uppercase; letter-spacing:0.18em; font-size:0.78rem; font-weight:800; }
h1,h2,h3,legend { margin:0; }
.hero h1, .page-hero h1 { font-family:"Unbounded", sans-serif; font-size: clamp(2.3rem, 5vw, 4.6rem); line-height:1.02; }
.page-hero { max-width: 900px; }
.contact-hero-tight { padding-bottom: 18px; }
.success-hero { min-height: calc(100vh - 180px); align-content: center; }
.hero-slogan { margin: 14px 0 18px; color: var(--green); font-size: clamp(1.05rem, 2.3vw, 1.45rem); font-weight: 800; }
.hero-text, .page-copy, .section-heading p, .service-card p, .benefits-grid p, .price-row p, .case-card p, .story-grid p, .contact-card p, .contact-list li, .stat-card p, .service-preview p, .service-tile p, .flow-node p {
  color: var(--muted); line-height: 1.7;
}
.hero-text-strong { max-width: 760px; font-size: 1.06rem; }
.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}
.hero-actions, .hero-metrics, .hero-grid, .service-stack, .benefits-grid, .cases-grid, .story-grid, .contact-layout, .service-preview-grid, .stats-showcase, .video-grid, .country-list, .services-mosaic, .flag-grid, .flow-layout {
  display:grid; gap:18px;
}
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-points span,
.hero-note {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
}
.hero-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}
.hero-note strong {
  color: var(--green);
}
.compact-actions { margin-top: 22px; }
.section-actions { margin-top: 22px; }
.button {
  display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding:0 22px; border-radius:999px; border:0; font-weight:800; cursor:pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.button:active {
  transform: translateY(1px) scale(0.985);
  filter: brightness(0.96);
}
.button:disabled { opacity:0.68; cursor:progress; transform:none; }
.button-primary { color:#061008; background:var(--green); box-shadow:0 10px 30px rgba(143,226,29,0.25); }
.button-secondary { border:1px solid var(--border); background: rgba(255,255,255,0.03); }
.button-primary:hover,
.button-primary:focus-visible {
  background: #a2f238;
  box-shadow: 0 16px 34px rgba(143,226,29,0.32);
}
.button.is-touch-active,
.button-primary.is-touch-active {
  background: #a2f238;
  box-shadow: 0 16px 34px rgba(143,226,29,0.32);
  color: #061008;
}
.button-primary:active {
  background: #7dce13;
}
.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(143,226,29,0.14);
  border-color: rgba(143,226,29,0.34);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(143,226,29,0.12);
}
.button-secondary.is-touch-active {
  background: rgba(143,226,29,0.18);
  border-color: rgba(143,226,29,0.34);
  color: var(--green);
}
.button-secondary:active {
  background: rgba(143,226,29,0.22);
  border-color: rgba(143,226,29,0.44);
  color: #dff7b7;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-reveal.motion-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-float {
  transform: none;
  transition: none;
  will-change: auto;
}

.topbar.is-scrolled {
  background: rgba(8, 13, 20, 0.88);
  border-color: rgba(143, 226, 29, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hero-metrics article,
.dashboard-card,
.service-card,
.benefits-grid article,
.price-row,
.case-card,
.story-grid article,
.contact-card,
.cta-section,
.service-preview,
.stat-card,
.service-tile,
.flag-card,
.flow-node,
.result-card,
.footer-card,
.showcase-thumb,
.gallery-card,
.work-frame {
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.hero-metrics article:hover,
.dashboard-card:hover,
.service-card:hover,
.benefits-grid article:hover,
.price-row:hover,
.case-card:hover,
.story-grid article:hover,
.contact-card:hover,
.cta-section:hover,
.service-preview:hover,
.stat-card:hover,
.service-tile:hover,
.flag-card:hover,
.flow-node:hover,
.result-card:hover,
.footer-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(22, 34, 50, 0.96), rgba(14, 22, 33, 0.92));
  border-color: rgba(143, 226, 29, 0.22);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  filter: brightness(1.04);
}

.showcase-thumb:hover,
.gallery-card:hover,
.work-frame:hover {
  filter: brightness(1.06);
}
.marketplace-ribbon { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.market-chip, .board-icon {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,0.04); font-weight: 800;
}
.market-chip.wb, .board-icon.wb { color: #b44cff; }
.market-chip.kaspi, .board-icon.kaspi { color: #ff5e5e; }
.market-chip.ozon, .board-icon.ozon { color: #53a8ff; }
.market-chip.teez, .board-icon.teez { color: #f0d36b; }
.board-icons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.board-icon { width: 54px; padding: 0; }
.hero-metrics { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top:32px; }
.hero-metrics article, .dashboard-card, .service-card, .benefits-grid article, .price-row, .case-card, .story-grid article, .contact-card, .cta-section, .service-preview, .stat-card, .service-tile, .flag-card, .flow-node {
  border:1px solid var(--border); border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(16px); box-shadow: var(--shadow);
}
.hero-metrics article, .dashboard-card, .service-card, .benefits-grid article, .price-row, .case-card, .story-grid article, .contact-card, .cta-section, .service-preview, .stat-card, .service-tile, .flag-card, .flow-node { padding: 22px; }
.hero-metrics strong { display:block; font-size:1.5rem; margin-bottom:8px; }
.hero-panel { display:grid; gap:18px; }
.spotlight { background: linear-gradient(135deg, rgba(143,226,29,0.14), rgba(255,255,255,0.02)), var(--surface-strong); }
.dashboard-card ul { margin:16px 0 0; padding-left:18px; color:var(--muted); line-height:1.7; }
.hero-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card-label, .service-index, .case-card span, .service-preview span, .stat-card span, .service-tile span {
  display:inline-block; margin-bottom:12px; color:var(--green); font-size:0.8rem; letter-spacing:0.16em; text-transform:uppercase; font-weight:800;
}
.dashboard-card strong, .service-card h2, .price-row h2, .case-card h2, .story-grid h2, .contact-card h2, .service-preview h3, .stat-card strong, .service-tile h3, .flow-node h3 {
  font-size:1.35rem; line-height:1.25;
}
.dashboard-card.wide { grid-column: span 2; }
.floating-card { transform: translateY(0); }
.hero-card-large strong { display:block; margin-bottom: 8px; }
.partners-strip { overflow: hidden; padding-top: 12px; }
.strip-track { display: flex; gap: 14px; min-width: max-content; animation: stripMove 22s linear infinite; }
.strip-track span {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--muted); font-weight: 700;
}
.section { padding: 38px 0; }
.section-heading { max-width:760px; margin-bottom:24px; }
.section-heading h2, .cta-section h2 { font-family:"Unbounded", sans-serif; font-size: clamp(1.7rem, 4vw, 2.8rem); line-height:1.1; margin-bottom:12px; }
.benefits-grid, .service-preview-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-preview-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.service-preview { min-height: 220px; }
.service-stack, .cases-grid, .story-grid, .contact-layout, .stats-showcase { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cases-grid-wide { grid-template-columns: repeat(2, minmax(0,1fr)); }
.service-card, .case-card, .contact-card { padding:28px; }
.service-card ul, .contact-list { margin:18px 0 0; padding-left:18px; color:var(--muted); line-height:1.8; }
.case-card.highlight { background: linear-gradient(180deg, rgba(143,226,29,0.08), rgba(255,255,255,0.02)); }
.services-mosaic {
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: minmax(220px, auto);
}
.service-flip {
  position: relative;
  min-height: 220px;
}
.service-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-flip-face {
  position: relative;
  inset: auto;
  height: 100%;
}
.service-flip-back {
  display: none;
}
.service-flip:hover .service-flip-inner {
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}
.accent-back { background: linear-gradient(160deg, rgba(143,226,29,0.14), rgba(255,255,255,0.03)); }
.dark-back { background: linear-gradient(160deg, rgba(70,110,255,0.14), rgba(255,255,255,0.03)); }
.mini-action { display: inline-flex; align-items: center; justify-content: center; width: max-content; min-height: 42px; padding: 0 16px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); color: var(--text); font-weight: 800; transition: transform 0.18s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease; }
.mini-action:hover,
.mini-action:focus-visible { background: var(--green); border-color: rgba(143,226,29,0.4); color: #061008; box-shadow: 0 14px 28px rgba(143,226,29,0.18); transform: translateY(-2px); }
.mini-action.is-touch-active { background: var(--green); border-color: rgba(143,226,29,0.4); color: #061008; box-shadow: 0 14px 28px rgba(143,226,29,0.18); }
.mini-action:active { background: #7dce13; color: #061008; transform: translateY(1px) scale(0.985); box-shadow: inset 0 2px 10px rgba(0,0,0,0.16); }
.hero-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.service-tile-large { grid-column: span 2; grid-row: span 2; }
.service-tile.accent { background: linear-gradient(160deg, rgba(143,226,29,0.09), rgba(255,255,255,0.03)); }
.service-tile.dark { background: linear-gradient(160deg, rgba(70,110,255,0.1), rgba(255,255,255,0.02)); }
.products-section { position: relative; }
.fade-mask { position: relative; overflow: hidden; }
.fade-mask::before, .fade-mask::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; }
.fade-mask::before { left: 0; background: linear-gradient(90deg, #091018 10%, transparent 100%); }
.fade-mask::after { right: 0; background: linear-gradient(270deg, #091018 10%, transparent 100%); }
.product-carousel { overflow: hidden; }
.carousel-track { display: flex; gap: 18px; min-width: max-content; animation: carouselMove 22s linear infinite; }
.product-card {
  width: 300px; min-height: 320px; padding: 22px; border-radius: 28px; border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between;
}
.product-card-green { background: linear-gradient(180deg, rgba(16,31,24,0.95), rgba(14,21,31,0.95)); }
.product-card-sand { background: linear-gradient(180deg, rgba(58,44,29,0.95), rgba(24,21,29,0.95)); }
.product-card-red { background: linear-gradient(180deg, rgba(54,28,28,0.95), rgba(21,19,29,0.95)); }
.product-card-soft { background: linear-gradient(180deg, rgba(35,31,57,0.95), rgba(20,21,31,0.95)); }
.product-badge { display:inline-flex; align-items:center; width:max-content; min-height:34px; padding:0 12px; border-radius:999px; background: rgba(255,255,255,0.09); font-size:0.8rem; font-weight:800; }
.product-card h3 { font-size: 2rem; line-height: 1; margin: 18px 0 8px; }
.product-stats { display: flex; flex-wrap: wrap; gap: 10px; }
.product-stats span {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); color: var(--muted); font-size: 0.82rem; font-weight: 700;
}
.marketplace-scene { position: relative; }
.flow-layout { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; }
.flow-node { min-height: 220px; }
.flow-node span {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-weight: 800; margin-bottom: 14px;
}
.flow-line { height: 2px; background: linear-gradient(90deg, rgba(143,226,29,0.18), rgba(255,255,255,0.08)); }
.stats-showcase { margin-top: 8px; }
.stat-card.success { background: linear-gradient(180deg, rgba(143,226,29,0.08), rgba(255,255,255,0.02)); }
.country-list { grid-template-columns: repeat(5, minmax(0,1fr)); }
.flag-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
.flag-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; min-height: 136px; text-align: center; }
.flag-image {
  width: 58px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.flag-svg {
  display: inline-flex;
  overflow: hidden;
}
.flag-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.flag { width: 58px; height: 40px; border-radius: 10px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.flag-ru { background: linear-gradient(180deg, #ffffff 0 33%, #2c65ff 33% 66%, #e03f3f 66% 100%); }
.flag-kz { background: linear-gradient(180deg, #4ccdf3, #1ab4e8); }
.flag-kg { background: linear-gradient(180deg, #e83e3e, #c91d1d); }
.flag-am { background: linear-gradient(180deg, #d64545 0 33%, #2b4cbf 33% 66%, #f0a341 66% 100%); }
.flag-by { background: linear-gradient(90deg, #cb3b3b 0 78%, #2d9b4f 78% 100%); }
.pricing-table { display:grid; gap:14px; }
.price-row { display:flex; justify-content:space-between; align-items:center; gap:20px; }
.price-row strong, .case-card strong, .stat-card strong { color: var(--green); }
.video-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.portfolio-video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 24px; border:1px solid var(--border); background: rgba(255,255,255,0.03); box-shadow: var(--shadow); }
.lead-form { display:grid; gap:16px; }
.lead-form label { display:grid; gap:8px; font-weight:700; }
.lead-form input, .lead-form textarea {
  width:100%; border:1px solid var(--border); border-radius:16px; background: rgba(255,255,255,0.02); color:var(--text); padding:14px 16px; font: inherit;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color:#7590aa; }
.choice-group {
  margin: 0; padding: 0; border: 0; display: grid; gap: 10px;
}
.choice-group legend {
  font-weight: 800; margin-bottom: 2px;
}
.choice-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.choice-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.choice-pill {
  position: relative; display: block;
}
.choice-pill input {
  position: absolute; opacity: 0; pointer-events: none;
}
.choice-pill span {
  display: flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 14px; text-align: center;
  border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,0.03); color: var(--muted); font-weight: 800;
  transition: 0.2s ease;
}
.choice-pill input:checked + span {
  border-color: rgba(143,226,29,0.5); background: rgba(143,226,29,0.14); color: var(--text); box-shadow: inset 0 0 0 1px rgba(143,226,29,0.18);
}
.choice-pill:hover span {
  border-color: rgba(255,255,255,0.2); color: var(--text);
}
.choice-pill.wide-pill { grid-column: span 2; }
.kaspi-pill input:checked + span { background: rgba(255,94,94,0.14); border-color: rgba(255,94,94,0.4); }
.ozon-pill input:checked + span { background: rgba(83,168,255,0.14); border-color: rgba(83,168,255,0.4); }
.teez-pill input:checked + span { background: rgba(240,211,107,0.14); border-color: rgba(240,211,107,0.35); }
.form-status { min-height:24px; margin:0; font-size:0.95rem; }
.form-status-loading { color:#c8d4e2; }
.form-status-success { color:var(--green); }
.form-status-error { color:var(--red); }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip: rect(0,0,0,0); white-space:nowrap; border:0; }
.contact-note { margin-top:20px; padding:16px; border-radius:18px; background: rgba(255,255,255,0.03); }
.cta-section { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-top:24px; }
.cta-actions-stack { display:flex; gap:12px; flex-wrap:wrap; }
.final-cta { align-items: stretch; }
.final-cta > div:first-child,
.final-cta .service-cta-stack { width: 100%; }
.final-cta > div:first-child { max-width: 640px; }
.service-cta-stack { display: grid; gap: 12px; align-content: start; }
@keyframes carouselMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes stripMove { from { transform: translateX(0); } to { transform: translateX(-35%); } }
@media (max-width: 1100px) {
  .services-mosaic { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: minmax(220px, auto); }
  .service-tile-large { grid-column: span 2; grid-row: auto; }
  .service-preview-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .flag-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .flow-layout { grid-template-columns: 1fr; }
  .flow-line { height: 24px; width: 2px; margin: 0 auto; }
}
@media (max-width: 980px) {
  .hero, .hero-metrics, .benefits-grid, .service-stack, .cases-grid, .story-grid, .contact-layout, .service-preview-grid, .stats-showcase, .video-grid, .country-list, .services-mosaic, .flag-grid {
    grid-template-columns:1fr;
  }
  .hero { min-height:auto; }
  .service-flip, .services-mosaic { min-height: auto; grid-auto-rows: auto; }
  .service-tile-large { grid-column: auto; grid-row: auto; }
  .cta-section, .price-row { flex-direction:column; align-items:stretch; }
  .hero-grid { grid-template-columns:1fr; }
  .dashboard-card.wide { grid-column:auto; }
  .choice-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .site-shell { width: min(calc(100% - 20px), var(--content)); }
  .topbar { border-radius:28px; padding:16px 18px; }
  .menu-toggle { display:inline-block; }
  .nav {
    position:absolute; top: calc(100% + 10px); left:0; right:0; display:none; flex-direction:column; align-items:stretch; padding:14px; border:1px solid var(--border); border-radius:24px; background: rgba(8,13,20,0.96);
  }
  .topbar.menu-open .nav { display:flex; }
  .nav a { width:100%; }
  .hero, .page-hero, .section { padding-top:44px; }
  .product-card { width: 260px; min-height: 280px; }
  .choice-grid, .choice-grid.compact { grid-template-columns: 1fr; }
  .choice-pill.wide-pill { grid-column: auto; }
}


/* Flow section stability fixes */
.marketplace-scene {
  overflow: hidden;
}

.marketplace-scene .section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.flow-layout {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  gap: 22px;
  align-items: stretch;
}

.flow-node {
  min-height: 260px;
  transform: none !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.flow-node:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(143, 226, 29, 0.22);
}

.flow-line {
  align-self: center;
}

.stats-showcase {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .flow-layout {
    margin-top: 0;
    gap: 16px;
  }

  .flow-node {
    min-height: 220px;
  }
}




.products-section {
  padding-top: 72px;
}

.products-section .section-heading {
  margin-bottom: 32px;
}

.product-carousel {
  margin-top: 8px;
}

.product-card {
  min-height: 300px;
}

.flag-card small { color: var(--muted); font-size: 0.9rem; }
.flag-card-featured {
  background: linear-gradient(160deg, rgba(76, 205, 243, 0.14), rgba(255,255,255,0.03));
  border-color: rgba(76, 205, 243, 0.28);
}
.city-cloud {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  overflow: hidden;
}
.centered-cloud {
  justify-content: center;
}
.city-cloud-track {
  display: flex;
  gap: 12px;
  min-width: max-content;
}
.city-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
}
.city-cloud-loop {
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
}
.city-cloud-loop::-webkit-scrollbar {
  display: none;
}

.market-chip.teez, .board-icon.teez {
  color: #6fe46a;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
}

.tags-section {
  padding-top: 14px;
}

.work-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.work-card::after {
  content: \"\";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,13,20,0.05), rgba(8,13,20,0.72));
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) saturate(0.8) brightness(0.92);
  transform: scale(1.02);
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-card figcaption {
  padding: 14px 16px 18px;
  font-weight: 800;
  color: var(--text);
  transition: color 240ms ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(143, 226, 29, 0.28);
  background: rgba(143, 226, 29, 0.06);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.28);
}

.gallery-card:hover img {
  filter: grayscale(0) saturate(1.04) brightness(1);
  transform: scale(1.06);
}

.gallery-card:hover figcaption {
  color: var(--green);
}

.showcase-carousel {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(143, 226, 29, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(11, 17, 26, 0.96), rgba(10, 16, 24, 0.98));
  box-shadow: var(--shadow);
}

.showcase-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.showcase-viewport {
  position: relative;
  overflow: hidden;
}

.showcase-slide {
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: center;
}

.showcase-slide.is-active {
  display: grid;
}

.showcase-frame {
  position: relative;
  margin: 0;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top, rgba(143, 226, 29, 0.08), transparent 28%),
    rgba(255,255,255,0.03);
}

.showcase-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.showcase-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 26px 48px rgba(0,0,0,0.28);
}

.showcase-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.showcase-copy strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 38ch;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.showcase-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.showcase-arrow:hover {
  transform: translateY(-2px);
  background: rgba(143, 226, 29, 0.12);
  border-color: rgba(143, 226, 29, 0.28);
}

.showcase-arrow span {
  font-size: 1.1rem;
  font-weight: 800;
}

.showcase-footer {
  display: grid;
  gap: 18px;
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.showcase-dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}

.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.showcase-thumb {
  padding: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.showcase-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.showcase-thumb.is-active {
  border-color: rgba(143, 226, 29, 0.34);
  box-shadow: 0 12px 26px rgba(0,0,0,0.24);
}

.showcase-thumb:hover {
  transform: translateY(-2px);
}

.hero-text-strong strong {
  color: var(--green);
}

@media (max-width: 760px) {
  .hero-copy,
  .page-hero,
  .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-points,
  .marketplace-ribbon,
  .hero-metrics,
  .cta-actions-stack,
  .city-cloud {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .button,
  .cta-actions-stack .button {
    width: 100%;
  }

  .final-cta {
    padding: 20px 18px;
  }

  .final-cta > div:first-child,
  .final-cta .service-cta-stack {
    width: 100%;
    max-width: none;
  }

  .final-cta > div:first-child {
    text-align: left;
    padding-left: 2px;
    padding-right: 2px;
  }

  .final-cta > div:first-child .eyebrow,
  .final-cta > div:first-child h2,
  .final-cta > div:first-child p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-note {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .marketplace-ribbon {
    justify-content: center;
  }

  .hero-orbits {
    opacity: 0.82;
  }

  .market-cube {
    width: 72px;
    padding: 10px 8px 8px;
  }

  .market-cube-badge {
    width: 34px;
    height: 34px;
    font-size: 0.84rem;
  }

  .market-cube small {
    font-size: 0.6rem;
  }

  .hero-metrics article,
  .dashboard-card,
  .contact-card,
  .flag-card,
  .stat-card,
  .service-tile,
  .flow-node {
    text-align: left;
  }

  .hero-panel {
    margin-top: 6px;
  }

  .topbar {
    margin-left: auto;
    margin-right: auto;
  }
}

.market-chip {
  gap: 8px;
}

.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
}

.audit-offer-section {
  padding-top: 18px;
}

.offer-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(143,226,29,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.offer-banner h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.offer-side {
  display: grid;
  gap: 16px;
  align-content: center;
}

.offer-timer {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(143,226,29,0.22);
  background: rgba(8, 18, 12, 0.5);
}

.offer-timer span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.offer-timer strong {
  font-size: 1.35rem;
  color: var(--green);
}

.client-journey-section {
  padding-top: 24px;
}

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

.journey-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.journey-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 14px;
}

.journey-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.journey-card p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .offer-banner,
  .journey-grid,
  .works-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .offer-banner {
    text-align: center;
    padding: 22px;
  }

  .offer-side {
    justify-items: center;
  }

  .market-chip {
    width: 100%;
    justify-content: center;
  }
}

.market-chip span:last-child {
  white-space: nowrap;
}

.audit-offer-section {
  padding-top: 18px;
}

.offer-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(143,226,29,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.offer-banner h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.offer-side {
  display: grid;
  gap: 16px;
  align-content: center;
}

.offer-timer {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(143,226,29,0.22);
  background: rgba(8, 18, 12, 0.5);
}

.offer-timer span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.offer-timer strong {
  font-size: 1.35rem;
  color: var(--green);
}

.client-journey-section {
  padding-top: 24px;
}

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

.journey-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.journey-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 14px;
}

.journey-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.journey-card p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .offer-banner,
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

.works-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 300px);
  gap: 18px;
  width: max-content;
  padding-bottom: 8px;
}

.works-rail-window {
  overflow-x: auto;
  overflow-y: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}

.works-rail-window::-webkit-scrollbar {
  display: none;
}

.works-rail-window:active {
  cursor: grabbing;
}

.works-rail .work-frame {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  min-width: 270px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.works-rail .work-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease, filter 320ms ease;
}

.works-rail .work-caption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 18px;
}

.works-rail .work-caption strong {
  font-size: 1rem;
  color: var(--text);
}

.works-rail .work-caption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.works-rail .work-frame:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 226, 29, 0.28);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.28);
}

.works-rail .work-frame:hover img {
  transform: scale(1.04);
}

.marketplace-scene .flow-node {
  display: grid;
  align-content: start;
  gap: 12px;
}

.flow-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.flow-mock {
  padding: 16px;
  background:
    radial-gradient(circle at top right, rgba(143, 226, 29, 0.14), transparent 36%),
    rgba(10, 18, 30, 0.86);
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
}

.mock-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.mock-topline strong {
  color: var(--text);
  font-size: 0.95rem;
}

.chat-bubble {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 16px;
  line-height: 1.4;
  font-size: 0.9rem;
}

.chat-bubble.incoming {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.chat-bubble.outgoing {
  justify-self: end;
  background: rgba(143, 226, 29, 0.18);
  color: var(--green);
  border: 1px solid rgba(143, 226, 29, 0.3);
  font-weight: 800;
}

.chat-input {
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.85rem;
}

.audit-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
  min-height: 72px;
}

.audit-chart i {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(143, 226, 29, 0.95), rgba(143, 226, 29, 0.18));
}

.audit-chart i:nth-child(1) { height: 34px; }
.audit-chart i:nth-child(2) { height: 52px; }
.audit-chart i:nth-child(3) { height: 44px; }
.audit-chart i:nth-child(4) { height: 66px; }
.audit-chart i:nth-child(5) { height: 58px; }

.audit-stats,
.result-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.audit-stats span,
.result-grid-mini span {
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.82rem;
}

.result-grid-mini {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: stretch;
}

.result-grid-mini span {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 48px;
  min-width: 72px;
  padding: 8px 10px 8px 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(143, 226, 29, 0.14);
  white-space: normal;
  font-weight: 700;
  line-height: 1.05;
}

.result-grid-mini span::before {
  content: "✓";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(143, 226, 29, 0.18);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

.result-grid-mini strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
}

.result-grid-mini small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audit-table {
  display: grid;
  gap: 8px;
}

.audit-table div {
  padding: 9px 10px;
  border-left: 2px solid rgba(143, 226, 29, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 12px 10px 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.88rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(143, 226, 29, 0.14);
}

.check-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.result-money {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  color: var(--green);
}

.result-line {
  height: 70px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(143, 226, 29, 0), rgba(143, 226, 29, 0.08)),
    radial-gradient(circle at 15% 85%, rgba(143, 226, 29, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 38% 62%, rgba(143, 226, 29, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 62% 48%, rgba(143, 226, 29, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 86% 20%, rgba(143, 226, 29, 0.9) 0 4px, transparent 5px);
  position: relative;
}

.result-line::before {
  content: "";
  position: absolute;
  inset: 14px 18px 12px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-story-list .section-heading h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.hero-square {
  min-height: 242px;
  display: grid;
  align-content: start;
  gap: 14px;
  background: linear-gradient(180deg, rgba(18, 28, 41, 0.92), rgba(12, 19, 29, 0.86));
}

.spotlight-card {
  background: linear-gradient(145deg, rgba(143, 226, 29, 0.14), rgba(255, 255, 255, 0.03));
}

.social-card strong,
.action-card strong {
  font-size: 1.45rem;
}

.mini-action.wide {
  width: 100%;
  justify-content: center;
}

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

.result-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.result-card-wide {
  grid-column: span 1;
}

.result-media {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.result-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.result-media.portrait {
  aspect-ratio: 4 / 5;
}

.result-media.landscape {
  aspect-ratio: 16 / 9;
}

.result-copy {
  display: grid;
  gap: 10px;
}

.result-copy strong {
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  line-height: 1.15;
}

.result-copy p {
  color: var(--muted);
  margin: 0;
}

.result-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-kpis span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-story-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  min-height: 320px;
  align-content: start;
}

.service-story-card h3 {
  max-width: 18ch;
}

.service-story-card .inline-link {
  margin-top: auto;
}

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

.inline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    rgba(14, 22, 33, 0.88);
  color: var(--text);
  font-weight: 800;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.18s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, filter 0.22s ease;
  overflow: hidden;
}

.inline-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(143, 226, 29, 0.16) 50%, transparent 100%);
  opacity: 0;
  transform: translateX(-36%);
  transition: opacity 0.22s ease, transform 0.32s ease;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: #061008;
  background:
    linear-gradient(180deg, rgba(165, 242, 56, 0.98), rgba(143, 226, 29, 0.92)),
    rgba(143, 226, 29, 0.9);
  border-color: rgba(143, 226, 29, 0.42);
  box-shadow: 0 16px 36px rgba(143, 226, 29, 0.22), inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.03);
}
.inline-link.is-touch-active {
  color: #061008;
  background:
    linear-gradient(180deg, rgba(165, 242, 56, 0.98), rgba(143, 226, 29, 0.92)),
    rgba(143, 226, 29, 0.9);
  border-color: rgba(143, 226, 29, 0.42);
  box-shadow: 0 16px 36px rgba(143, 226, 29, 0.22), inset 0 1px 0 rgba(255,255,255,0.22);
}

.inline-link:hover::before,
.inline-link:focus-visible::before {
  opacity: 1;
  transform: translateX(36%);
}

.inline-link:active {
  transform: translateY(1px) scale(0.985);
  background:
    linear-gradient(180deg, rgba(123, 207, 19, 0.98), rgba(108, 188, 16, 0.94)),
    rgba(108, 188, 16, 0.94);
  border-color: rgba(143, 226, 29, 0.55);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.16);
}

@media (max-width: 980px) {
  .works-rail {
    grid-auto-columns: minmax(220px, 260px);
  }

  .hero-panel-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-story-list {
    grid-template-columns: 1fr;
  }

  .service-story-list .section-heading {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .service-story-list .section-heading h2 {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .service-story-card {
    padding: 20px;
    text-align: left;
  }

  .marketplace-scene .section-heading p,
  .marketplace-scene .section-heading h2,
  .marketplace-scene .section-heading .eyebrow {
    text-align: center;
  }

  .audit-stats {
    grid-template-columns: 1fr;
  }

  .result-grid-mini {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .result-grid-mini::-webkit-scrollbar {
    display: none;
  }

  .result-grid-mini span {
    min-width: 96px;
  }

  .works-rail-window {
    mask-image: none;
    padding-bottom: 8px;
  }

  .works-rail {
    width: max-content;
  }

  .hero-panel-grid {
    gap: 14px;
  }

  .hero-square {
    min-height: auto;
  }
}

.site-footer {
  margin-top: 48px;
  padding: 34px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cases-page .page-hero {
  max-width: 760px;
  padding-bottom: 24px;
}

.privacy-page .page-hero {
  max-width: 760px;
  padding-bottom: 20px;
}

.privacy-page .page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.privacy-page .page-copy {
  max-width: 62ch;
}

.cases-page .page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.cases-page .results-grid {
  align-items: start;
}

.cases-page .result-card {
  gap: 16px;
  padding: 16px;
}

.cases-page .result-media {
  background: rgba(255,255,255,0.96);
}

.cases-page .result-media.portrait {
  aspect-ratio: 4 / 3;
}

.cases-page .result-media img {
  object-fit: contain;
  background: #ffffff;
}

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

.cases-page .gallery-card figcaption {
  font-size: 0.95rem;
}

.cases-page .showcase-carousel {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .showcase-slide {
    grid-template-columns: 1fr;
  }

  .showcase-copy p {
    max-width: none;
  }

  .cases-page .showcase-thumbs {
    grid-template-columns: repeat(5, minmax(72px, 1fr));
  }
}

@media (max-width: 760px) {
  .cases-page .page-hero,
  .cases-page .section-heading {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .cases-page .page-hero {
    gap: 18px;
    padding-top: 28px;
  }

  .cases-page .page-hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.08;
  }

  .cases-page .page-copy {
    max-width: none;
  }

  .cases-page .results-grid {
    gap: 14px;
  }

  .cases-page .result-card {
    border-radius: 22px;
    padding: 14px;
  }

  .cases-page .result-media,
  .cases-page .result-media.portrait,
  .cases-page .result-media.landscape {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .cases-page .result-copy {
    gap: 8px;
  }

  .cases-page .result-copy strong {
    font-size: 1.06rem;
    line-height: 1.2;
  }

  .cases-page .result-kpis {
    gap: 8px;
  }

  .cases-page .result-kpis span {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .showcase-carousel {
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .showcase-stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .showcase-arrow {
    display: none;
  }

  .showcase-frame {
    padding: 0;
    border: 0;
    border-radius: 22px;
    background: transparent;
  }

  .showcase-frame::after {
    display: none;
  }

  .showcase-frame img {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.24);
  }

  .showcase-copy {
    gap: 8px;
    padding: 2px 2px 0;
  }

  .showcase-copy strong {
    font-size: 1.16rem;
    line-height: 1.14;
  }

  .showcase-copy p {
    display: none;
  }

  .showcase-tags {
    display: none;
  }

  .showcase-dots {
    display: none;
  }

  .showcase-footer {
    gap: 10px;
  }

  .showcase-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .showcase-thumbs::-webkit-scrollbar {
    display: none;
  }

  .showcase-thumb {
    min-width: 60px;
    border-radius: 14px;
  }

  .showcase-thumb img {
    border-radius: 14px;
  }

  .showcase-thumb.is-active {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
  }
}

@media (max-width: 760px) {
  .privacy-page .page-hero {
    gap: 16px;
    padding-top: 26px;
    padding-left: 4px;
    padding-right: 4px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    justify-items: start;
  }

  .privacy-page .page-hero .eyebrow,
  .privacy-page .page-hero h1,
  .privacy-page .page-copy {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .privacy-page .page-hero h1 {
    max-width: none;
    font-size: clamp(1.82rem, 7.5vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .privacy-page .page-copy {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .privacy-page .legal-page {
    gap: 16px;
  }

  .privacy-page .legal-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .privacy-page .legal-card h2 {
    font-size: 1.04rem;
    line-height: 1.32;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-copy {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.footer-copy p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.footer-card {
  width: 100%;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.footer-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.footer-inline-links a,
.footer-legal a {
  color: var(--text);
  text-decoration: none;
}

.footer-inline-links a:hover,
.footer-legal a:hover {
  color: var(--green);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.legal-page {
  display: grid;
  gap: 22px;
}

.legal-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.legal-card h2 {
  margin-bottom: 12px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  body::after,
  .motion-float {
    transform: none !important;
  }

  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .topbar,
  .button,
  .gallery-card,
  .showcase-thumb,
  .showcase-arrow {
    transition: none !important;
  }
}

@media (max-width: 900px) {
  body.cursor-active .site-shell::before {
    display: none;
  }
}
