/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:    #1e2d6b;
  --blue-mid:     #3730a3;
  --blue-light:   #e0e7ff;
  --accent:       #4f46e5;
  --accent-dark:  #4338ca;
  --text:         #0f172a;
  --text-muted:   #64748b;
  --border:       #e2e8f0;
  --white:        #ffffff;
  --bg-soft:      #f0f4ff;
  --radius:       12px;
  --shadow-sm:    0 1px 3px rgba(30,45,107,.08), 0 1px 2px rgba(30,45,107,.06);
  --shadow-md:    0 4px 16px rgba(30,45,107,.14);
  --shadow-lg:    0 10px 40px rgba(30,45,107,.22);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --grad-a:       #6366f1;
  --grad-b:       #4338ca;
}

html { font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,70,229,.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label--white { color: #fff; background: rgba(255,255,255,.15); }

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.section-title--white { color: #fff; }
.section-desc { color: var(--text-muted); max-width: 560px; margin-bottom: 48px; }
.section-desc--white { color: rgba(255,255,255,.75); margin-bottom: 48px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%);
  color: var(--white);
  border-color: transparent;
}
.btn--primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(67,56,202,.45); }

.btn--outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn--outline:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }

.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.4);
}
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.btn--full { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 16px rgba(26,35,96,.1);
  border-bottom: 1px solid var(--border);
}

.header__top { background: var(--blue-dark); padding: 7px 0; font-size: 13px; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.08); }
.header__top .container { display: flex; align-items: center; justify-content: space-between; }
.header__address { display: flex; align-items: center; gap: 6px; }
.header__contacts { display: flex; align-items: center; gap: 16px; }
.header__phone { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.9); font-weight: 500; }
.header__phone:hover { color: var(--accent); }
.header__socials { display: flex; gap: 8px; align-items: center; }
.header__social-link { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; background: rgba(255,255,255,.15); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; transition: all var(--transition); }
.header__social-link:hover { background: var(--accent); color: #fff; }

.social-link { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); transition: all var(--transition); }
.social-link:hover { background: var(--accent); color: #fff; }

.nav { padding: 0; background: transparent; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__icon img { height: 56px; max-width: 200px; width: auto; display: block; filter: none; }
.logo__divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; gap: 2px; }
.logo__name { font-size: 18px; font-weight: 800; color: var(--blue-dark); line-height: 1.1; }
.logo__sub { font-size: 10px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.logo__name--white { color: var(--blue-dark); }
.logo__sub--white { color: var(--text-muted); }

.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: all var(--transition); }
.nav__link:hover { color: var(--blue-dark); background: var(--bg-soft); }
.nav__link--active { color: var(--accent); font-weight: 600; background: rgba(99,102,241,.08); }

.nav__cta { margin-left: 12px; padding: 10px 22px; background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%); color: var(--white); border-radius: var(--radius); font-size: 14px; font-weight: 700; transition: all var(--transition); box-shadow: 0 4px 14px rgba(67,56,202,.5); }
.nav__cta:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(67,56,202,.65); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all var(--transition); }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0a0e2e;
}

.slider__track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  position: relative;
  padding-top: 60px;
  padding-bottom: 72px;
}
.slide--1 { background: linear-gradient(135deg, rgba(10,14,46,.97) 0%, rgba(55,48,163,.80) 50%, rgba(99,102,241,.42) 100%), url('images/slide1.png') center/cover no-repeat; }
.slide--2 { background: linear-gradient(135deg, rgba(10,14,46,.97) 0%, rgba(55,48,163,.80) 50%, rgba(99,102,241,.42) 100%), url('images/slide2.png') center/cover no-repeat; }
.slide--3 { background: linear-gradient(135deg, rgba(10,14,46,.97) 0%, rgba(55,48,163,.80) 50%, rgba(99,102,241,.42) 100%), url('images/slide3.png') center/cover no-repeat; }
.slide--4 { background: linear-gradient(135deg, rgba(10,14,46,.97) 0%, rgba(55,48,163,.80) 50%, rgba(99,102,241,.42) 100%), url('images/slide4.png') center/cover no-repeat; }

.slide__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 540px;
}

.slide__inner .slide__content { max-width: 620px; }

.slide__content { max-width: 560px; }

.slide__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(74,158,232,.12);
  border: 1px solid rgba(74,158,232,.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.slide__title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.slide__accent { color: var(--accent); }

.slide__desc { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 28px; max-width: 500px; line-height: 1.75; }

.slide__features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.slide__features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.78); }

.slide__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.slide__brands { display: flex; gap: 10px; flex-wrap: wrap; }

/* Reuse hero stats / service list */
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 1.8s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.4)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0)} }

.hero__services-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero__service-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.78); }

.hero__stats { display: flex; align-items: center; gap: 0; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.stat__label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,.18); margin: 0 28px; }

/* Slide visual — hidden, image used as background instead */
.slide__visual { display: none; }

/* Slider controls */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.slider__arrow:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
.slider__arrow--prev { left: 20px; }
.slider__arrow--next { right: 20px; }

.slider__dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.slider__dot.active { background: var(--accent); width: 24px; border-radius: 4px; }


.wave-to-about { line-height: 0; margin-top: -79px; position: relative; z-index: 5; pointer-events: none; }
.wave-to-about svg { width: 100%; height: 80px; display: block; }
.wave-to-services { line-height: 0; margin-top: -63px; position: relative; z-index: 5; pointer-events: none; background: var(--white); }
.wave-to-services svg { width: 100%; height: 64px; display: block; }
.wave-to-coverage { line-height: 0; margin-top: -63px; position: relative; z-index: 5; pointer-events: none; }
.wave-to-coverage svg { width: 100%; height: 64px; display: block; }

/* =============================================
   PARTNERS TICKER
   ============================================= */
.partners-ticker { padding: 32px 0 28px; background: var(--white); margin-top: -40px; position: relative; z-index: 2; border-bottom: 1px solid var(--border); }
.partners-ticker__label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.partners-ticker__wrap { overflow: hidden; position: relative; }
.partners-ticker__wrap::before,
.partners-ticker__wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-ticker__wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.partners-ticker__wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.partners-ticker__track {
  display: flex;
  gap: 16px;
  animation: ticker-scroll 22s linear infinite;
  width: max-content;
}
.partners-ticker__track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  white-space: nowrap;
  color: var(--accent);
  flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s;
}
.partner-badge:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.partner-badge__name { font-weight: 700; font-size: 15px; color: var(--text); }
.partner-badge__desc { font-size: 12px; color: var(--text-muted); padding-left: 8px; border-left: 1px solid var(--border); }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--bg-soft); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__text { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.about__brands { margin-bottom: 32px; }
.about__brands-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 12px; }
.brands { display: flex; gap: 10px; flex-wrap: wrap; }
.brand-tag { padding: 6px 16px; border-radius: 8px; background: var(--blue-light); color: var(--blue-dark); font-size: 13px; font-weight: 700; letter-spacing: .05em; border: 1px solid rgba(79,70,229,.2); }

.about__img-wrap { position: relative; border-radius: 20px; overflow: visible; }
.about__img-placeholder { background: var(--white); border-radius: 20px; border: 2px dashed var(--border); aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--text-muted); font-size: 14px; box-shadow: var(--shadow-md); }
.about__badge-float { position: absolute; bottom: -16px; left: -16px; background: linear-gradient(135deg, #1e1b4b 0%, #302b63 100%); color: white; border-radius: 12px; padding: 12px 18px; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; box-shadow: 0 8px 28px rgba(30,27,75,.45); border: 1px solid rgba(79,70,229,.35); }

/* =============================================
   SERVICES
   ============================================= */
.services { position: relative; background: linear-gradient(135deg, #0a0e2e 0%, #1e2d6b 55%, #3730a3 100%); overflow: hidden; }
.services__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(99,102,241,.2) 0%, transparent 60%); }
.services .container { position: relative; z-index: 1; }

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); border-radius: 20px; padding: 36px 32px; color: white; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(74,158,232,.6), transparent); opacity: 0; transition: opacity var(--transition); }
.service-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }
.service-card:hover::before { opacity: 1; }
.service-card--accent { background: rgba(79,70,229,.12); border-color: rgba(79,70,229,.38); }
.service-card--accent:hover { background: rgba(79,70,229,.18); border-color: rgba(79,70,229,.55); }
.service-card__badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: .05em; }
.service-card__image { margin: -36px -32px 28px; overflow: hidden; height: 200px; border-radius: 20px 20px 0 0; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card__image img { transform: scale(1.04); }
.service-card__icon { margin-bottom: 24px; }
.service-card__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card__desc { font-size: 14px; color: rgba(255,255,255,.68); margin-bottom: 24px; line-height: 1.7; }
.service-card__list { margin-bottom: 28px; }
.service-card__list li { font-size: 14px; color: rgba(255,255,255,.72); padding: 4px 0 4px 20px; position: relative; }
.service-card__list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 2px; background: var(--accent); border-radius: 2px; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent); transition: gap var(--transition); }
.service-card__link:hover { gap: 10px; }

/* =============================================
   COVERAGE
   ============================================= */
.coverage { background: var(--white); }
.coverage__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  background: var(--bg-soft);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  gap: 10px;
}
.city-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.city-card--main { background: var(--blue-light); border-color: rgba(79,70,229,.3); }
.city-card--main:hover { border-color: var(--accent); }
.city-card--cta { background: linear-gradient(135deg, var(--accent) 0%, var(--blue-dark) 100%); border-color: transparent; text-decoration: none; cursor: pointer; }
.city-card--cta .city-card__icon { background: rgba(255,255,255,.2); color: #fff; }
.city-card--cta .city-card__name { color: #fff; }
.city-card--cta .city-card__sub { color: rgba(255,255,255,.8); }
.city-card--cta:hover { border-color: transparent; box-shadow: 0 8px 28px rgba(79,70,229,.5); transform: translateY(-3px); }

.city-card__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(79,70,229,.1); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.city-card--main .city-card__icon { background: rgba(67,56,202,.12); color: var(--blue-dark); }
.city-card__name { font-size: 15px; font-weight: 700; color: var(--blue-dark); }
.city-card__sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* =============================================
   STEPS
   ============================================= */
.steps { background: var(--bg-soft); }
.steps__grid { display: flex; align-items: flex-start; }
.step-card { flex: 1; text-align: center; padding: 32px 24px; border-radius: 16px; background: var(--white); border: 1px solid var(--border); transition: all var(--transition); }
.step-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-card__num { font-size: 42px; font-weight: 900; color: var(--blue-light); line-height: 1; margin-bottom: 16px; -webkit-text-stroke: 2px var(--blue-dark); paint-order: stroke fill; }
.step-card__title { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.step-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.step-connector { width: 60px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 48px; }
.step-connector::before { content: ''; display: block; width: 40px; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 12px); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--white); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 72px;
  color: var(--blue-light);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.review-card__stars { font-size: 18px; color: #f59e0b; letter-spacing: 2px; }

.review-card__text { font-size: 15px; color: var(--text-muted); line-height: 1.75; flex: 1; font-style: italic; }

.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-dark); color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.review-card__name { font-size: 15px; font-weight: 700; color: var(--blue-dark); }
.review-card__city { font-size: 13px; color: var(--text-muted); }

/* =============================================
   SUPPORT
   ============================================= */
.support { background: var(--bg-soft); }
.support__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.support__desc { color: var(--text-muted); margin-bottom: 40px; }
.support__contacts { display: flex; flex-direction: column; gap: 16px; }
.support__contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: all var(--transition); }
.support__contact-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.support__contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); color: var(--blue-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.support__contact-label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.support__contact-value { font-size: 15px; font-weight: 600; color: var(--text); }

.support__form-wrap { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.support__form-title { font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 15px; font-family: inherit; color: var(--text); background: var(--bg-soft); transition: all var(--transition); outline: none; appearance: none; }
.form-input:focus { border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(79,70,229,.12); }
.form-input.error { border-color: #ef4444; }
.form-error { display: block; font-size: 12px; color: #ef4444; margin-top: 4px; min-height: 16px; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-privacy { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-privacy a { color: var(--accent); text-decoration: underline; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 24px; color: var(--text-muted); }

/* =============================================
   CONTACTS
   ============================================= */
.contacts { background: var(--white); }
.contacts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-block { display: flex; align-items: flex-start; gap: 14px; padding: 24px; background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--border); }
.contact-block__icon { width: 44px; height: 44px; background: var(--blue-light); color: var(--blue-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-block__label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.contact-block__value { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.6; }
.contact-block__value a:hover { color: var(--accent); }

/* =============================================
   PARTNERS
   ============================================= */
.partners { background: var(--bg-soft); }
.partners__grid { display: flex; gap: 24px; flex-wrap: wrap; }
.partner-card { display: flex; align-items: center; gap: 14px; padding: 20px 32px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); font-size: 16px; font-weight: 600; color: var(--text); transition: all var(--transition); }
.partner-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: linear-gradient(135deg, #1a2360 0%, #2d3e9e 100%); }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; padding: 60px 0 40px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.45); margin-top: 16px; max-width: 260px; line-height: 1.6; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.38); margin-bottom: 6px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.62); transition: color var(--transition); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.38); }
.footer__bottom a { color: rgba(255,255,255,.45); }
.footer__bottom a:hover { color: rgba(255,255,255,.8); }

/* =============================================
   FLOATING CTA
   ============================================= */
.float-cta { position: fixed; bottom: 32px; right: 32px; z-index: 99; opacity: 0; transform: scale(0.8); transition: all var(--transition); pointer-events: none; }
.float-cta.visible { opacity: 1; transform: scale(1); pointer-events: all; }
.float-cta__btn { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%); color: white; box-shadow: 0 8px 28px rgba(67,56,202,.5); transition: all var(--transition); }
.float-cta__btn:hover { transform: scale(1.1); opacity: .9; }

/* =============================================
   RESPONSIVE
   ============================================= */

/* --- Планшет горизонтальный --- */
@media (max-width: 1024px) {
  .about__inner    { gap: 48px; }
  .support__inner  { gap: 48px; }
  .footer__inner   { gap: 40px; }
  .coverage__grid  { grid-template-columns: repeat(3, 1fr); }
  .services__grid  { gap: 16px; }
  .nav__inner      { height: auto; min-height: 84px; padding: 10px 0; }
}

/* --- Планшет вертикальный --- */
@media (max-width: 900px) {
  .slide__visual   { display: none; }
  .slide           { padding-bottom: 80px; }
  .slide__inner    { min-height: 460px; }

  .services__grid       { grid-template-columns: 1fr; }
  .about__inner         { grid-template-columns: 1fr; gap: 40px; }
  .about__image         { order: -1; }
  .support__inner       { grid-template-columns: 1fr; gap: 40px; }
  .steps__grid          { flex-direction: column; gap: 16px; align-items: center; }
  .step-connector       { display: none; }
  .step-card            { width: 100%; }
  .testimonials__grid   { grid-template-columns: 1fr 1fr; }
  .footer__inner        { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner        { padding-top: 48px; }
}

/* --- Мобильный --- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Шапка */
  .header__top { display: none; }
  .nav { position: relative; }
  .nav__inner { height: auto; min-height: 76px; padding: 8px 0; }
  .logo__icon img { height: 76px; max-width: 220px; }

  .burger { display: flex; }
  .nav__list {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: linear-gradient(135deg, #1a2360 0%, #2d3e9e 100%);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 10px 40px rgba(15,12,41,.6);
    gap: 4px;
    z-index: 50;
  }
  .nav__list.open { display: flex; }
  .nav__link { display: block; padding: 12px 16px; font-size: 15px; }
  .nav__cta  { margin-left: 0; margin-top: 8px; text-align: center; }

  /* Слайдер */
  .slide       { padding-top: 44px; padding-bottom: 72px; }
  .slide__inner { min-height: 400px; }
  .slide__actions { flex-direction: column; gap: 10px; align-items: flex-start; }
  .slide__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .stat__num    { font-size: 22px; }
  .stat__divider { margin: 0 18px; }
  .slider__arrow { width: 36px; height: 36px; }

  /* Прочее */
  .testimonials__grid  { grid-template-columns: 1fr; }
  .contacts__grid      { grid-template-columns: 1fr 1fr; }
  .coverage__grid      { grid-template-columns: repeat(2, 1fr); }
  .footer__links       { grid-template-columns: repeat(2, 1fr); }
}

/* --- Маленький мобильный --- */
@media (max-width: 560px) {
  .section    { padding: 44px 0; }
  .container  { padding: 0 16px; }

  /* Шапка */
  .nav__inner { min-height: 72px; }
  .logo__icon img { height: 68px; max-width: 200px; }
  .logo__divider  { display: none; }
  .logo__text     { display: none; }

  /* Слайдер */
  .slide        { padding-top: 32px; padding-bottom: 56px; }
  .slide__inner { min-height: 340px; }
  .slide__desc  { font-size: 14px; }
  .stat__num    { font-size: 18px; }
  .stat__label  { font-size: 11px; }
  .stat__divider { margin: 0 12px; height: 30px; }
  .slider__arrow { display: none; }

  /* Партнёры */
  .partner-badge__desc { display: none; }
  .partner-badge { padding: 12px 18px; }

  /* Карточки услуг */
  .service-card         { padding: 24px 20px; }
  .service-card__image  { margin: -24px -20px 20px; }

  /* О компании */
  .about__badge-float { left: 8px; bottom: -8px; font-size: 12px; padding: 8px 14px; }

  /* Форма */
  .support__form-wrap { padding: 24px 20px; }

  /* Контакты */
  .contacts__grid { grid-template-columns: 1fr; }

  /* Футер */
  .footer__links         { grid-template-columns: 1fr; }
  .footer__bottom-inner  { flex-direction: column; gap: 8px; text-align: center; }

  /* Float CTA */
  .float-cta { bottom: 20px; right: 16px; }
}

/* --- Очень маленький (iPhone SE и подобные) --- */
@media (max-width: 390px) {
  .logo__icon img    { height: 60px; }
  .slide__inner      { min-height: 300px; }
  .hero__stats       { display: none; }
  .section-title     { font-size: 22px; }
  .slide__actions .btn { max-width: 100%; }
}
