/* ============================================================
   TOP PARTS KHARKIV — Design System
   Brand: Ukrainian blue #005BBB + accent yellow #FFD500
   ============================================================ */

@layer reset, tokens, base, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  table { border-collapse: collapse; }
}

@layer tokens {
  :root {
    /* Brand */
    --blue:        #005BBB;
    --blue-dark:   #004899;
    --blue-light:  #EBF2FF;
    --blue-mid:    #D0E3FF;
    --yellow:      #FFD500;
    --yellow-light:#FFFAE0;

    /* Neutrals */
    --bg:          #FFFFFF;
    --bg-2:        #F7F8FA;
    --bg-3:        #EFF1F5;
    --border:      #E4E7ED;
    --border-2:    #D1D5E0;
    --text-1:      #1A1A1A;
    --text-2:      #4B5263;
    --text-3:      #8E96A8;

    /* Status */
    --green:       #059669;
    --green-light: #ECFDF5;
    --red:         #DC2626;
    --red-light:   #FEF2F2;

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Shadows */
    --sh-xs: 0 1px 2px rgba(0,0,0,0.04);
    --sh-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.03);
    --sh-md: 0 8px 24px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.03);
    --sh-lg: 0 20px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.04);
    --sh-blue: 0 0 0 1px rgba(0,91,187,0.12), 0 8px 32px rgba(0,91,187,0.15);

    /* Timing */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);

    /* Layout */
    --max: 1140px;
    --gap: clamp(16px, 3vw, 32px);
  }
}

@layer base {
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-1);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text-1);
  }

  p { color: var(--text-2); }

  .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  :focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
  }
}

@layer layout {
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
  .section { padding: clamp(56px, 8vw, 96px) 0; }
  .section--alt { background: var(--bg-2); }
  .section--dark { background: var(--text-1); color: #fff; }
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
  @media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 680px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  }
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-text { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.logo-text span { display: block; font-size: 10px; font-weight: 500; color: var(--text-3); letter-spacing: 0.02em; }
/* Nav */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 7px 12px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
/* Lang switcher */
.lang-sw {
  display: flex; align-items: center;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px; gap: 2px;
}
.lang-sw a {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 13px; border-radius: 100px;
  color: var(--text-3); transition: all .15s;
}
.lang-sw a.active {
  background: #fff; color: var(--blue);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
/* Header CTA */
.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  background: var(--blue); color: #fff;
  padding: 9px 18px; border-radius: 100px;
  box-shadow: 0 1px 2px rgba(0,91,187,0.2), 0 4px 12px rgba(0,91,187,0.25);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,91,187,0.2), 0 8px 20px rgba(0,91,187,0.32); }
.header-right { display: flex; align-items: center; gap: 10px; }
/* Mobile toggle */
.nav-toggle { display: none; width: 38px; height: 38px; border-radius: 9px; align-items: center; justify-content: center; }
.nav-toggle:hover { background: var(--bg-2); }
.nav-toggle svg { width: 20px; height: 20px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .header-cta { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: clamp(52px, 8vw, 96px) 0 0;
  background: var(--bg); overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}
.eyebrow-badge {
  background: var(--blue-light); border: 1px solid var(--blue-mid);
  padding: 3px 10px; border-radius: 100px;
}
.hero-title {
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.08; letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero-title .hl { color: var(--blue); }
.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-2); line-height: 1.75;
  max-width: 480px; margin-bottom: 36px;
}
@media (max-width: 860px) { .hero-desc { max-width: none; } }

/* CTAs */
.cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
@media (max-width: 860px) { .cta-row { justify-content: center; } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600;
  background: var(--blue); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  box-shadow: 0 2px 4px rgba(0,91,187,0.15), 0 8px 24px rgba(0,91,187,0.28);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,91,187,0.18), 0 14px 32px rgba(0,91,187,0.36); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--border-2); color: var(--text-1);
  padding: 13px 26px; border-radius: 100px;
  transition: border-color .15s, background .15s;
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }

/* Trust badges */
.trust-bar { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 860px) { .trust-bar { justify-content: center; } }
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 100px;
}
.trust-badge .chk { color: var(--green); font-size: 14px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-vis-wrap {
  position: relative; border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--blue-light) 0%, #fff 60%);
  border: 1px solid var(--blue-mid);
  padding: 40px; aspect-ratio: 1.05/1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-vis-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 30%, rgba(0,91,187,0.08) 0%, transparent 65%);
}
/* Floating stat cards */
.stat-float {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--sh-md); display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.stat-float.sf1 { top: 12%; left: -6%; animation: bob 5s ease-in-out infinite; }
.stat-float.sf2 { bottom: 16%; right: -4%; animation: bob 5s ease-in-out infinite .8s; }
.stat-float.sf3 { top: 52%; right: -5%; animation: bob 5s ease-in-out infinite 1.6s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.sf-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.sf-icon.blue { background: var(--blue-light); }
.sf-icon.green { background: var(--green-light); }
.sf-icon.yellow { background: var(--yellow-light); }
.sf-icon svg { width: 18px; height: 18px; }
.sf-sub { font-size: 11px; font-weight: 400; color: var(--text-3); margin-top: 1px; }
@media (max-width: 860px) { .hero-visual { display: none; } }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 0; }
.stats-grid .stat-item { padding: 8px 16px; }
.stats-grid .stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-num {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  letter-spacing: -0.03em; color: var(--blue); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-3); margin-top: 4px; }
@media (max-width: 680px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-left: 1px solid var(--border); }
  .stats-grid .stat-item:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
  .stats-grid .stat-item:nth-child(4) { border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.sec-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.sec-title { font-size: clamp(24px, 3.5vw, 38px); margin-bottom: 12px; }
.sec-sub { font-size: 16px; color: var(--text-2); line-height: 1.7; max-width: 560px; }
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin: 0 auto; }

/* ── FILTER TABS ─────────────────────────────────────────── */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--text-2); background: #fff;
  transition: all .15s var(--ease);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── RANK CARDS ──────────────────────────────────────────── */
.rank-list { display: flex; flex-direction: column; gap: 14px; }

.rank-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.rank-card:hover { border-color: var(--border-2); box-shadow: var(--sh-md); transform: translateY(-2px); }
.rank-card.top1 {
  border: 1.5px solid rgba(0,91,187,0.3);
  background: linear-gradient(180deg, var(--blue-light) 0%, #fff 18%);
  box-shadow: var(--sh-blue);
}
.rank-card.top1:hover { box-shadow: 0 0 0 1px rgba(0,91,187,0.2), 0 20px 48px rgba(0,91,187,0.18); }

/* Yellow #1 accent bar */
.rank-card.top1::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.rc-top { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.rc-num {
  font-size: 13px; font-weight: 800; width: 42px; height: 42px;
  border-radius: 12px; background: var(--bg-2); color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Manrope', sans-serif;
}
.rank-card.top1 .rc-num { background: var(--blue); color: #fff; }
.rc-info { flex: 1; min-width: 0; }
.rc-name { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 2px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rc-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: var(--yellow); color: #1A1A1A; padding: 2px 9px; border-radius: 100px; }
.rc-tagline { font-size: 13.5px; color: var(--text-2); }
.rc-score-block { text-align: right; flex-shrink: 0; }
.rc-score { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--blue); font-family: 'Manrope', sans-serif; line-height: 1; }
.rc-score-of { font-size: 11px; color: var(--text-3); }

/* Score bar */
.score-bar-wrap { margin-bottom: 16px; }
.score-bar-track { height: 5px; background: var(--bg-3); border-radius: 100px; overflow: hidden; }
.score-bar-fill { height: 100%; width: 0; border-radius: 100px; background: linear-gradient(90deg, var(--blue), #4B9BFF); transition: width 1s var(--ease); }
.rank-card.top1 .score-bar-fill { background: linear-gradient(90deg, var(--blue), var(--yellow)); }

/* Mini score bars */
.mini-bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.mini-bar-item { }
.mini-bar-label { font-size: 10.5px; color: var(--text-3); margin-bottom: 4px; }
.mini-bar-track { height: 4px; background: var(--bg-3); border-radius: 100px; overflow: hidden; }
.mini-bar-fill { height: 100%; border-radius: 100px; background: var(--blue); transition: width 1s var(--ease); }
.mini-bar-val { font-size: 11px; font-weight: 700; color: var(--text-2); margin-top: 3px; }
@media (max-width: 560px) { .mini-bars { grid-template-columns: repeat(2, 1fr); } }

/* Pills */
.rc-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.pill {
  font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 100px;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text-2);
}
.pill.plus { background: var(--green-light); border-color: transparent; color: #065F46; }
.pill.minus { background: var(--red-light); border-color: transparent; color: #991B1B; }
.pill.strong { background: var(--blue-light); border-color: transparent; color: var(--blue-dark); }
.pill svg { width: 13px; height: 13px; }

/* Expand */
.rc-detail { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .45s var(--ease), opacity .3s; }
.rank-card.open .rc-detail { max-height: 700px; opacity: 1; }
.rc-desc { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; }
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; margin-bottom: 16px; }
.fact-box { background: var(--bg-2); border-radius: 10px; padding: 10px 12px; }
.fact-box-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); font-weight: 600; margin-bottom: 3px; }
.fact-box-val { font-size: 13.5px; font-weight: 700; color: var(--text-1); }
.best-for {
  display: flex; align-items: flex-start; gap: 8px;
  background: var(--green-light); border-radius: 10px; padding: 12px 14px;
  font-size: 13.5px; color: #065F46; line-height: 1.6;
}
.best-for svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--green); }

/* Card footer */
.rc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.rc-visit {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 600; color: var(--blue);
  transition: opacity .15s;
}
.rc-visit:hover { opacity: .75; }
.rc-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: var(--text-3);
}
.rc-toggle svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.rank-card.open .rc-toggle svg { transform: rotate(180deg); }

/* ── FEATURED #1 (dark block) ────────────────────────────── */
.featured-wrap {
  background: var(--text-1); border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px); color: #fff;
  position: relative; overflow: hidden;
}
.featured-wrap::after {
  content: ''; position: absolute;
  top: -40%; right: -8%; width: 55%; height: 180%;
  background: radial-gradient(ellipse, rgba(0,91,187,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.feat-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; position: relative; }
.feat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--yellow);
}
.feat-chip svg { width: 15px; height: 15px; }
.feat-score { font-size: 32px; font-weight: 800; color: #fff; font-family: 'Manrope', sans-serif; line-height: 1; }
.feat-score span { font-size: 14px; font-weight: 400; opacity: .5; }
.feat-title { font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; position: relative; }
.feat-desc { font-size: 15.5px; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 680px; margin-bottom: 32px; position: relative; }
.feat-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 32px; position: relative; }
@media (max-width: 680px) { .feat-stats { grid-template-columns: repeat(2,1fr); } }
.feat-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 16px;
}
.feat-stat-val { font-size: 20px; font-weight: 800; font-family: 'Manrope', sans-serif; margin-bottom: 3px; }
.feat-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); }
.feat-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.btn-white {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 600;
  background: #fff; color: var(--text-1);
  padding: 13px 24px; border-radius: 100px;
  transition: transform .2s var(--ease);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 600;
  background: transparent; color: #fff;
  padding: 12px 23px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: background .15s, border-color .15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* ── COMPARISON TABLE ───────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh-xs); }
table.cmp { width: 100%; min-width: 700px; background: #fff; }
table.cmp th {
  text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-3);
  background: var(--bg-2); padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
table.cmp td { padding: 16px 18px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text-2); }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp tbody tr { transition: background .12s; }
table.cmp tbody tr:hover { background: var(--bg-2); }
table.cmp tbody tr.featured-row { background: var(--blue-light); }
table.cmp tbody tr.featured-row:hover { background: var(--blue-mid); }
.cmp-name { font-weight: 700; color: var(--text-1); display: flex; align-items: center; gap: 7px; }
.cmp-score { font-weight: 800; color: var(--blue); font-family: 'Manrope', sans-serif; font-size: 15px; }
.cmp-yes { color: var(--green); }
.cmp-no  { color: var(--text-3); }

/* ── BENTO METHODOLOGY ──────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 14px; }
.bento-cell {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: box-shadow .2s, transform .2s var(--ease);
}
.bento-cell:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.bento-cell.span2 { grid-column: span 2; }
.bento-cell.rspan2 { grid-row: span 2; }
.bento-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; box-shadow: var(--sh-xs);
}
.bento-icon svg { width: 22px; height: 22px; color: var(--blue); }
.bento-title { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.bento-text { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }
.bento-big-num { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; color: var(--text-1); font-family: 'Manrope', sans-serif; line-height: 1; margin-bottom: 5px; }
.bento-big-label { font-size: 13px; color: var(--text-3); font-weight: 500; }
.criteria-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.crit-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; padding: 9px 12px;
  background: #fff; border: 1px solid var(--border); border-radius: 9px;
}
.crit-row span:first-child { color: var(--text-2); }
.crit-pct { font-size: 11px; font-weight: 700; color: var(--blue); background: var(--blue-light); padding: 2px 9px; border-radius: 100px; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-cell.rspan2 { grid-row: span 1; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-cell.span2 { grid-column: span 1; }
}

/* ── WHY TRUST ─────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px;
  transition: box-shadow .2s, transform .2s var(--ease);
}
.why-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 22px; height: 22px; color: var(--blue); }
.why-title { font-size: 15.5px; font-weight: 700; margin-bottom: 7px; }
.why-text { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 4px; cursor: pointer;
}
.faq-q-text { font-size: 15.5px; font-weight: 600; color: var(--text-1); }
.faq-icon { flex-shrink: 0; }
.faq-icon svg { width: 18px; height: 18px; color: var(--text-3); transition: transform .3s var(--ease); }
.faq-item.open .faq-icon svg { transform: rotate(180deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .3s; }
.faq-item.open .faq-a { max-height: 300px; opacity: 1; }
.faq-a p { font-size: 14.5px; color: var(--text-2); line-height: 1.75; padding: 0 4px 20px; }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer { background: #0E1117; color: rgba(255,255,255,.6); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 40px; margin-bottom: 48px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-mark { width: 30px; height: 30px; border-radius: 8px; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.footer-logo-mark svg { width: 17px; height: 17px; }
.footer-logo-text { font-size: 14px; font-weight: 700; color: #fff; }
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13.5px; padding: 5px 0; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 10px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px;
}

/* ── REVEAL ON SCROLL ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-box {
  background: var(--blue-light); border: 1px solid var(--blue-mid);
  border-radius: var(--r-xl); padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.contact-box .sec-title { color: var(--text-1); }
.contact-box .sec-sub { margin: 0 auto 28px; }

/* ── SKIP LINK ─────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 16px;
  background: var(--blue); color: #fff; padding: 12px 20px;
  border-radius: var(--r-sm); font-weight: 600; z-index: 9999;
}
.skip-link:focus { left: 16px; }

/* ── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
