/* =============================================
   БЮРО НЕЗАВИСИМЫХ ЭКСПЕРТИЗ — COMPLETE REWRITE
   ============================================= */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: #f3f4f6; background: #0a1628;
  overflow-x: hidden; position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ---- VARIABLES ---- */
:root {
  --primary-dark: #0a1628;
  --primary-dark2: #0f2140;
  --primary-mid: #132d5e;
  --primary-mid2: #1a3a7a;
  --primary-blue: #2563eb;
  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --light: #ffffff;
  --text-muted: rgba(255, 255, 255, .6);
  --border-light: rgba(255, 255, 255, .06);
  --text-muted-solid: #94a3b8;
  --font-display: 'Playfair Display', Georgia, serif;
  --container-w: 1180px;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ---- CONTAINER ---- */
.container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

/* ---- GRADIENT TEXT ---- */
.text-gradient {
  background: linear-gradient(135deg, #2563eb, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: var(--transition); white-space: nowrap;
}
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220, 38, 38, .35); }
.btn--large { padding: 18px 40px; font-size: 17px; }
.btn--small { padding: 10px 20px; font-size: 13px; }
.btn--outline-light { background: transparent; border: 2px solid rgba(255, 255, 255, .3); color: #fff; }
.btn--outline-light:hover { background: rgba(255, 255, 255, .1); border-color: #fff; transform: translateY(-2px); }

/* ---- SECTION ---- */
.section { padding: 100px 0; position: relative; }
.section__header { text-align: center; margin-bottom: 60px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section__tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary-blue); margin-bottom: 12px; opacity: .8; }
.section__title { font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; color: var(--light); }
.section__desc { color: var(--text-muted); font-size: 16px; line-height: 1.7; }

/* ---- SECTION ALTERNATING BG + IMAGE OVERLAYS ---- */
.section--with-bg { position: relative; overflow: hidden; }
.section--with-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0.12; filter: brightness(.5) saturate(.6);
}
.section--with-bg > * { position: relative; z-index: 1; }
.section--about-bg::before { background-image: url('../images/about-bg.jpg'); }
.section--services-bg::before { background-image: url('../images/services-bg.jpg'); opacity: 0.08; }
.section--process-bg::before { background-image: url('../images/process-bg.jpg'); opacity: 0.1; }
.section--cta-bg::before { background-image: url('../images/cta-bg.jpg'); background-position: center bottom; opacity: 0.25; filter: brightness(.4) saturate(.5); }
.section:nth-child(odd) { background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-dark2) 100%); }
.section:nth-child(even) { background: linear-gradient(180deg, var(--primary-dark2) 0%, var(--primary-dark) 100%); }

/* ---- ANIMATE ON SCROLL ---- */
.animate-in { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary-dark); }
::-webkit-scrollbar-thumb { background: var(--primary-mid); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-blue); }

/* =============================================
   HEADER
   ============================================= */
/* Fixed, initially transparent, becomes solid on scroll via .scrolled class */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); transition: var(--transition);
}
.header.scrolled {
  background: rgba(10, 22, 40, .92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

/* Logo: left side */
.header__logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.header__logo svg { height: 36px; width: auto; display: block; }
.header__logo img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.header__logo-text { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--light); white-space: nowrap; }

/* Nav: center, horizontal row */
.header__nav { display: flex; align-items: center; }
.header__nav-list { display: flex; gap: 36px; list-style: none; padding: 0; margin: 0; }
.header__nav-link {
  font-size: 1rem; font-weight: 500; color: rgba(255, 255, 255, .8);
  padding: 8px 0; white-space: nowrap; transition: var(--transition); position: relative;
}
.header__nav-link::after {
  content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--primary-blue); transition: var(--transition);
}
.header__nav-link:hover { color: #fff; }
.header__nav-link:hover::after { width: 100%; }
.header__nav-link.active { color: #fff; }
.header__nav-link.active::after { width: 100%; }

/* Header right: phones + burger */
.header__actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header__phones { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.header__phone { font-size: 15px; font-weight: 600; color: var(--light); transition: var(--transition); white-space: nowrap; }
.header__phone:hover { color: var(--primary-blue); }
.header__phone--second { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.header__phone--second:hover { color: var(--light); }

/* Burger: hidden on desktop, visible on mobile */
.header__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.header__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: var(--header-h);
}

/* Layer 1: Video background — covers 100% w/h, centered */
.hero__video-wrap {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.hero__bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .45; filter: brightness(.6);
}

/* Layer 2: Gradient overlay */
.hero__gradient {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(10, 22, 40, .92) 0%, rgba(15, 33, 64, .7) 40%, rgba(19, 45, 94, .5) 100%);
  pointer-events: none;
}

/* Content layer (above video + gradient) */
.hero__content { position: relative; z-index: 3; width: 100%; padding: 40px 0 60px; }

/* Flex row: logo | text */
.hero__row { display: flex; align-items: center; gap: 48px; margin-bottom: 40px; }
.hero__logo-col { flex: 0 0 220px; }
.hero__logo--hero { width: 220px; height: auto; filter: brightness(0) invert(1); display: block; }
.hero__text-col { flex: 1; min-width: 0; }

.hero__title { font-family: var(--font-display); font-size: 56px; font-weight: 800; line-height: 1.15; margin-bottom: 24px; color: var(--light); }
.hero__title-sub { display: block; font-size: 34px; font-weight: 400; color: rgba(255, 255, 255, .8); margin-top: 8px; }
.hero__subtitle { font-size: 17px; line-height: 1.7; color: var(--text-muted); margin-bottom: 36px; max-width: 620px; }
.hero__cta { display: flex; align-items: center; gap: 16px; margin-bottom: 0; flex-wrap: wrap; }
.hero__cta-hint { font-size: 13px; color: var(--text-muted); }

/* Stats row: full width, below content */
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1; }
.hero__stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* =============================================
   ABOUT
   ============================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about__content p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about__content p:last-child { margin-bottom: 0; }
.about__stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about__stat-card {
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border-light);
  padding: 28px 20px; border-radius: var(--radius); text-align: center; transition: var(--transition);
}
.about__stat-card:hover { background: rgba(37, 99, 235, .08); border-color: rgba(37, 99, 235, .2); transform: translateY(-4px); }
.about__stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 800; display: block; margin-bottom: 6px; }
.about__stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* =============================================
   SERVICES
   ============================================= */
  max-width: 100%; border-radius: var(--radius-lg); margin: 24px 0;
  transition: transform .4s ease;
}

.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Service card with background image bleed */
.service-card {
  position: relative; background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 36px 32px 28px; transition: var(--transition); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { background: rgba(255, 255, 255, .06); border-color: rgba(37, 99, 235, .2); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0, 0, 0, .3); }
.service-card:hover::before { opacity: 1; }

/* Number tattoo (large faded number top-right) */
.service-card__number {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display); font-size: 56px; font-weight: 900; line-height: 1;
  color: rgba(37, 99, 235, .08); user-select: none; transition: var(--transition);
}
.service-card:hover .service-card__number { color: rgba(37, 99, 235, .15); transform: scale(1.1); }

.service-card__icon { margin-bottom: 16px; }
.service-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--light); margin-bottom: 12px; line-height: 1.3; }
.service-card__body p { font-size: 14px; line-height: 1.75; color: var(--text-muted); margin-bottom: 12px; }
.service-card__list { margin: 16px 0; padding: 0; }
.service-card__list li { font-size: 13px; color: var(--text-muted); padding: 6px 0 6px 20px; position: relative; line-height: 1.5; }
.service-card__list li::before { content: '→'; position: absolute; left: 0; color: var(--primary-blue); font-weight: 600; }
.service-card__link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--primary-blue); transition: var(--transition); }
.service-card__link:hover { color: var(--accent); }

/* Service card with background image */
.service-card--with-bg {
  position: relative; overflow: hidden;
}
.service-card--with-bg .service-card__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .15; filter: brightness(.4) saturate(.7);
  transition: var(--transition);
}
.service-card--with-bg:hover .service-card__bg { opacity: .25; transform: scale(1.05); }
.service-card--with-bg .service-card__icon,
.service-card--with-bg .service-card__title,
.service-card--with-bg .service-card__body,
.service-card--with-bg .service-card__link,
.service-card--with-bg .service-card__number { position: relative; z-index: 1; }

/* =============================================
   PROCESS
   ============================================= */
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process__steps::before {
  content: ''; position: absolute; top: 48px; left: calc(12.5%); right: calc(12.5%);
  height: 2px; background: linear-gradient(90deg, var(--primary-blue), rgba(37, 99, 235, .2));
  z-index: 0;
}
.process__step {
  text-align: center; padding: 40px 20px; position: relative; z-index: 1;
  background: rgba(255, 255, 255, .03); border: 1px solid var(--border-light);
  border-radius: var(--radius); transition: var(--transition);
}
.process__step:nth-child(even) { background: rgba(255, 255, 255, .06); }
.process__step:hover { background: rgba(37, 99, 235, .08); border-color: rgba(37, 99, 235, .2); transform: translateY(-4px); }
.process__step-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  color: rgba(37, 99, 235, .1); line-height: 1; margin-bottom: 8px;
}
.process__step-icon { margin-bottom: 12px; color: var(--primary-blue); }
.process__step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--light); margin-bottom: 8px; }
.process__step-desc { font-size: 13px; line-height: 1.65; color: var(--text-muted); }

/* =============================================
   FAQ
   ============================================= */
.faq__list { max-width: 740px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border-light); }
.faq__item:nth-child(odd) { background: rgba(255, 255, 255, .015); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--light); transition: var(--transition); gap: 16px;
}
.faq__question:hover { color: var(--primary-blue); }
.faq__question[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); }
.faq__arrow { flex-shrink: 0; transition: var(--transition); color: var(--text-muted); }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease, padding .3s ease;
  opacity: 0; padding: 0;
}
.faq__answer.open { max-height: 500px; opacity: 1; padding: 0 0 20px; }
.faq__answer p { font-size: 14px; line-height: 1.8; color: var(--text-muted); }

/* =============================================
   CTA
   ============================================= */
.cta { background: linear-gradient(135deg, var(--primary-mid), var(--primary-mid2)); text-align: center; }
.cta__content { max-width: 680px; margin: 0 auto; }
.cta__title { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--light); margin-bottom: 16px; }
.cta__text { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--primary-dark); padding: 60px 0 40px; border-top: 1px solid var(--border-light); }
.footer__grid { display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 40px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo svg { height: 32px; width: auto; display: block; }
.footer__logo img { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }
.footer__logo-text { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--light); }
.footer__desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.footer__copyright { font-size: 12px; color: rgba(255, 255, 255, .2); }
.footer__title { font-size: 14px; font-weight: 700; color: var(--light); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer__menu li { margin-bottom: 8px; }
.footer__menu a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.footer__menu a:hover { color: var(--primary-blue); }
.footer__contacts li { margin-bottom: 12px; }
.footer__contacts a, .footer__addr { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.footer__contacts a:hover { color: var(--primary-blue); }
.footer__phone { font-weight: 600; color: var(--light) !important; }
.footer__phone--second { color: var(--text-muted) !important; }
.footer__phone--second:hover { color: var(--light) !important; }
.footer__addr { margin-top: 4px; }

/* =============================================
   PARTICLES CANVAS
   ============================================= */
#particles-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 100; display: none;
}

/* =============================================
   FAB — Floating Action Button
   ============================================= */
.fab { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.fab__toggle {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-mid2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 99, 235, .4); transition: var(--transition); position: relative;
}
.fab__toggle:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37, 99, 235, .5); }
.fab__icon-close { display: none; }
.fab.active .fab__icon-main { display: none; }
.fab.active .fab__icon-close { display: block; }
.fab.active .fab__toggle { background: var(--accent); box-shadow: 0 6px 24px rgba(220, 38, 38, .4); }
.fab__menu {
  position: absolute; bottom: 70px; right: 0; display: flex; flex-direction: column;
  gap: 12px; opacity: 0; transform: translateY(10px) scale(.9);
  pointer-events: none; transition: var(--transition);
}
.fab.active .fab__menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.fab__item {
  display: flex; align-items: center; gap: 10px; padding: 12px 20px;
  background: rgba(255, 255, 255, .1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
  color: var(--light); font-size: 14px; font-weight: 500;
  transition: var(--transition); white-space: nowrap;
}
.fab__item--phone:hover { background: rgba(37, 99, 235, .3); border-color: var(--primary-blue); }
.fab__item--telegram:hover { background: rgba(0, 136, 204, .3); border-color: #0088cc; }
.fab__item--whatsapp:hover { background: rgba(37, 211, 102, .25); border-color: #25d366; }

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(10, 22, 40, .98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light); padding: 16px 24px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  transform: translateY(100%); transition: var(--transition);
}
.cookie.show { transform: translateY(0); }
.cookie__text { font-size: 12px; color: var(--text-muted); max-width: 600px; line-height: 1.6; }

/* =============================================
   RESPONSIVE: 1024px
   ============================================= */
@media (max-width: 1024px) {
  .hero__row { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .hero__logo-col { flex-basis: auto; }
  .hero__logo--hero { width: 200px; }
  .hero__title { font-size: 44px; }
  .hero__title-sub { font-size: 28px; }
  .hero__text-col { text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .header__nav-list { gap: 24px; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   RESPONSIVE: 768px (MOBILE)
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section__title { font-size: 28px; }

  /* ----- HEADER MOBILE ----- */
  .header__phones { display: none; }
  .header__burger { display: flex; }

  /* Nav becomes slide-in drawer from right */
  .header__nav {
    position: fixed; top: 0; right: 0; width: min(320px, 85vw);
    height: 100vh; height: 100dvh;
    background: var(--primary-dark2); border-left: 1px solid var(--border-light);
    transform: translateX(100%); visibility: hidden;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), visibility .35s;
    z-index: 1001; display: flex; flex-direction: column;
    padding: 100px 40px 40px; overflow-y: auto;
  }
  .header__nav.active { transform: translateX(0); visibility: visible; }
  .header__nav .header__nav-list { flex-direction: column; gap: 0; }
  .header__nav .header__nav-list li { width: 100%; }
  .header__nav .header__nav-link {
    display: block; font-size: 1.2rem; padding: 18px 0; color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
  }
  .header__nav .header__nav-link:hover,
  .header__nav .header__nav-link.active { color: var(--light); }

  /* ----- HERO MOBILE ----- */
  .hero__title { font-size: 32px; }
  .hero__title-sub { font-size: 22px; }
  .hero__subtitle { font-size: 15px; }
  .hero__stats { gap: 24px; justify-content: center; }
  .hero__stat-num { font-size: 26px; }

  /* ----- ABOUT MOBILE ----- */
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__stats-grid { grid-template-columns: 1fr 1fr; }

  /* ----- SERVICES MOBILE ----- */
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px 24px; }
  .service-card__number { font-size: 42px; top: 12px; right: 14px; }
  .service-card__title { font-size: 18px; }

  /* ----- CTA MOBILE ----- */
  .cta__title { font-size: 28px; }
  .cta__actions { flex-direction: column; align-items: center; }

  /* ----- FOOTER MOBILE ----- */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================
   RESPONSIVE: 400px (SMALL MOBILE)
   ============================================= */
@media (max-width: 400px) {
  .hero__title { font-size: 26px; }
  .hero__title-sub { font-size: 18px; }
  .hero__logo--hero { width: 140px; }
  .hero__stat-num { font-size: 22px; }
  .process__steps { grid-template-columns: 1fr; }
  .about__stats-grid { grid-template-columns: 1fr; }
}
