:root {
  --navy: #162040;
  --navy-mid: #1e2d52;
  --yellow: #f5a820;
  --yellow-dark: #e09518;
  --white: #ffffff;
  --light: #f4f6fb;
  --border: #e2e8f0;
  --text: #1a2332;
  --muted: #6b7280;
  --shadow: 0 4px 20px rgba(22,32,64,.10);
  --shadow-lg: 0 8px 40px rgba(22,32,64,.16);
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  margin: 0;
}

a { text-decoration: none; }

/* ══════════════════════════════
   TOP INFO BAR
══════════════════════════════ */
.top-info-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.top-info-bar .bin-text { font-weight: 700; color: var(--text); }
.top-addr a { color: var(--muted); font-size: 0.78rem; }
.top-addr a:hover { color: var(--navy); }

/* ══════════════════════════════
   LANG SWITCHER
══════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 1px 5px;
  cursor: pointer;
  transition: color .2s;
  font-family: inherit;
}
.lang-btn.active { color: var(--navy); }
.lang-btn:hover { color: var(--navy); }

/* ══════════════════════════════
   SITE HEADER
══════════════════════════════ */
.site-header {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 2px solid var(--border);
}
.site-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.header-company { line-height: 1.2; }
.header-too {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.header-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}
.header-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.header-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color .2s;
}
.header-contact-item i {
  width: 18px;
  text-align: center;
  font-size: 1rem;
  color: var(--navy);
}
.header-contact-item:hover { color: var(--yellow-dark); }

/* ══════════════════════════════
   MAIN NAV
══════════════════════════════ */
.main-nav {
  background: var(--navy);
  z-index: 1000;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.nav-item-link {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 16px 18px;
  transition: all .2s;
  position: relative;
  white-space: nowrap;
}
.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px 2px 0 0;
}
.nav-item-link:hover,
.nav-item-link.active {
  color: var(--white);
}
.nav-item-link:hover::after,
.nav-item-link.active::after {
  transform: scaleX(1);
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .25s;
}

@media (max-width: 900px) {
  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 8px;
  }
  .nav-list.open { display: flex; }
  .nav-item-link { padding: 12px 0; }
  .nav-item-link::after { left: 0; right: auto; width: 3px; height: 100%; top: 0; bottom: auto; border-radius: 0 2px 2px 0; }
  .nav-burger { display: flex; }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(22,32,64,.88) 0%,
    rgba(22,32,64,.72) 55%,
    rgba(22,32,64,.30) 100%
  );
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn-hero {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  transition: all .2s;
  display: inline-flex; align-items: center;
}
.btn-hero:hover {
  background: var(--yellow-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,168,32,.4);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.5);
  transition: all .2s;
  display: inline-flex; align-items: center;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: var(--white);
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 22px 0;
  border-top: 3px solid var(--yellow);
}
.stat-item { padding: 8px 0; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.stat-number { font-size: 2rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,.65); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* ══════════════════════════════
   COMMON SECTION STYLES
══════════════════════════════ */
.section-padding { padding: 80px 0; }
.bg-section { background: var(--light); }

.section-tag {
  display: inline-block;
  background: rgba(22,32,64,.07);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border-left: 3px solid var(--yellow);
}
.section-tag-light {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border-left: 3px solid var(--yellow);
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}
.section-text {
  color: #444;
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.about-heading::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  margin-top: 6px;
  border-radius: 2px;
}

.about-img-wrap {
  position: relative;
  padding: 24px 24px 32px 0;
}
.about-main-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* Decorative circles */
.about-circle-navy {
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: var(--navy);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
.about-circle-yellow {
  position: absolute;
  bottom: 10px; left: -20px;
  width: 80px; height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Hero photo (right side of carousel) */
.hero-photo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: flex-end;
  height: 100%;
  padding: 40px 0 40px 24px;
}
.hero-photo {
  width: 100%;
  max-width: 480px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,.35);
  border: 3px solid rgba(255,255,255,.15);
}

/* ══════════════════════════════
   SERVICES ACCORDION
══════════════════════════════ */
.services-accordion { display: flex; flex-direction: column; gap: 8px; }
.service-card {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(22,32,64,.05);
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card .accordion-button {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
  background: var(--white);
  gap: 14px;
  padding: 16px 22px;
}
.service-card .accordion-button:not(.collapsed) {
  background: var(--light);
  color: var(--navy);
  box-shadow: none;
}
.service-card .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162040'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.service-icon-wrap {
  width: 40px; height: 40px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem;
  flex-shrink: 0;
}
.service-card .accordion-body {
  padding: 14px 22px 18px;
  background: var(--white);
  color: #555;
  font-size: 0.92rem;
  line-height: 1.72;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════
   HOW WE WORK
══════════════════════════════ */
.how-section { background: var(--navy); }
.step-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  color: var(--white);
  transition: all .2s;
  height: 100%;
}
.step-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.step-num { font-size: 2.2rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 6px; }
.step-icon { font-size: 1.5rem; margin-bottom: 10px; color: rgba(255,255,255,.6); }
.step-card h5 { font-size: 0.92rem; font-weight: 800; margin-bottom: 6px; }
.step-card p { font-size: 0.8rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }

/* ══════════════════════════════
   LICENSES
══════════════════════════════ */
.license-card-link { display: block; height: 100%; }
.license-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 10px rgba(22,32,64,.06);
  transition: all .2s;
}
.license-card-link:hover .license-card {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.license-icon {
  width: 62px; height: 62px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.4rem;
  margin: 0 auto 14px;
}
.license-card h5 {
  font-size: 0.93rem; font-weight: 800;
  color: var(--navy); margin-bottom: 6px;
}
.license-cat { font-size: 0.8rem; color: var(--muted); margin-bottom: 14px; }
.license-badge {
  background: rgba(22,32,64,.07);
  color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid rgba(22,32,64,.12);
  transition: all .2s;
}
.license-card-link:hover .license-badge {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

/* ══════════════════════════════
   PARTNERS MARQUEE
══════════════════════════════ */
.partners-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  position: relative;
  display: inline-block;
}
.partners-heading::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: var(--yellow);
  margin: 8px auto 0;
  border-radius: 2px;
}
.marquee-wrapper {
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--light), transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-logo-item {
  padding: 10px 30px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.partner-logo-item img {
  height: 52px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: .85;
  transition: all .2s;
}
.partner-logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--yellow) 0%, #e09010 100%);
  padding: 68px 0;
  color: var(--navy);
}
.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 10px;
}
.cta-section p { font-size: .97rem; opacity: .85; }
.cta-section .btn-light { color: var(--navy); font-weight: 800; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-whatsapp {
  background: #25d366; border: none; color: white; font-weight: 800;
}
.btn-whatsapp:hover {
  background: #1db954; color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-accent {
  background: var(--yellow); border: none; color: var(--navy); font-weight: 800;
}
.btn-accent:hover {
  background: var(--yellow-dark); color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,168,32,.35);
}
.text-accent { color: var(--yellow); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
}
.footer-logo {
  height: 52px; width: auto; object-fit: contain;
  background: white; border-radius: 6px; padding: 2px;
}
.footer-brand { font-size: 0.88rem; font-weight: 800; color: white; }
.footer-brand-sub { font-size: 0.7rem; color: rgba(255,255,255,.45); }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-top: 6px; }
.footer-heading {
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,.45); margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.65); font-size: 0.86rem; transition: color .2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contacts { list-style: none; padding: 0; margin: 0; }
.footer-contacts li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 9px; font-size: 0.84rem;
}
.footer-contacts i { color: var(--yellow); margin-top: 2px; width: 14px; text-align: center; flex-shrink: 0; }
.footer-contacts a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contacts a:hover { color: var(--yellow); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 28px 0 20px; }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,.35); }

/* ══════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999; transition: all .2s;
}
.whatsapp-float:hover {
  color: white; transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ══════════════════════════════
   LAB PAGE
══════════════════════════════ */
.lab-hero {
  position: relative;
  min-height: 400px;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 60px 0;
}
.lab-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.lab-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(22,32,64,.92) 50%, rgba(22,32,64,.6) 100%);
  z-index: 1;
}
.lab-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.lab-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  line-height: 1.65;
}

.lab-photo-wrap { position: relative; padding-bottom: 24px; }
.lab-photo {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; max-height: 420px;
  box-shadow: var(--shadow-lg);
}
.lab-photo-badge {
  position: absolute; bottom: 0; left: 20px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.82rem; font-weight: 800;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex; align-items: center;
}

.lab-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center;
  border-left: 3px solid var(--yellow);
}

.lab-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lab-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(22,32,64,.05);
}
.lib-info-icon {
  width: 38px; height: 38px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem;
  flex-shrink: 0;
}
.lab-info-title { font-size: 0.85rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.lab-info-text  { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

.lab-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
  transition: all .2s;
}
.lab-service-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 3px 12px rgba(22,32,64,.08);
}
.lab-service-card i {
  color: var(--yellow); font-size: 1rem;
  flex-shrink: 0; margin-top: 1px;
}

/* ══════════════════════════════
   LEFT SCROLLSPY SIDEBAR
══════════════════════════════ */
.page-scrollspy {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
  /* Скрыт на экранах уже 1280px */
  display: none;
}
@media (min-width: 1280px) {
  .page-scrollspy { display: flex; }
}

.spy-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 6px 0;
  cursor: pointer;
  position: relative;
}

/* Вертикальная соединительная линия между точками */
.spy-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 5px;
  top: calc(50% + 8px);
  width: 2px;
  height: calc(100% - 4px);
  background: rgba(22,32,64,.15);
}

.spy-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(22,32,64,.3);
  background: var(--white);
  flex-shrink: 0;
  transition: all .25s;
  box-shadow: 0 0 0 3px rgba(22,32,64,.06);
}

.spy-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  background: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(22,32,64,.12);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .2s;
  pointer-events: none;
}

/* Показываем подпись при наведении или активном состоянии */
.spy-item:hover .spy-label,
.spy-item.active .spy-label {
  opacity: 1;
  transform: translateX(0);
}
.spy-item.active .spy-label {
  color: var(--navy);
  font-weight: 800;
  border-color: var(--yellow);
}

/* Активная точка */
.spy-item.active .spy-dot {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245,168,32,.25);
  transform: scale(1.2);
}
.spy-item:hover .spy-dot {
  border-color: var(--navy);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .hero-slide { min-height: 400px; }
  .hero-content { padding: 40px 0; }
  .hero-slide-1,
  .hero-slide-2 { background: var(--navy); }
  .hero-title { color: var(--white); }
  .hero-eyebrow { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
  .hero-sub { color: rgba(255,255,255,.7); }
  .about-badge-card { position: static; margin-top: 16px; }
  .stat-item:not(:last-child)::after { display: none; }
  .header-contacts { flex-direction: row; flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 480px) {
  .site-logo { height: 48px; }
  .header-name { font-size: 0.85rem; }
  .partner-logo-item img { height: 38px; }
}
