/* ============================================================
   Tronscan Premium — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #060D1F;
  --dark-2:     #0C1628;
  --dark-3:     #111E35;
  --orange:     #FF4D00;
  --orange-2:   #FF6B35;
  --orange-glow:rgba(255,77,0,.25);
  --blue:       #0057FF;
  --blue-2:     #3B82F6;
  --blue-glow:  rgba(0,87,255,.2);
  --gold:       #C9A853;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --g50:        #F3F4F8;
  --g100:       #E8EAF0;
  --g200:       #D1D5E0;
  --g400:       #9BA3B8;
  --g600:       #6B7592;
  --g800:       #1A2035;
  --r:          12px;
  --r-lg:       20px;
  --r-xl:       32px;
  --sh:         0 4px 24px rgba(0,0,0,.07);
  --sh-lg:      0 16px 56px rgba(0,0,0,.13);
  --sh-xl:      0 32px 96px rgba(0,0,0,.22);
  --t:          .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--g800);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -.02em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Gradient utilities ─────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-blue {
  background: linear-gradient(135deg, var(--blue) 0%, #00C2FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

/* Shimmer sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -110%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .55s ease;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }

.btn-orange {
  background: linear-gradient(160deg, #FF5C1A 0%, var(--orange) 50%, #E83D00 100%);
  color: var(--white);
  box-shadow:
    0 8px 28px rgba(255,77,0,.35),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.15);
}
.btn-orange:hover {
  box-shadow:
    0 14px 40px rgba(255,77,0,.45),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.15);
}

.btn-blue {
  background: linear-gradient(160deg, #1A6FFF 0%, var(--blue) 50%, #0040CC 100%);
  color: var(--white);
  box-shadow:
    0 8px 28px rgba(0,87,255,.3),
    inset 0 1px 0 rgba(255,255,255,.2),
    inset 0 -1px 0 rgba(0,0,0,.15);
}
.btn-blue:hover {
  box-shadow:
    0 14px 40px rgba(0,87,255,.42),
    inset 0 1px 0 rgba(255,255,255,.2),
    inset 0 -1px 0 rgba(0,0,0,.15);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow:
    0 4px 20px rgba(0,0,0,.1),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.btn-white:hover {
  box-shadow:
    0 10px 36px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.38);
}

.btn-outline-dark {
  background: transparent;
  color: var(--g600);
  border: 1.5px solid var(--g200);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,77,0,.04);
}

.btn-lg { padding: 17px 40px; font-size: 15px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--t);
  padding: 0;
}
.header.scrolled {
  background: rgba(6,13,31,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
}
.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo__mark svg {
  display: block;
  filter: drop-shadow(0 4px 12px rgba(255,77,0,.35));
  transition: filter var(--t);
}
.logo:hover .logo__mark svg {
  filter: drop-shadow(0 6px 18px rgba(255,77,0,.5));
}

/* ── SVG icon helper ─────────────────────────────────────── */
.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  fill: currentColor;
  line-height: 0;
}
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 18px; height: 18px; }
.icon-lg { width: 22px; height: 22px; }
.icon-xl { width: 26px; height: 26px; }
.logo span { color: var(--orange-2); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: all var(--t);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__link.active { color: var(--white); }

.header__cta { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(6,13,31,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 28px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav__link { font-size: 16px; padding: 12px 16px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1626806787461-102c1bfaaea1?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: .18;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,87,255,.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(255,77,0,.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6,13,31,0) 0%, rgba(6,13,31,.6) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 8s ease-in-out infinite;
  pointer-events: none;
}
.hero__orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,87,255,.2), transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero__orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,77,0,.15), transparent 70%);
  bottom: 0; left: -50px;
  animation-delay: -4s;
}

@keyframes floatOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.05); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

.hero__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.035em;
  line-height: 1.1;
}
.hero__title .line-2 { display: block; }

.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__trust-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.hero__trust-num { font-family: 'Manrope', sans-serif; font-size: 19px; font-weight: 800; color: var(--white); }
.hero__trust-lbl { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 400; }

/* Hero right — floating device card */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.hero__device-img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-xl);
}
.hero__device-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.hero__device-img:hover img { transform: scale(1.06); }
.hero__device-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,87,255,.2) 0%, transparent 60%);
}

.hero__float-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(20px);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__float-card-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.hero__float-card-2 { top: -16px; right: -20px; animation-delay: -2s; }
.hero__float-icon { font-size: 22px; }
.hero__float-label { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 2px; font-weight: 500; }
.hero__float-value { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); }

/* ── Scroll indicator ────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1s both;
}
.scroll-hint__line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0) translateY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0) translateY(100%); transform-origin: top; }
}
@keyframes fadeInUp {
  from { opacity:0; transform: translateX(-50%) translateY(20px); }
  to { opacity:1; transform: translateX(-50%) translateY(0); }
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--g100);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--g600);
  font-size: 14px;
  font-weight: 500;
}
.trust-item-icon { font-size: 20px; }

/* ── Section ─────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--dark { background: var(--dark); }
.section--gray { background: var(--off-white); }
.section--dark-2 { background: var(--dark-2); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label--orange { color: var(--orange); }
.section-label--blue { color: var(--blue-2); }
.section-label--white { color: rgba(255,255,255,.5); }

.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -.035em;
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-title--dark { color: var(--g800); }

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
}
.section-sub--white { color: rgba(255,255,255,.55); }
.section-sub--dark { color: var(--g600); }

.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ── Search Section ──────────────────────────────────────── */
.search-section { background: var(--white); }

.search-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px var(--g100), var(--sh-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
}
.search-card__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  background: var(--g50);
  padding: 6px;
  border-radius: 50px;
}
.tab-btn {
  flex: 1;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  color: var(--g600);
}
.tab-btn.active {
  background: var(--white);
  color: var(--g800);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--g800);
  letter-spacing: .01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--g100);
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--g800);
  background: var(--g50);
  outline: none;
  transition: all var(--t);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,77,0,.08);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--g400); margin-top: 4px; }

.search-btn-wrap { display: flex; justify-content: center; }

/* ── How it works ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15) 20%, rgba(255,255,255,.15) 80%, transparent);
}
.step-item {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  position: relative;
  z-index: 1;
  transition: all var(--t);
}
.step-item:hover .step-num {
  background: linear-gradient(135deg, var(--orange), #FF8C00);
  border-color: transparent;
  box-shadow: 0 12px 40px var(--orange-glow);
  transform: translateY(-4px);
}
.step-counter {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: var(--orange);
  border-radius: 50%;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-family: 'Manrope',sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── Services Grid ───────────────────────────────────────── */
.services-showcase { display: flex; flex-direction: column; gap: 32px; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: box-shadow var(--t), transform var(--t);
  border: 1px solid var(--g100);
}
.service-row:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-row__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--g100);
  position: relative;
}
.service-row__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-row:hover .service-row__img img { transform: scale(1.06); }
.service-row__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,87,255,.2) 0%, transparent 60%);
}

.service-row__body {
  padding: 44px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-row__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.service-row__title { font-size: 24px; font-weight: 800; margin-bottom: 12px; color: var(--g800); }
.service-row__desc { font-size: 15px; color: var(--g600); line-height: 1.7; margin-bottom: 24px; }
.service-row__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.tag {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.tag-orange { background: rgba(255,77,0,.08); color: var(--orange); }
.tag-blue { background: rgba(0,87,255,.08); color: var(--blue); }
.tag-green { background: rgba(22,163,74,.08); color: #16a34a; }

.service-row__price {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--g800);
}
.service-row__price sub { font-size: 14px; font-weight: 400; color: var(--g400); vertical-align: middle; }

/* ── Stats ───────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.stat-cell {
  padding: 48px 32px;
  text-align: center;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.stat-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.stat-cell:hover { background: rgba(255,255,255,.04); }
.stat-cell:hover::before { opacity: 1; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: 8px;
  display: block;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.45); font-weight: 400; }

/* ── Report Card ─────────────────────────────────────────── */
.report-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.report-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px var(--g100), var(--sh-xl);
  overflow: hidden;
}

.report-card__top {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.report-card__device-name {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.report-card__serial {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-family: 'Courier New', monospace;
  background: rgba(255,255,255,.06);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}
.report-card__meta { font-size: 13px; color: rgba(255,255,255,.4); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.status-ok { background: rgba(22,163,74,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.2); }
.status-warn { background: rgba(251,146,60,.15); color: #fb923c; border: 1px solid rgba(251,146,60,.2); }
.status-bad { background: rgba(248,113,113,.15); color: #f87171; border: 1px solid rgba(248,113,113,.2); }

.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-ok { background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.dot-warn { background: #fb923c; box-shadow: 0 0 8px #fb923c; }
.dot-bad { background: #f87171; box-shadow: 0 0 8px #f87171; }

.report-card__overview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--g100);
}
.overview-cell {
  padding: 24px 20px;
  border-right: 1px solid var(--g100);
  text-align: center;
}
.overview-cell:last-child { border-right: none; }
.overview-cell__label { font-size: 11px; color: var(--g400); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.overview-cell__val { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 800; color: var(--g800); }

.report-card__body { padding: 40px 48px; }

.rep-section { margin-bottom: 40px; }
.rep-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--g100);
}
.rep-section__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.rep-section__title { font-family: 'Manrope',sans-serif; font-size: 17px; font-weight: 700; color: var(--g800); }

.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--blue));
  border-radius: 2px;
  opacity: .3;
}
.timeline-item { position: relative; margin-bottom: 20px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--orange);
  box-shadow: 0 0 0 3px rgba(255,77,0,.1);
}
.timeline-item__body {
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.timeline-item__date { font-size: 12px; color: var(--g400); font-weight: 600; margin-bottom: 4px; }
.timeline-item__text { font-size: 14px; font-weight: 500; color: var(--g800); }
.timeline-item__cost { font-family: 'Manrope',sans-serif; font-size: 15px; font-weight: 800; color: var(--orange); white-space: nowrap; }

.rec-list { display: flex; flex-direction: column; gap: 12px; }
.rec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--g50);
  border-radius: 12px;
  border: 1px solid var(--g100);
}
.rec-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.rec-text { font-size: 14px; color: var(--g800); line-height: 1.6; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.media-cell {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--g100);
  position: relative;
  cursor: pointer;
}
.media-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.media-cell:hover img { transform: scale(1.08); }
.media-cell__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,13,31,0);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: background var(--t);
}
.media-cell:hover .media-cell__overlay { background: rgba(6,13,31,.45); }
.media-cell__play { font-size: 32px; opacity: 0; transition: opacity var(--t); }
.media-cell:hover .media-cell__play { opacity: 1; }
.media-cell--placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: var(--g400); font-weight: 500;
  border: 2px dashed var(--g200);
  background: var(--g50);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.media-cell--placeholder:hover { border-color: var(--orange); background: rgba(255,77,0,.03); }

/* ── Verdict Banner ──────────────────────────────────────── */
.verdict {
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.verdict-ok { background: linear-gradient(135deg, rgba(22,163,74,.06), rgba(22,163,74,.12)); border: 1px solid rgba(22,163,74,.2); }
.verdict-icon { font-size: 42px; flex-shrink: 0; line-height: 1; }
.verdict-title { font-family:'Manrope',sans-serif; font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.verdict-title-ok { color: #166534; }
.verdict-desc { font-size: 14px; color: #166534; line-height: 1.7; opacity: .85; }

/* ── Services List Page ──────────────────────────────────── */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card-v2 {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--g100);
  overflow: hidden;
  transition: all var(--t);
  box-shadow: var(--sh);
}
.service-card-v2:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.service-card-v2__img {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--g100);
}
.service-card-v2__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card-v2:hover .service-card-v2__img img { transform: scale(1.08); }
.service-card-v2__body { padding: 28px; }
.service-card-v2__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.service-card-v2__title { font-family:'Manrope',sans-serif; font-size: 19px; font-weight: 800; color: var(--g800); }
.service-card-v2__price { font-family:'Manrope',sans-serif; font-size: 22px; font-weight: 900; color: var(--orange); white-space: nowrap; }
.service-card-v2__price sub { font-size: 12px; font-weight: 400; color: var(--g400); }
.service-card-v2__desc { font-size: 14px; color: var(--g600); margin-bottom: 16px; line-height: 1.65; }
.service-card-v2__tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* ── Price Table ─────────────────────────────────────────── */
.price-table {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--g100);
  box-shadow: var(--sh);
  overflow: hidden;
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table thead tr { background: var(--dark); }
.price-table th { padding: 18px 24px; text-align: left; font-family:'Manrope',sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; }
.price-table tbody tr { border-bottom: 1px solid var(--g100); transition: background var(--t); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--g50); }
.price-table td { padding: 16px 24px; font-size: 14px; }
.price-table td:first-child { font-weight: 600; color: var(--g800); }
.price-val { font-family:'Manrope',sans-serif; font-weight: 800; color: var(--orange); font-size: 16px; }
.price-na { color: var(--g400); }
.price-guarantee { display: inline-flex; align-items: center; gap: 6px; }

/* ── Diagnostics Form ────────────────────────────────────── */
.diag-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: start;
}
.diag-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px var(--g100), var(--sh-lg);
  padding: 48px;
}
.diag-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  background: var(--g50);
  border-radius: 50px;
  padding: 6px;
}
.diag-step {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--g400);
  transition: all var(--t);
}
.diag-step.active {
  background: var(--white);
  color: var(--g800);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.diag-step.done { color: var(--orange); }

/* ── Contacts ────────────────────────────────────────────── */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--g100);
  box-shadow: var(--sh);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--t);
}
.contact-card:hover { box-shadow: var(--sh-lg); transform: translateX(4px); }
.contact-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.bg-orange { background: linear-gradient(135deg, var(--orange), #FF8C00); box-shadow: 0 6px 20px var(--orange-glow); }
.bg-blue { background: linear-gradient(135deg, var(--blue), #0090FF); box-shadow: 0 6px 20px var(--blue-glow); }
.contact-card__lbl { font-size: 12px; color: var(--g400); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.contact-card__val { font-family:'Manrope',sans-serif; font-size: 16px; font-weight: 700; color: var(--g800); }
.contact-card__sub { font-size: 13px; color: var(--g400); margin-top: 4px; }

.map-block {
  background: linear-gradient(135deg, #0D1929, #111E35);
  border-radius: var(--r-lg);
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,87,255,.15), transparent 60%);
}
.map-block svg { width: 36px; height: 36px; opacity: .5; position: relative; }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-2);
  background: rgba(59,130,246,.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-top: 4px;
  transition: background var(--t);
  position: relative;
}
.map-link:hover { background: rgba(59,130,246,.2); }

.hours-grid { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--g100);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--g600); }
.hours-time { font-weight: 600; color: var(--g800); }
.hours-closed { color: #dc2626; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px var(--g100), var(--sh-lg);
  padding: 48px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--g100);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--t);
}
.faq-item:hover { border-color: var(--g200); }
details.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--g800);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
details.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--t);
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 18px; font-size: 14px; color: var(--g600); line-height: 1.75; }

/* ── Testimonials ────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--t);
}
.review-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.review-stars span { font-size: 16px; }
.review-text { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--g200);
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF8C00);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope',sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-family:'Manrope',sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }
.review-device { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 50%, #FFB300 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  filter: blur(60px);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(0,0,0,.1);
  border-radius: 50%;
  filter: blur(60px);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.03em;
}
.cta-sub { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner) ───────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,87,255,.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--blue-2); font-weight: 500; }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.55); max-width: 560px; }

/* ── Notice ──────────────────────────────────────────────── */
.notice {
  display: flex;
  gap: 12px;
  background: rgba(0,87,255,.06);
  border: 1px solid rgba(0,87,255,.15);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 28px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__main {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.8; margin-top: 20px; max-width: 260px; }
.footer__socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--t);
  cursor: pointer;
  color: var(--white);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.footer__col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,.45); transition: color var(--t); }
.footer__col ul li a:hover { color: var(--orange-2); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.footer__contact-item a { color: rgba(255,255,255,.7); transition: color var(--t); }
.footer__contact-item a:hover { color: var(--orange-2); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.45); transition: color var(--t); }
.footer__bottom a:hover { color: var(--orange-2); }
.footer__bottom-links { display: flex; gap: 24px; }

/* ── Requisites ──────────────────────────────────────────── */
.requisites-bar {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,.22);
  line-height: 1.8;
  letter-spacing: .01em;
}
.requisites-bar strong { color: rgba(255,255,255,.35); font-weight: 600; }

.req-block {
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: var(--r-lg);
  padding: 32px;
}
.req-block__title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--g800);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--g100);
}
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.req-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 4px;
}
.req-item__val {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--g800);
}
.req-item__val--mono {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 400;
  color: var(--g800);
  background: var(--g100);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: .04em;
}
.req-address {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--g100);
  font-size: 14px;
  color: var(--g600);
}
.req-address strong { color: var(--g800); }

/* ── Toast ───────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
  animation: toastIn .3s ease;
}
.toast.toast-success { border-left: 3px solid #4ade80; }
.toast.toast-error   { border-left: 3px solid #f87171; }
.toast.toast-info    { border-left: 3px solid var(--blue-2); }
@keyframes toastIn { from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:none} }

/* ── Reveal animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .report-card__overview { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:860px) {
  .section { padding: 72px 0; }
  .diag-layout,
  .contacts-layout { grid-template-columns: 1fr; }
  .service-row,
  .services-grid-4 { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:640px) {
  .container { padding: 0 18px; }
  .nav { display: none; }
  .header__cta .btn:not(:last-child) { display: none; }
  .burger { display: flex; }
  .hero { padding: 100px 0 60px; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .report-card__overview { grid-template-columns: repeat(2,1fr); }
  .report-card__top,
  .report-card__body { padding: 28px 24px; }
  .search-card { padding: 28px 24px; }
  .diag-form-card,
  .contact-form-card { padding: 28px 24px; }
  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .media-grid { grid-template-columns: repeat(2,1fr); }
  .service-row__body { padding: 28px 24px; }
}
