:root {
  --bg: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef2f7;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0b1220;
  --text-muted: #5b6775;
  --primary: #0a66ff;
  --primary-dark: #0850cc;
  --primary-light: #e6f0ff;
  --accent: #ffb800;
  --accent-dark: #e0a200;
  --success: #10b981;
  --danger: #ef4444;
  --hero-bg: #0a1628;
  --hero-bg-2: #122441;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, .05);
  --shadow: 0 4px 16px rgba(11, 18, 32, .08);
  --shadow-lg: 0 10px 30px rgba(11, 18, 32, .12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1240px;
  --t: 0.2s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Display", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(24px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ======== Buttons ======== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-sm); border: 0;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-accent { background: var(--accent); color: #0b1220; }
.btn-accent:hover { background: var(--accent-dark); color: #0b1220; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-outline:hover { background: var(--surface); color: var(--text); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* ======== Header ======== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #2b88ff 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px; letter-spacing: 0;
}
.logo-text small { display: block; font-size: 11px; font-weight: 500; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; margin-top: -2px; }
.nav { display: flex; gap: 4px; align-items: center; margin-left: auto; }
.nav a { padding: 10px 12px; border-radius: 8px; color: var(--text); font-weight: 500; font-size: 14px; }
.nav a:hover { background: var(--surface); color: var(--primary); }
.nav a.active { color: var(--primary); }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.header-phone a { font-size: 16px; font-weight: 700; color: var(--text); }
.header-phone small { font-size: 11px; color: var(--text-muted); }
.header-cta { margin-left: 12px; }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--border-strong); background: #fff; border-radius: 8px; padding: 0; align-items: center; justify-content: center; }
.burger span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 980px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; padding: 12px; gap: 0; }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 14px; }
  .burger { display: inline-flex; }
  .header-phone { display: none; }
  .header-cta { display: none; }
}

/* ======== Hero ======== */
.hero {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -100px; top: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,102,255,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; position: relative; }
.hero h1 { color: #fff; font-size: clamp(32px, 4.5vw, 54px); line-height: 1.05; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p.lead { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-bullets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; max-width: 560px; }
.hero-bullets li { list-style: none; display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.9); font-size: 14px; }
.hero-bullets li::before {
  content: ''; flex-shrink: 0; width: 22px; height: 22px;
  background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b1220' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.hero-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 28px;
}
.hero-card h3 { color: #fff; margin-bottom: 8px; font-size: 22px; }
.hero-card .small { color: rgba(255,255,255,.7); font-size: 13px; margin-bottom: 18px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 56px 0 64px; }
  .hero-bullets { grid-template-columns: 1fr; }
}

/* ======== Marquee strip ======== */
.strip { background: var(--surface-2); padding: 18px 0; border-bottom: 1px solid var(--border); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.strip-item { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.strip-item .ico { width: 36px; height: 36px; border-radius: 10px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strip-item strong { display: block; font-size: 14px; color: var(--text); }
.strip-item small { color: var(--text-muted); font-size: 12px; }
@media (max-width: 880px) { .strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .strip-grid { grid-template-columns: 1fr; } }

/* ======== Brands grid ======== */
.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all var(--t);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 140px;
}
.brand-card:hover {
  border-color: var(--primary);
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.brand-card .brand-icon {
  width: 48px; height: 48px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.brand-card .brand-name { font-weight: 600; font-size: 15px; }
.brand-card .brand-count { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 880px) { .brands { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .brands { grid-template-columns: repeat(2, 1fr); } }

/* ======== Services grid ======== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--t);
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 24px;
}
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; flex-grow: 1; }
.service-card .price-from { font-weight: 700; color: var(--primary); }
@media (max-width: 980px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services { grid-template-columns: 1fr; } }

/* ======== Steps ======== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { padding: 28px 24px; background: var(--surface); border-radius: var(--radius); position: relative; counter-increment: step; }
.step::before {
  content: counter(step);
  position: absolute; top: -16px; left: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  box-shadow: var(--shadow);
}
.step h3 { font-size: 17px; margin-top: 12px; }
.step p { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ======== Calculator ======== */
.calc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.calc-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.calc-field select, .calc-field input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border-strong);
  border-radius: 10px; font-size: 15px; background: #fff; color: var(--text);
  transition: border var(--t);
}
.calc-field select:focus, .calc-field input:focus { outline: none; border-color: var(--primary); }
.calc-result { padding: 22px; background: linear-gradient(135deg, var(--primary-light) 0%, #f0f7ff 100%); border-radius: var(--radius); display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.calc-result .label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.calc-result .price { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
.calc-result .price small { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.calc-result .duration { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 720px) { .calc-grid { grid-template-columns: 1fr; } }

/* ======== Price tables ======== */
.price-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.price-tab {
  padding: 10px 18px; border: 1px solid var(--border-strong);
  background: #fff; color: var(--text);
  border-radius: 999px; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all var(--t);
}
.price-tab:hover { border-color: var(--primary); color: var(--primary); }
.price-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.price-block { display: none; }
.price-block.active { display: block; }
.price-block h3 { margin: 32px 0 12px; }

.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.price-table th { background: var(--surface); font-weight: 600; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--surface); }
.price-table .col-price { text-align: right; font-weight: 700; color: var(--text); white-space: nowrap; }
.price-table .col-duration { color: var(--text-muted); font-size: 13px; white-space: nowrap; }
.price-table .col-action { width: 1%; }
.price-table .btn-sm { white-space: nowrap; }
@media (max-width: 640px) {
  .price-table th, .price-table td { padding: 10px 12px; font-size: 13px; }
  .price-table .col-duration { display: none; }
}

/* ======== Reviews ======== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px;
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--accent); margin-bottom: 8px; font-size: 15px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--text); margin: 0; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ======== FAQ ======== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 20px 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 28px; font-weight: 300; color: var(--primary);
  transition: transform var(--t); flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 20px; color: var(--text-muted); font-size: 15px; }

/* ======== Contacts / Locations ======== */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.location-city {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  align-self: flex-start;
}
.location h3 { margin: 0; font-size: 20px; }
.location-row { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.location-row .ico { width: 22px; height: 22px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.location-map iframe { width: 100%; height: 300px; border: 0; border-radius: var(--radius); margin-top: 8px; }
@media (max-width: 880px) { .locations { grid-template-columns: 1fr; } }

/* ======== Forms ======== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border-strong);
  border-radius: 10px; font-size: 15px; font-family: inherit; background: #fff; color: var(--text);
  transition: border var(--t);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.form-consent a { color: var(--primary); }

/* ======== Modal ======== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(11,18,32,.6);
  display: none; align-items: center; justify-content: center; z-index: 100;
  padding: 20px; backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg);
  width: 100%; max-width: 480px; padding: 32px;
  position: relative; box-shadow: var(--shadow-lg);
  max-height: 92vh; overflow-y: auto;
}
.modal h3 { margin-bottom: 8px; font-size: 22px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border: 0; background: var(--surface);
  border-radius: 50%; font-size: 20px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--surface-2); color: var(--text); }

/* ======== Footer ======== */
.footer { background: #0a1628; color: rgba(255,255,255,.75); padding: 56px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer a { color: rgba(255,255,255,.75); display: block; padding: 4px 0; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer .logo-text small { color: rgba(255,255,255,.6); }
.footer-about { font-size: 14px; color: rgba(255,255,255,.65); max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.5);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ======== Floating widgets ======== */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: 12px; }
.fab a, .fab button {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff; border: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer;
  transition: transform var(--t), background var(--t);
}
.fab a:hover, .fab button:hover { transform: scale(1.06); color: #fff; }
.fab a.wa { background: #25d366; }
.fab a.tg { background: #2aabee; }
.fab a.max { background: #1d2939; }
.fab a.max span { color: #fff; font-weight: 800; font-size: 13px; letter-spacing: .04em; }
.fab a.tel { background: var(--primary); }
.fab .label-tip {
  position: absolute; right: 70px; background: #fff; color: var(--text);
  padding: 8px 14px; border-radius: 8px; font-size: 13px; white-space: nowrap;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity var(--t);
  top: 50%; transform: translateY(-50%);
}
.fab a:hover .label-tip { opacity: 1; }

/* ======== Hero stats card ======== */
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.hero-stat { padding: 16px; background: rgba(255,255,255,.06); border-radius: 12px; border: 1px solid rgba(255,255,255,.1); }
.hero-stat .num { font-size: 26px; font-weight: 800; color: var(--accent); }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .04em; }

/* ======== CTA banner ======== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2b88ff 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.92); margin-bottom: 24px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ======== Page header ======== */
.page-head {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  color: #fff; padding: 56px 0 48px;
}
.page-head h1 { color: #fff; margin-bottom: 8px; }
.page-head p { color: rgba(255,255,255,.8); margin: 0; max-width: 720px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; }

/* ======== Utility ======== */
.row { display: flex; flex-wrap: wrap; gap: 14px; }
.row > * { flex: 1; min-width: 200px; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.hide-md { display: none; }
@media (min-width: 880px) { .hide-md { display: initial; } }

/* ======== About ======== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-grid img { border-radius: var(--radius-lg); }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

/* ======== Trust strip ======== */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-item { text-align: center; }
.trust-item .num { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; }
.trust-item .lbl { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
@media (max-width: 720px) { .trust { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ======== Search box ======== */
.search-box { position: relative; max-width: 480px; margin: 0 auto 24px; }
.search-box input {
  width: 100%; padding: 14px 18px 14px 44px;
  border: 1px solid var(--border-strong); border-radius: 999px;
  font-size: 15px; background: #fff;
}
.search-box input:focus { outline: none; border-color: var(--primary); }
.search-box::before {
  content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6775' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
  background-repeat: no-repeat;
}

/* ======== Cookies banner ======== */
.cookies {
  position: fixed; bottom: 18px; left: 18px; right: 18px;
  max-width: 520px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-lg); z-index: 80;
  display: none; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookies.show { display: flex; }
.cookies p { margin: 0; font-size: 13px; color: var(--text-muted); flex: 1; min-width: 220px; }
