/* ============================================================
   SKYSERVICE AUTOREMONT — shared stylesheet
   ============================================================ */

:root {
  /* Surfaces */
  --ink:        #0A0E17;
  --ink-2:      #0F1626;
  --ink-3:      #161F33;
  --paper:      #FFFFFF;
  --mist:       #F3F6FC;
  --mist-2:     #E9EEF8;
  --line:       #E2E8F2;
  --line-dark:  rgba(255,255,255,.10);

  /* Brand */
  --brand:        #2E7DF6;
  --brand-bright: #45C4FF;
  --brand-deep:   #1A47B8;
  --brand-grad:   linear-gradient(118deg, #2E7DF6 0%, #45C4FF 100%);
  --brand-glow:   rgba(46,125,246,.45);

  /* Accent (yellow) */
  --accent:        #FFC42E;
  --accent-bright: #FFD84D;
  --accent-deep:   #E59A00;
  --accent-soft:   #FFF4D6;
  --accent-grad:   linear-gradient(118deg, #FFC42E 0%, #FFD84D 100%);
  --accent-glow:   rgba(229,154,0,.40);

  /* Steel (variant 5 hero) */
  --steel:      #222933;
  --steel-2:    #2E3742;
  --sky:        #7CC6FF;
  --sky-grad:   linear-gradient(118deg, #7CC6FF 0%, #A9DBFF 100%);

  /* Text */
  --text:   #15202E;
  --text-2: #44505F;
  --muted:  #6B7888;
  --on-dark:    #EAF0FA;
  --on-dark-2:  #9DAAC0;

  /* Geometry */
  --r-sm: 8px;
  --r:    14px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 2px 8px rgba(16,32,64,.06);
  --shadow:    0 14px 40px rgba(16,32,64,.10);
  --shadow-lg: 0 30px 70px rgba(10,18,40,.18);
  --container: 1256px;

  --ff-head: "Montserrat", "Manrope", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 800; line-height: 1.02; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
::selection { background: var(--brand); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--brand-grad);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--brand-bright); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad: 15px 26px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: var(--pad);
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 10px 26px var(--brand-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px var(--brand-glow); }
.btn-ghost {
  background: transparent; color: var(--text); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--on-dark); border-color: var(--line-dark); }
.btn-ghost.on-dark:hover { border-color: var(--brand-bright); color: #fff; background: rgba(255,255,255,.04); }
.btn-lg { --pad: 18px 34px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(16,32,64,.08);
}
.header-inner {
  display: flex; align-items: center; gap: 26px;
  height: 118px;
}
.brand { display: flex; align-items: center; margin-right: auto; }
.brand .logo-img {
  width: auto; height: 53px; max-width: 270px; object-fit: contain; flex: none;
  display: block;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--ff-head); font-weight: 600; font-size: 15px; white-space: nowrap;
  color: var(--text-2); padding: 9px 13px; border-radius: 999px;
  transition: color .18s, background .18s;
}
.nav a:hover { color: var(--brand); background: var(--mist); }

.header-tools { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; padding: 0;
}

.flag-btn {
  display: block; width: 29px; height: 29px; border-radius: 50%;
  overflow: hidden; flex: none;
  border: 2px solid var(--line);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.flag-btn:hover { transform: scale(1.1); border-color: var(--brand); }
.flag-btn.active {
  border: 2.5px solid var(--brand);
  box-shadow: 0 0 0 2px rgba(46,125,246,.25);
}
.flag-svg { width: 100%; height: 100%; display: block; object-fit: cover; }

.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 800; font-size: 15.5px; color: var(--ink);
}
.header-phone svg { width: 17px; height: 17px; color: var(--brand); }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center; color: var(--ink);
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 75% center; display: block;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,22,40,.72) 0%, rgba(15,22,40,.40) 60%, rgba(15,22,40,.15) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  min-height: 680px;
  padding: 80px 28px 90px;
  max-width: var(--container); margin: 0 auto;
}
.hero h1 {
  font-size: clamp(28px, 3.8vw, 48px); color: #fff; letter-spacing: -.02em;
  text-wrap: balance; max-width: 18em; margin-top: 14px;
}
.hero h1 .grad { background: var(--sky-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px;
  background: #fff; color: var(--ink);
  border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  max-width: 270px;
}
.hero-badge .ico {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: var(--brand-grad); color: #fff; display: grid; place-items: center;
}
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge .t { font-family: var(--ff-head); font-weight: 800; font-size: 15px; line-height: 1.1; }
.hero-badge .s { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   Image placeholders
   ============================================================ */
.ph {
  position: relative; width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, var(--ink-3), var(--ink-2));
  color: var(--on-dark-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center; padding: 24px;
}
.ph.light {
  background:
    repeating-linear-gradient(135deg, rgba(46,125,246,.05) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, var(--mist-2), var(--mist));
  color: var(--muted);
}
.ph svg { width: 40px; height: 40px; opacity: .65; }
.ph .ph-label {
  font-family: var(--ff-head); font-weight: 700; font-size: 12.5px; letter-spacing: .04em;
  text-transform: uppercase; max-width: 16em; line-height: 1.35;
}

/* ============================================================
   Media (real photos + embedded map)
   ============================================================ */
.media-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.map-frame {
  width: 100%; height: 100%; border: 0; display: block;
  min-width: 0;
}

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.sec { padding: 96px 0; }
.sec-mist { background: var(--mist); }
.sec-ink { background: var(--ink); color: var(--on-dark); }
.sec-head { max-width: 100%; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 16px; color: var(--ink); }
.sec-ink .sec-head h2 { color: #fff; }
.sec-head p { margin-top: 18px; font-size: 18px; color: var(--text-2); }
.sec-ink .sec-head p { color: var(--on-dark-2); }

/* ============================================================
   Services
   ============================================================ */
.svc-grid {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; transition: transform .2s, box-shadow .25s, border-color .2s;
  position: relative; overflow: hidden;
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: var(--brand-grad); transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::after { transform: scaleY(1); }
.svc .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--mist); color: var(--brand); margin-bottom: 18px;
  transition: background .25s, color .25s;
}
.svc:hover .ico { background: var(--brand-grad); color: #fff; }
.svc .ico svg { width: 27px; height: 27px; }
.svc h3 { font-size: 19px; color: var(--ink); }
.svc h3 a:hover { color: var(--brand); }
.svc p { margin-top: 9px; font-size: 14.5px; color: var(--text-2); line-height: 1.5; }

/* ============================================================
   Service landing pages
   ============================================================ */
.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.service-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,22,40,.78) 0%, rgba(15,22,40,.54) 62%, rgba(15,22,40,.24) 100%);
}
.service-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 566px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 76px;
  padding-bottom: 82px;
}
.service-hero h1 {
  margin-top: 16px;
  max-width: 840px;
  font-size: clamp(32px, 5vw, 58px);
  color: #fff;
}
.service-hero p {
  margin-top: 20px;
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.65;
}
.service-hero .btn { margin-top: 30px; }
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: start;
}
.service-content {
  max-width: 760px;
}
.service-content h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
}
.service-content p {
  margin-top: 18px;
  color: var(--text-2);
  font-size: 17px;
}
.service-bullets {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.service-bullets span {
  position: relative;
  display: block;
  padding: 15px 18px 15px 48px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--ink);
}
.service-bullets span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-grad);
  transform: translateY(-50%);
}
.service-side {
  position: sticky;
  top: 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.service-side h3 {
  color: var(--ink);
  font-size: 24px;
}
.service-side p {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 15.5px;
}
.call-phone.compact {
  display: block;
  margin-top: 22px;
  font-size: 30px;
}
.side-meta {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  color: var(--text-2);
  font-size: 14.5px;
}
.faq-wrap .sec-head { max-width: 720px; }
.faq-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.faq-card h3 {
  color: var(--ink);
  font-size: 20px;
}
.faq-card p {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 15.5px;
}
.related-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.related-link {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  color: var(--ink);
  font-family: var(--ff-head);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, border-color .18s, color .18s;
}
.related-link:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  color: var(--brand);
}


/* ============================================================
   About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.about-media { aspect-ratio: 4/5; max-height: 640px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.about-body h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 16px; color: var(--ink); }
.about-body p { margin-top: 18px; font-size: 17px; color: var(--text-2); }
.about-points { margin-top: 28px; display: grid; gap: 14px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point .tick {
  width: 26px; height: 26px; border-radius: 50%; flex: none; margin-top: 1px;
  background: rgba(46,125,246,.12); color: var(--brand); display: grid; place-items: center;
}
.about-point .tick svg { width: 15px; height: 15px; }
.about-point b { font-family: var(--ff-head); }

/* ============================================================
   Why us
   ============================================================ */
.why-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark);
  border-radius: var(--r-lg); padding: 30px 26px;
}
.why .ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(69,196,255,.12); color: var(--brand-bright); margin-bottom: 20px;
}
.why .ico svg { width: 28px; height: 28px; }
.why h3 { font-size: 19px; color: #fff; }
.why p { margin-top: 10px; font-size: 14.5px; color: var(--on-dark-2); }

/* ============================================================
   Steps
   ============================================================ */
.steps { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 26px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--ff-head); font-weight: 900; font-size: 15px;
  color: var(--brand); background: var(--mist);
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; color: var(--ink); }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--text-2); }
.step .bar { position: absolute; top: 23px; left: 60px; right: -10px; height: 2px; background: linear-gradient(90deg, var(--line), transparent); }
.step:last-child .bar { display: none; }

/* ============================================================
   Contact / form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-aside h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 16px; color: #fff; }
.contact-aside > p { margin-top: 18px; font-size: 17px; color: var(--on-dark-2); max-width: 30em; }
.contact-list { margin-top: 34px; display: grid; gap: 6px; }
.ci { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line-dark); }
.ci:last-child { border-bottom: 1px solid var(--line-dark); }
.ci .ico {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: rgba(69,196,255,.12); color: var(--brand-bright); display: grid; place-items: center;
}
.ci > span:last-child { display: flex; flex-direction: column; }
.ci .ico svg { width: 22px; height: 22px; }
.ci .k { display: block; font-size: 13px; color: var(--on-dark-2); letter-spacing: .03em; text-transform: uppercase; font-family: var(--ff-head); font-weight: 700; }
.ci .v { display: block; font-family: var(--ff-head); font-weight: 700; font-size: 17px; color: #fff; margin-top: 3px; }
.ci .v a:hover { color: var(--brand-bright); }

/* Form card */
.form-card {
  background: #fff; border-radius: var(--r-xl); padding: 36px;
  box-shadow: var(--shadow-lg); color: var(--text);
}
.form-card h3 { font-size: 24px; color: var(--ink); }
.form-card .form-sub { margin-top: 8px; font-size: 15px; color: var(--text-2); }
.form { margin-top: 24px; display: grid; gap: 16px; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-head); font-weight: 700; font-size: 13px; color: var(--text); letter-spacing: .01em; }
.field label .req { color: var(--brand); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 15.5px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--mist); transition: border-color .18s, background .18s, box-shadow .18s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px rgba(46,125,246,.12);
}
.field input::placeholder, .field textarea::placeholder { color: #9AA6B6; }
.form-note { font-size: 12.5px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 15px; height: 15px; flex: none; margin-top: 1px; color: var(--brand); }
.form-success {
  display: none; align-items: center; gap: 14px;
  background: rgba(25,195,125,.10); border: 1px solid rgba(25,195,125,.3);
  color: #0d7a4d; border-radius: var(--r); padding: 16px 18px; font-weight: 600; font-size: 15px;
}
.form-success.show { display: flex; }
.form-success svg { width: 24px; height: 24px; flex: none; }

/* Phone-only contact card */
.call-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 38px; box-shadow: var(--shadow-lg); color: var(--text);
  display: grid; gap: 18px; text-align: center;
}
.call-card h3 { font-size: 24px; color: var(--ink); }
.call-card p { color: var(--text-2); font-size: 16px; }
.call-phone {
  font-family: var(--ff-head); font-weight: 900; font-size: clamp(30px, 5vw, 46px);
  line-height: 1; color: var(--brand);
}
.call-phone:hover { color: var(--brand-deep); }

/* Map card */
.map-wrap {
  position: relative; margin-top: 26px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  width: 100%; max-width: 100%; min-width: 0;
}
.map-wrap .map-frame { filter: grayscale(.28) contrast(1.04) saturate(1.05); }
.map-pin {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 13px;
  padding: 13px 15px; background: rgba(255,255,255,.96);
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: 0 10px 26px rgba(10,14,23,.16); backdrop-filter: blur(4px);
  transition: transform .2s, box-shadow .25s; cursor: pointer;
  min-width: 0;
}
.map-pin:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(10,14,23,.22); }
.map-pin .map-pin-ico {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-bright));
}
.map-pin .map-pin-ico svg { width: 21px; height: 21px; }
.map-pin .map-pin-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.map-pin .map-pin-txt b { font-family: var(--ff-head); font-weight: 800; font-size: 14.5px; color: var(--ink); }
.map-pin .map-pin-txt span { font-size: 13px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.map-pin .map-pin-go {
  margin-left: auto; flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-weight: 700; font-size: 13px; color: var(--brand);
}
.map-pin .map-pin-go svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .map-pin { left: 10px; right: 10px; bottom: 10px; gap: 10px; padding: 11px 12px; }
  .map-pin .map-pin-ico { width: 36px; height: 36px; }
  .map-pin .map-pin-txt b { font-size: 13px; }
  .map-pin .map-pin-txt span { font-size: 12px; }
  .map-pin .map-pin-go { font-size: 0; gap: 0; }
  .map-pin .map-pin-go svg { width: 18px; height: 18px; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #060912; color: var(--on-dark-2); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand .logo-img { height: 53px; max-width: 320px; }
.footer-col h4 { font-family: var(--ff-head); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 15px; color: var(--on-dark-2); padding: 5px 0; }
.footer-col a:hover { color: var(--brand-bright); }
.footer-about { margin-top: 18px; font-size: 14.5px; max-width: 30em; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); color: var(--on-dark);
  transition: background .2s, color .2s, transform .2s;
}
.footer-social a:hover { background: var(--brand-grad); color: #fff; transform: translateY(-2px); border-color: transparent; }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px;
}


/* ============================================================
   Mobile nav drawer
   ============================================================ */
.drawer { display: none; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1140px) {
  .header-phone { display: none; }
  .nav a { padding: 9px 11px; font-size: 14.5px; }
}
@media (max-width: 1000px) {
  .hero-inner { padding: 60px 28px 70px; min-height: 500px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-side { position: static; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .step .bar { display: none; }
}
@media (max-width: 820px) {
  .nav, .header-phone { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { height: 94px; gap: 14px; }
  .sec { padding: 72px 0; }
  .drawer {
    display: block; position: fixed; inset: 0; z-index: 200;
    background: rgba(8,12,22,.55); backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none; transition: opacity .25s;
    overflow: hidden;
  }
  .drawer.open { opacity: 1; pointer-events: auto; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px);
    background: var(--ink); color: var(--on-dark); padding: 26px 24px;
    transform: translateX(100%); transition: transform .3s ease;
    display: flex; flex-direction: column; gap: 8px;
  }
  .drawer.open .drawer-panel { transform: none; }
  .drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
  .drawer-logo { width: 230px; max-width: calc(100% - 56px); height: auto; display: block; }
  .drawer-close { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-dark); background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; }
  .drawer-close svg { width: 22px; height: 22px; }
  .drawer a.dnav {
    font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: #fff;
    padding: 11px 0; border-bottom: 1px solid var(--line-dark);
  }
  .drawer .btn { margin-top: 18px; }
  .drawer-phone { margin-top: 14px; font-family: var(--ff-head); font-weight: 800; font-size: 19px; color: var(--brand-bright); }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .site-header .container { padding-left: 12px; padding-right: 12px; }
  .header-inner { gap: 8px; }
  .header-tools { gap: 8px; }
  .flag-btn { width: 27px; height: 27px; }
  .svc-grid, .why-grid, .steps, .faq-grid, .related-grid, .footer-top { grid-template-columns: 1fr; }
  .service-hero-inner { min-height: 620px; padding-top: 58px; padding-bottom: 62px; }
  .service-side { padding: 24px; }
  .call-phone.compact { font-size: 26px; }
  .fr { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .hero-badge { left: 0; }
  .brand .logo-img { height: 42px; max-width: 176px; }
  .footer .brand .logo-img { height: 43px; max-width: 220px; }
  .form-card { padding: 24px; }
  .call-card { padding: 26px 22px; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================================
   LIGHT THEME — white-toned redesign
   (overrides the dark surfaces: hero, why-us, contact, footer, drawer)
   ============================================================ */

/* ---- Hero (variant 5 — steel graphite) ---- */
.hero {
  background: linear-gradient(135deg, #222933 0%, #2E3742 100%);
  color: var(--on-dark);
}
.hero::before {
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(124,198,255,.20), transparent 60%),
    radial-gradient(720px 520px at 4% 112%, rgba(255,196,46,.12), transparent 60%);
}
.hero::after {
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
}
.hero h1 { color: #fff; }
.hero h1 .grad { background: var(--sky-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .eyebrow.on-dark { color: var(--accent); }
.hero-lead { margin-top: 18px; font-size: 18px; color: rgba(255,255,255,.75); max-width: 38em; line-height: 1.6; }
.hero-stats { border-top-color: rgba(255,255,255,.14); }
.hero-stat .n { color: #fff; }
.hero-stat .n span { color: var(--accent); }
.hero-stat .l { color: #9DAAC0; }
.hero .btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.hero .btn-ghost.on-dark:hover { color: var(--steel); border-color: #fff; background: #fff; }
.hero-photo { border-color: rgba(255,255,255,.14); }

/* ---- Why us (now white) ---- */
#why.sec-ink { background: var(--paper); color: var(--text); }
#why .sec-head h2 { color: var(--ink); }
#why .eyebrow.on-dark { color: var(--brand); }
#why .why {
  background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
#why .why:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
#why .why .ico { background: var(--mist); color: var(--brand); }
#why .why h3 { color: var(--ink); }
#why .why p { color: var(--text-2); }

/* ---- How it works (mist, for rhythm) ---- */
#how.sec { background: var(--mist); }
#how .step::before { background: #fff; box-shadow: var(--shadow-sm); }

/* ---- Phone contact (soft blue panel so the white card pops) ---- */
#quote.sec-ink { background: linear-gradient(180deg, #EAF1FF 0%, #F3F8FF 100%); color: var(--text); }
#quote .eyebrow.on-dark { color: var(--brand); }
#quote .sec-head h2 { color: var(--ink); }
#quote .sec-head p { color: var(--text-2); }
.quote-wrap { max-width: 940px; margin: 0 auto; }
.quote-wrap .sec-head { margin-bottom: 30px; }
.quote-wrap .form-card { width: 100%; }
.quote-wrap .call-card { width: 100%; }
.form-card { border: 1px solid var(--line); }

/* ---- Contacts (white) ---- */
.contacts-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 44px; align-items: stretch; margin-top: 48px; }
.contacts-grid, .contacts-grid > * { min-width: 0; }
.contacts-grid .contact-list { align-self: stretch; }
.contacts-grid .map-wrap { margin-top: 0; aspect-ratio: unset; height: 100%; min-height: 300px; }
#contact .ci { border-top-color: var(--line); }
#contact .ci:last-child { border-bottom-color: var(--line); }
#contact .ci .ico { background: var(--mist); color: var(--brand); }
#contact .ci .k { color: var(--muted); }
#contact .ci .v { color: var(--ink); }
#contact .map-wrap { border-color: var(--line); }
@media (max-width: 760px) {
  .contacts-grid { grid-template-columns: 1fr; gap: 30px; }
  .contacts-grid .map-wrap { height: auto; aspect-ratio: 16/10; }
}

/* ---- Footer (light) ---- */
.footer { background: var(--mist); color: var(--text-2); border-top: 1px solid var(--line); }
.footer-col h4 { color: var(--ink); }
.footer-col a, .footer-col p { color: var(--text-2); }
.footer-col a:hover { color: var(--brand); }
.footer-about { color: var(--text-2); }
.footer-social a { background: #fff; border-color: var(--line); color: var(--text-2); }
.footer-bottom { border-top-color: var(--line); color: var(--muted); }
.footer-bottom .lang-mini a:hover { color: var(--ink); }
.footer-bottom .lang-mini a.active { color: var(--brand); }

/* ---- Mobile drawer (light) ---- */
.drawer-panel { background: #fff; color: var(--text); }
.drawer-close { border-color: var(--line); color: var(--ink); }
.drawer a.dnav { color: var(--ink); border-bottom-color: var(--line); }
.drawer-phone { color: var(--brand); }

/* ============================================================
   YELLOW + SKY-BLUE accent layer
   (blue stays the structural color; yellow is the energetic pop)
   ============================================================ */

/* Primary CTA → yellow with dark text */
.btn-primary {
  background: var(--accent-grad);
  color: var(--ink);
  box-shadow: 0 10px 26px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 16px 34px var(--accent-glow); }
.btn-primary svg { color: var(--ink); }

/* Eyebrow underline → yellow (text stays blue → the duo) */
.eyebrow::before { background: var(--accent); }

/* About ticks → yellow */
.about-point .tick { background: var(--accent-soft); color: var(--accent-deep); }

/* Hero highlight figure → yellow */
.hero-stat .n span { color: var(--accent-deep); }

/* Hero floating badge → yellow */
.hero-badge .ico { background: var(--accent-grad); color: var(--ink); }

/* Map pin marker keeps blue, but its CTA arrow → warm */
.map-pin .map-pin-go { color: var(--accent-deep); }

/* Service card hover keeps blue icon; add a yellow top accent bar */
.svc::after { background: var(--accent) !important; }

/* Section heading: a subtle yellow underline accent under H2 in light heads */
.sec-head.center .eyebrow::before,
.sec-head .eyebrow::before { background: var(--accent); }

/* Form submit inherits .btn-primary (yellow) automatically */

/* Footer language active + small touches stay blue for balance */
