/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
html, body { max-width: 100vw; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a202c;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; }
button { cursor: pointer; }

/* ===== VARIABLES ===== */
:root {
  --navy: #1e2a3a;
  --navy-light: #2d3b4e;
  --orange: #e8792b;
  --orange-hover: #d06820;
  --accent: #e8792b;
  --accent-hover: #d06820;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --max-w: 1400px;
  --header-h: 120px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
p { color: var(--gray-600); }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; box-sizing: border-box; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 12px;
  font-weight: 600; font-size: .9375rem;
  transition: all .2s ease;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; font-size: .8125rem; padding: 12px 16px; }
}
.btn-primary {
  background: var(--orange); color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }
.btn-dark {
  background: var(--navy); color: var(--white);
  border: 2px solid var(--navy);
}
.btn-dark:hover { background: var(--navy-light); border-color: var(--navy-light); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--white);
}
.btn-white:hover { background: var(--gray-100); }
.btn-sm { padding: 8px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
  flex-wrap: nowrap;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo img { height: 44px; width: auto; }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: 2px;
}
.logo-sub { font-size: .65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.header-nav { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-nav a {
  font-size: .8125rem; font-weight: 500; color: var(--gray-700);
  transition: color .2s; white-space: nowrap;
}
.header-nav a:hover { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-social { display: flex; align-items: center; gap: 4px; }
.header-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); transition: color .2s;
}
.header-social a:hover { color: var(--orange); }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: .875rem; color: var(--navy);
  white-space: nowrap; flex-shrink: 0;
}
.header-phone svg { color: var(--orange); }
.header-phone svg { width: 18px; height: 18px; }
.header-cta .btn {
  font-size: .8125rem; padding: 10px 24px;
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(232,121,43,.3);
}
.header-cta .btn:hover { background: var(--orange-hover); border-color: var(--orange-hover); box-shadow: 0 4px 16px rgba(232,121,43,.4); }
.lang-switch {
  font-size: .8125rem; font-weight: 600; color: var(--gray-500);
  background: var(--gray-100); padding: 6px 12px; border-radius: 6px;
}

/* Services nav bar */
.services-nav {
  background: var(--navy);
  overflow: visible;
  position: relative;
  z-index: 50;
}
.services-nav-inner {
  display: flex; align-items: center;
  gap: 0;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0;
  overflow: visible;
}
.services-nav a {
  display: flex; align-items: center; gap: 4px;
  padding: 14px 20px;
  font-size: .8125rem; font-weight: 500;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  transition: background .2s, color .2s;
  position: relative;
}
.services-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.services-nav a.active { color: var(--orange); background: rgba(255,255,255,.05); }
.services-nav a svg { width: 14px; height: 14px; opacity: .6; }

/* Dropdown */
.dropdown { position: relative; z-index: 60; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,.2); padding: 8px 0;
  min-width: 300px; z-index: 999;
  max-height: 80vh; overflow-y: auto;
}
.dropdown:hover > .dropdown-menu,
.dropdown.open > .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: .875rem; color: var(--gray-700);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--navy); }

/* Mobile menu */
.mobile-toggle {
  display: none; background: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.mobile-toggle span {
  width: 24px; height: 2px; background: var(--navy);
  transition: all .3s;
}

/* ===== CALCULATOR ===== */
.calculator-section { padding: 32px 0; background: var(--gray-50); }
.calculator-widget {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: 20px;
  padding: 36px; border: 2px solid rgba(232,121,43,.15);
  box-shadow: 0 4px 20px rgba(232,121,43,.06);
}
.calculator-header { text-align: center; margin-bottom: 24px; }
.calculator-header h2 { font-size: 1.5rem; margin-bottom: 8px; }
.calculator-header p { font-size: .875rem; color: var(--gray-500); }
.calc-selects {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.calc-select-group label {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 6px;
}
.calc-select-group select {
  width: 100%; padding: 14px 16px; border: 2px solid var(--gray-200);
  border-radius: 12px; font-size: .9375rem; color: var(--navy);
  background: var(--white); cursor: pointer; transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.calc-select-group select:focus { border-color: var(--orange); outline: none; }

@media (max-width: 1400px) {
  .calc-selects { grid-template-columns: 1fr; gap: 12px; }
}
.calculator-result {
  margin-top: 20px; padding: 20px; border-radius: 16px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #86efac;
}
.calc-result-name {
  text-align: center; font-size: .8125rem; font-weight: 600;
  color: var(--navy); margin-bottom: 14px;
}
.calc-result-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 14px;
}
.calc-result-diag, .calc-result-repair {
  border-radius: 12px; padding: 14px 10px; text-align: center;
}
.calc-result-diag {
  background: #f8fafc; border: 1px solid #e2e8f0;
}
.calc-result-repair {
  background: linear-gradient(135deg, #fff7ed, #fef3c7); border: 1px solid #fed7aa;
}
.calc-result-label {
  font-size: .625rem; text-transform: uppercase; letter-spacing: .5px;
  color: #94a3b8; margin-bottom: 4px;
}
.calc-result-repair .calc-result-label { color: #92400e; }
.calc-result-price {
  font-size: 1.125rem; font-weight: 800; color: var(--navy);
  white-space: nowrap;
}
.calc-result-note {
  font-size: .5625rem; color: #94a3b8; margin-top: 2px;
}
.calc-result-repair .calc-result-note { color: #92400e; }
/* 3 packages */
.calc-packages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-bottom: 12px;
}
.calc-pkg {
  border-radius: 10px; padding: 10px 6px; text-align: center;
  background: #f8fafc; border: 1px solid #e2e8f0;
  position: relative; overflow: hidden;
}
.calc-pkg-std {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 2px solid var(--orange);
}
.calc-pkg-cap {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd;
}
.calc-pkg-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: .5625rem;
  padding: 2px 10px; border-radius: 10px; font-weight: 700;
  white-space: nowrap;
}
.calc-pkg-icon { font-size: 1.25rem; margin-bottom: 4px; }
.calc-pkg-title {
  font-size: .5625rem; font-weight: 700; color: var(--navy);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: .3px;
}
.calc-pkg-price {
  font-size: .875rem; font-weight: 800; color: var(--navy);
  white-space: nowrap; margin-bottom: 4px;
}
.calc-pkg-desc {
  font-size: .5rem; color: #64748b; line-height: 1.3;
}
.calc-result-cta {
  text-align: center;
}
.calc-result-cta .btn {
  width: 100%; max-width: 400px; justify-content: center;
}

@media (max-width: 1600px) {
  .calc-packages { grid-template-columns: 1fr; gap: 6px; }
  .calc-pkg {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 12px; text-align: left; border-radius: 10px;
  }
  .calc-pkg-icon { font-size: 1.25rem; margin-bottom: 0; flex-shrink: 0; }
  .calc-pkg-title { font-size: .625rem; margin-bottom: 0; white-space: nowrap; }
  .calc-pkg-price { font-size: .8125rem; margin-bottom: 0; margin-left: auto; white-space: nowrap; flex-shrink: 0; }
  .calc-pkg-desc { display: none; }
  .calc-pkg-badge {
    position: static; transform: none;
    margin-left: 6px; display: inline-block; flex-shrink: 0;
    font-size: .5rem; padding: 2px 6px;
  }
}
@media (max-width: 420px) {
  .calc-pkg { padding: 10px 8px; gap: 6px; }
  .calc-pkg-icon { font-size: 1rem; }
  .calc-pkg-title { font-size: .5625rem; }
  .calc-pkg-price { font-size: .75rem; }
  .calc-pkg-badge { display: none; }
  .calc-pkg-std { border-width: 2px; }
  .hero-calculator .calc-selects { grid-template-columns: 1fr; }
}

@media (max-width: 1400px) {
  .calculator-widget { padding: 24px 16px; }
  .calculator-input-wrap { flex-direction: column; }
  .calculator-input-wrap .btn { width: 100%; justify-content: center; }
}

/* ===== LOAD MORE ===== */
.load-more-wrap { text-align: center; margin-top: 16px; }
.load-more-btn {
  width: 100%; max-width: 400px; justify-content: center;
  border-color: var(--orange); color: var(--orange);
  font-weight: 700;
}
.load-more-btn:hover { background: var(--orange); color: var(--white); }
@media (max-width: 1400px) {
  .service-hidden { display: none; }
  .service-hidden.show { display: flex; }
  .load-more-wrap.hidden { display: none; }
}
@media (min-width: 769px) {
  .service-hidden { display: flex !important; }
  .load-more-wrap { display: none; }
}

/* ===== HERO (desktop + mobile) ===== */
.mini-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3555 40%, #2d4a6f 100%);
  padding: 28px 0;
  position: relative; overflow: hidden;
}
.mini-hero::before {
  content: ''; position: absolute; top: -30%; right: 5%;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,43,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== HERO SEO (H1) ===== */
.hero-seo {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3555 50%, #2d4a6f 100%);
  padding: 48px 0 12px;
  text-align: center;
}
.hero-seo h1 {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 12px;
  font-weight: 800;
}
.hero-seo-sub {
  color: rgba(255,255,255,.75);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-seo { padding: 32px 0 8px; }
}

/* ===== CATALOG SEARCH WIDGET ===== */
.catalog-search-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3555 40%, #2d4a6f 100%);
  padding: 0 0 24px;
  position: relative; overflow: visible;
  z-index: 100;
}
.catalog-search-section::before {
  content: ''; position: absolute; top: -30%; right: 5%;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,43,.08) 0%, transparent 70%);
  pointer-events: none;
}
.catalog-search-widget {
  max-width: 580px; margin: 0 auto; text-align: center;
}
.catalog-search-title {
  font-size: 1.375rem; font-weight: 800; color: var(--white); margin-bottom: 6px;
}
.catalog-search-subtitle {
  font-size: .8125rem; color: rgba(255,255,255,.45); margin-bottom: 16px; line-height: 1.5;
}
.catalog-search-input-wrap {
  display: flex; gap: 0; margin-bottom: 8px;
  background: var(--white); border: 2px solid var(--white);
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.catalog-search-input-wrap input {
  flex: 1; padding: 16px 18px; border: none;
  font-size: .9375rem; color: var(--navy);
  background: transparent;
}
.catalog-search-input-wrap input::placeholder { color: var(--gray-400); }
.catalog-search-input-wrap:focus-within { border-color: var(--orange); }
.catalog-search-input-wrap button {
  display: flex; align-items: center; gap: 6px;
  padding: 16px 28px; border-radius: 0;
  background: var(--orange); color: var(--white);
  font-weight: 700; font-size: .9375rem;
  transition: background .2s; white-space: nowrap;
  flex-shrink: 0;
}
.catalog-search-input-wrap button:hover { background: var(--orange-hover); }

/* Suggestions dropdown */
.catalog-suggestions {
  text-align: left; position: relative; z-index: 200;
}
.catalog-suggestions-list {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2); overflow: hidden;
}
.catalog-suggestion-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer;
  transition: background .15s; border-bottom: 1px solid var(--gray-100);
}
.catalog-suggestion-item:hover { background: var(--gray-50); }
.catalog-suggestion-item:last-child { border-bottom: none; }
.catalog-suggestion-num { font-weight: 700; color: var(--navy); font-size: .9375rem; }
.catalog-suggestion-info { font-size: .75rem; color: var(--gray-500); }
.catalog-suggestion-cnt { font-size: .6875rem; color: var(--gray-400); white-space: nowrap; }

/* Result card */
.catalog-result { margin-top: 16px; position: relative; z-index: 150; }
.catalog-result:empty { display: none; }
.catalog-result-card {
  background: var(--white); border-radius: 16px;
  padding: 24px; box-shadow: 0 8px 32px rgba(0,0,0,.12);
  text-align: left;
}
.catalog-result-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.catalog-result-name {
  font-size: 1rem; font-weight: 700; color: var(--navy);
}
.catalog-result-badge {
  font-size: .6875rem; color: var(--gray-500); background: var(--gray-100);
  padding: 4px 10px; border-radius: 20px;
}
.catalog-result-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 16px; align-items: start;
}
.catalog-tier {
  border-radius: 12px; padding: 16px 12px; text-align: center;
}
.catalog-tier-diag {
  background: var(--gray-50); border: 1px solid var(--gray-200);
}
.catalog-tier-std {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 2px solid var(--orange); position: relative;
}
.catalog-tier-full {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd;
}
.catalog-tier-label {
  font-size: .5625rem; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 4px;
}
.catalog-tier-diag .catalog-tier-label { color: var(--gray-500); }
.catalog-tier-std .catalog-tier-label { color: #92400e; }
.catalog-tier-full .catalog-tier-label { color: #1e40af; }
.catalog-tier-icon { font-size: 1.25rem; margin-bottom: 4px; }
.catalog-tier-price {
  font-size: 1.125rem; font-weight: 800; color: var(--navy); white-space: nowrap;
}
.catalog-tier-from {
  font-size: .625rem; color: var(--gray-400); margin-top: 2px;
}
.catalog-tier-popular {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: .5625rem;
  padding: 2px 10px; border-radius: 10px; font-weight: 700; white-space: nowrap;
}
/* VIN block */
.catalog-vin-block { margin-top: 14px; text-align: center; }
.catalog-vin-toggle {
  background: var(--orange); border: none;
  color: var(--white); padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: .8125rem; cursor: pointer; white-space: nowrap;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(232,121,43,.3);
}
.catalog-vin-toggle:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 16px rgba(232,121,43,.4);
}
.catalog-vin-toggle b { font-weight: 700; }
.catalog-vin-form {
  display: none; margin-top: 16px; padding: 20px;
  background: rgba(255,255,255,.08); border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
}
.catalog-vin-form.visible { display: block; }
.catalog-vin-hint {
  font-size: .8125rem; color: rgba(255,255,255,.5); margin-bottom: 12px; line-height: 1.5;
}
.catalog-vin-form input {
  width: 100%; padding: 12px 16px; margin-bottom: 8px;
  border: 2px solid rgba(255,255,255,.15); border-radius: var(--radius);
  font-size: .9375rem; color: var(--white);
  background: rgba(255,255,255,.08);
}
.catalog-vin-form input::placeholder { color: rgba(255,255,255,.35); }
.catalog-vin-form input:focus { border-color: var(--orange); outline: none; }
.catalog-vin-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
#vinResult { margin-top: 10px; font-size: .875rem; }

/* Diagnostic note under price */
.catalog-tier-diag-note {
  font-size: .6875rem; color: var(--gray-500); margin-top: 4px; line-height: 1.3;
}

/* Tier toggle & details */
.catalog-tier.has-details { cursor: pointer; }
.catalog-tier-toggle {
  font-size: .625rem; color: var(--orange); font-weight: 600;
  margin-top: 6px; transition: transform .2s;
}
.catalog-tier.expanded .catalog-tier-toggle { display: none; }
.catalog-tier-details {
  display: none;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align: left;
}
.catalog-tier.expanded .catalog-tier-details { display: block; }
.tier-detail-svc {
  display: block; font-size: .6875rem; color: var(--gray-700);
  padding: 2px 0; line-height: 1.4;
}
.tier-detail-mat-label {
  font-size: .5625rem; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .5px;
  margin-top: 6px; margin-bottom: 2px;
}
.tier-detail-mat {
  display: block; font-size: .625rem; color: var(--gray-500);
  padding: 1px 0; line-height: 1.3;
}

/* Trust badges */
.catalog-result-trust {
  display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center;
  margin-bottom: 16px; padding: 12px; background: var(--gray-50);
  border-radius: var(--radius-sm);
}
.catalog-result-trust span {
  font-size: .75rem; color: var(--gray-600); white-space: nowrap;
}

.catalog-result-cta {
  display: flex; gap: 8px; text-align: center;
}
.catalog-result-cta .btn {
  flex: 1; justify-content: center; padding: 14px;
  font-size: .9375rem;
}
.catalog-call-btn { font-size: .875rem !important; }
.catalog-result-note {
  text-align: center; margin-top: 10px;
  font-size: .6875rem; color: var(--gray-400);
}

@media (max-width: 768px) {
  .catalog-result-cta { flex-direction: column; }
  .catalog-result-trust { gap: 6px 12px; }
  .catalog-result-trust span { font-size: .6875rem; }
}

/* Mobile catalog search */
@media (max-width: 768px) {
  .catalog-search-section { padding: 20px 0 16px; }
  .catalog-search-title { font-size: 1.125rem; margin-bottom: 4px; }
  .catalog-search-subtitle { font-size: .75rem; margin-bottom: 12px; }
  .catalog-search-input-wrap button span { display: none; }
  .catalog-search-input-wrap button { padding: 12px 14px; }
  .catalog-search-input-wrap input { padding: 12px 14px; font-size: .875rem; }
  .catalog-result-tiers { grid-template-columns: 1fr; gap: 8px; }
  .catalog-tier { text-align: left; padding: 12px 14px; }
  .catalog-tier-icon { display: inline; margin-right: 4px; margin-bottom: 0; font-size: 1rem; }
  .catalog-tier-label { display: inline; margin-bottom: 0; font-size: .6875rem; }
  .catalog-tier-price { font-size: 1rem; margin-top: 4px; }
  .catalog-tier-from { display: none; }
  .catalog-tier-popular { top: -8px; }
  .catalog-tier-details { margin-top: 8px; padding-top: 8px; }
  .tier-detail-svc { font-size: .75rem; }
}

/* ===== CALCULATOR STRIP (under services nav) ===== */
.calc-strip {
  background: var(--navy); padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.calc-strip-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: nowrap;
}
.calc-strip-label {
  font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.calc-strip-row select {
  padding: 7px 28px 7px 10px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; font-size: .8125rem; color: var(--white);
  background: rgba(255,255,255,.06); cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='rgba(255,255,255,0.3)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}
.calc-strip-row select:focus { border-color: var(--orange); outline: none; }
.calc-strip-row select option { color: var(--navy); background: var(--white); }

/* Inline results */
.calc-strip-result { display: flex; align-items: center; gap: 6px; flex: 1; }
.calc-strip-result:empty { display: none; }
.calc-strip-result .calc-result-name { display: none; }
.calc-strip-result .calc-packages {
  display: flex; gap: 6px; margin: 0; flex: 1;
}
.calc-strip-result .calc-pkg {
  flex: 1; padding: 5px 8px; border-radius: 6px;
  display: flex; align-items: center; gap: 6px; text-align: left;
}
.calc-strip-result .calc-pkg-icon { font-size: .75rem; margin: 0; flex-shrink: 0; }
.calc-strip-result .calc-pkg-title { font-size: .5rem; margin: 0; white-space: nowrap; }
.calc-strip-result .calc-pkg-price { font-size: .6875rem; margin: 0 0 0 auto; white-space: nowrap; }
.calc-strip-result .calc-pkg-desc { display: none; }
.calc-strip-result .calc-pkg-badge {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  font-size: .375rem; padding: 1px 5px;
}
.calc-strip-result .calc-pkg-std { position: relative; }
.calc-strip-result .calc-result-cta { flex-shrink: 0; }
.calc-strip-result .calc-result-cta .btn { font-size: .6875rem; padding: 5px 12px; }

/* Mobile */
@media (max-width: 1400px) {
  .calc-strip { padding: 10px 0; }
  .calc-strip-row { flex-wrap: wrap; }
  .calc-strip-label { width: 100%; font-size: .75rem; }
  .calc-strip-row select { flex: 1; min-width: 120px; }
  .calc-strip-result { width: 100%; flex-direction: column; margin-top: 8px; }
  .calc-strip-result .calc-packages { width: 100%; }
  .calc-strip-result .calc-result-cta { width: 100%; }
  .calc-strip-result .calc-result-cta .btn { width: 100%; justify-content: center; }
}

/* Hero calculator */
.hero-calculator {
  background: var(--white); border-radius: 16px;
  padding: 20px; box-shadow: 0 6px 24px rgba(0,0,0,.12);
  overflow: hidden;
}
.hero-calc-title {
  font-size: .9375rem; font-weight: 700; color: var(--navy);
  margin-bottom: 12px;
}
.hero-calculator .calc-selects { grid-template-columns: 1fr; gap: 10px; }
.hero-calculator .calc-select-group label { font-size: .625rem; margin-bottom: 4px; }
.hero-calculator .calc-select-group select { padding: 10px 12px; font-size: .8125rem; border-radius: 10px; }
.hero-calculator .calculator-result { margin-top: 12px; padding: 12px; border-radius: 12px; }
.hero-calculator .calc-packages { gap: 4px; }
.hero-calculator .calc-pkg { padding: 8px 4px; border-radius: 8px; }
.hero-calculator .calc-pkg-icon { font-size: .875rem; margin-bottom: 2px; }
.hero-calculator .calc-pkg-title { font-size: .5rem; }
.hero-calculator .calc-pkg-price { font-size: .6875rem; }
.hero-calculator .calc-pkg-desc { display: none; }
.hero-calculator .calc-pkg-badge { font-size: .4375rem; padding: 1px 6px; top: -6px; }
.hero-calculator .calc-result-name { font-size: .6875rem; margin-bottom: 6px; }
.hero-calculator .calc-result-cta .btn { font-size: .6875rem; padding: 8px; }
.desktop-hero-text {
  display: flex; flex-direction: column; justify-content: center;
}
.desktop-hero-text h1 {
  font-size: 1.625rem; font-weight: 800;
  color: var(--white); margin-bottom: 8px;
}
.desktop-hero-text p {
  font-size: .8125rem; color: rgba(255,255,255,.5);
  margin-bottom: 16px; line-height: 1.5; max-width: 460px;
}
.desktop-hero-actions { display: flex; gap: 10px; justify-content: center; }
.desktop-hero-actions .btn { font-size: .8125rem; padding: 10px 28px; }
.desktop-hero-actions .btn-primary { box-shadow: 0 3px 12px rgba(232,121,43,.3); }

/* ===== AFTER-HOURS POPUP ===== */
.ah-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.6); display: flex;
  align-items: center; justify-content: center; padding: 20px;
}
.ah-popup {
  background: var(--orange); border-radius: 24px;
  padding: 40px; max-width: 480px; width: 100%;
  position: relative; text-align: center;
}
.ah-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 2rem;
  color: rgba(0,0,0,.3); cursor: pointer;
}
.ah-icon { font-size: 3rem; margin-bottom: 12px; }
.ah-popup h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  margin-bottom: 12px; line-height: 1.2;
}
.ah-popup p {
  font-size: .9375rem; color: rgba(30,42,58,.7);
  margin-bottom: 20px; line-height: 1.5;
}
.ah-form {
  display: flex; gap: 8px;
}
.ah-form input {
  flex: 1; padding: 14px 16px; border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px; font-size: 1rem; background: rgba(255,255,255,.9);
}
.ah-form .btn {
  background: var(--navy); border-color: var(--navy);
  color: var(--white); white-space: nowrap; padding: 14px 24px;
}
.ah-alt {
  margin-top: 12px; font-size: .8125rem; color: rgba(30,42,58,.5);
}
.ah-alt a { color: var(--navy); font-weight: 600; text-decoration: underline; }

@media (max-width: 480px) {
  .ah-popup { padding: 28px 20px; }
  .ah-popup h2 { font-size: 1.25rem; }
  .ah-form { flex-direction: column; }
}

/* Trust line */
.hero-trust-line {
  margin-top: 16px; font-size: .75rem;
  color: rgba(255,255,255,.4); display: flex; gap: 4px; flex-wrap: wrap;
  justify-content: center;
}
.hero-trust-line span:first-child { color: #f59e0b; }

/* Tablet — stack vertically */
@media (max-width: 1400px) {
  .desktop-hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-calculator { max-width: 100%; }
  .hero-calculator .calc-selects { grid-template-columns: 1fr 1fr; }
  .mini-hero { padding: 20px 16px; }
  .mini-hero .container { padding: 0; }
  .desktop-hero-text h1 { font-size: 1.25rem; margin-bottom: 6px; }
  .desktop-hero-text p { font-size: .8125rem; margin-bottom: 10px; }
  .desktop-hero-actions { justify-content: flex-start; }
  .hero-trust-line { justify-content: flex-start; }
}

/* Mobile — compact hero, hide extras */
@media (max-width: 768px) {
  .desktop-hero-grid { grid-template-columns: 1fr; gap: 12px; }
  .mini-hero { padding: 16px; }
  .mini-hero .container { padding: 0; }
  .mini-hero::before { display: none; }
  .desktop-hero-text h1 { font-size: 1.125rem; margin-bottom: 4px; }
  .desktop-hero-text p { font-size: .75rem; margin: 0 0 10px; color: rgba(255,255,255,.5); }
  .desktop-hero-actions { flex-direction: row; gap: 8px; }
  .desktop-hero-actions .btn { flex: 1; justify-content: center; padding: 10px 8px; font-size: .8125rem; }
  .desktop-hero-actions .btn-outline { display: none; }
  /* Calculator in hero — stack on mobile */
  .hero-calculator {
    min-width: 0; max-width: none;
    padding: 20px; border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
  }
  .hero-calc-title { font-size: .9375rem; margin-bottom: 12px; }
  .hero-trust-line { display: none; }
  .calculator-section { padding: 20px 0; }
  .calculator-widget { padding: 20px 16px; border-radius: 16px; }
  .calculator-header h2 { font-size: 1.125rem; }
  .calculator-header p { font-size: .75rem; }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(165deg, #eef2f7 0%, #dce4ee 100%);
}
.hero h1 { color: var(--navy); }
.hero-badge { color: var(--orange); }
.hero-text { color: var(--gray-600); }
.hero-advantage { color: var(--gray-700); }
.hero-advantage svg { color: var(--orange); }
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-block; font-size: .75rem; font-weight: 600;
  color: var(--gray-600); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.hero h1 { margin-bottom: 20px; }
.hero-text { font-size: 1.0625rem; color: var(--gray-600); margin-bottom: 32px; line-height: 1.7; }
.hero-image {
  background: var(--white); border-radius: var(--radius-lg);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: .875rem;
  overflow: hidden; padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.hero-image img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  width: auto; height: auto;
}
.hero-advantages {
  display: flex; gap: 32px; margin-top: 40px;
}
.hero-advantage {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--gray-600);
}
.hero-advantage svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }
.section-navy { background: #1a2540; color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.7); }
.section-navy .section-badge { color: var(--orange); }
.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 48px;
}
.section-badge {
  display: inline-block; font-size: .75rem; font-weight: 600;
  color: var(--gray-500); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1rem; }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid; gap: 24px;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: 16px;
  padding: 28px; border: 1px solid var(--gray-200);
  transition: all .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-3px); border-color: rgba(232,121,43,.2); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,121,43,.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--orange);
}
.card h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.card p { font-size: .875rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .875rem; font-weight: 600; color: var(--navy);
  margin-top: 16px;
}
.card-link:hover { gap: 8px; }

/* Service card with image */
.service-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(232,121,43,.15);
  transition: all .25s ease;
  box-shadow: 0 2px 12px rgba(232,121,43,.06);
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232,121,43,.15);
  transform: translateY(-4px);
}
.service-card-img {
  aspect-ratio: 4/3; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: .75rem;
  overflow: hidden; padding: 24px;
}
.service-card-img img {
  max-width: 85%; max-height: 85%; object-fit: contain;
  width: auto; height: auto;
  transition: transform .3s;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 16px 20px 20px; }
.service-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); }
.service-card p { font-size: .8125rem; margin-bottom: 12px; }
.card-link { color: var(--orange); font-weight: 600; }

/* ===== STEPS / PROCESS ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { text-align: center; position: relative; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .875rem; }

/* ===== PRICING ===== */
.pricing-block {
  background: linear-gradient(135deg, #f8f4f0 0%, #fef8f4 100%);
  border-radius: 20px; border: 1px solid rgba(232,121,43,.1);
  padding: 48px; max-width: 800px; margin: 0 auto;
  box-sizing: border-box; overflow: hidden;
  box-shadow: 0 4px 16px rgba(232,121,43,.06);
}
@media (max-width: 480px) {
  .pricing-block { padding: 20px 14px; border-radius: 12px; }
}
.pricing-list { margin: 24px 0; }
.pricing-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  font-size: .9375rem; color: var(--gray-700);
}
.pricing-item svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.pricing-note { font-size: .875rem; color: var(--gray-500); margin-top: 16px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; width: 100%; background: none;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  text-align: left; cursor: pointer;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--orange); }
.faq-question svg {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform .3s; color: var(--orange);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: .9375rem; color: var(--gray-600); line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #c85a10 100%);
  padding: 48px 0;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; bottom: -40%; left: 0;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 24px; position: relative; }
.cta-section .btn-white { color: var(--orange); font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.cta-section .btn-outline { border-color: var(--white); color: var(--white); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACTS SECTION ===== */
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
}
.contact-card h3 { margin-bottom: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .9375rem; color: var(--gray-600);
}
.contact-info-item svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; margin-top: 3px; }
.contact-map {
  width: 100%; height: 250px; border-radius: var(--radius);
  background: var(--gray-200); margin-top: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: .875rem;
  overflow: hidden;
}
.contact-socials {
  display: flex; gap: 12px; margin-top: 20px;
}
.contact-socials a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); transition: all .2s;
}
.contact-socials a:hover { background: var(--navy); color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 60px 0 0;
  color: var(--gray-600);
}
.footer h4 { color: var(--navy); }
.footer-tagline { color: var(--gray-500); }
.footer-links a { color: var(--gray-600); }
.footer-links a:hover { color: var(--orange); }
.footer-contacts { color: var(--gray-600); }
.footer-contact-item { color: var(--gray-600); }
.footer-contact-item svg { color: var(--orange); }
.footer-contact-item a { color: var(--gray-700); }
.footer-social a { border-color: var(--gray-300); color: var(--gray-500); }
.footer-social a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.footer-google-rating { color: var(--navy); }
.footer-google-text { color: var(--gray-500); }
.footer-badge { background: var(--white); border-color: var(--gray-200); color: var(--gray-600); }
.footer-director .btn { color: var(--navy); border-color: var(--gray-300); }
.footer-director .btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-bottom { border-top-color: var(--gray-200); color: var(--gray-400); }
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--orange); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-text { margin-bottom: 12px; }
.footer-tagline { font-size: .875rem; color: var(--gray-500); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: all .2s;
}
.footer-social a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.footer-google {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-google-stars { color: #f59e0b; font-size: 1rem; }
.footer-google-text { font-size: .8125rem; color: var(--gray-500); }
.footer-google-rating { font-weight: 700; color: var(--navy); }
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: .75rem; color: var(--gray-600);
  border: 1px solid var(--gray-200);
}
.footer h4 {
  font-size: .9375rem; margin-bottom: 20px; color: var(--navy);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .875rem; color: var(--gray-600);
  transition: color .2s;
}
.footer-links a:hover { color: var(--navy); }
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--gray-600);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; margin-top: 3px; }
.footer-director {
  margin-top: 24px;
}
.footer-director .btn { font-size: .8125rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; margin-top: 48px;
  border-top: 1px solid var(--gray-200);
  font-size: .8125rem; color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--navy); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 16px 0;
  font-size: .8125rem; color: var(--gray-400);
}
.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span { margin: 0 6px; }

/* ===== GOOGLE REVIEWS WIDGET ===== */
.google-reviews-widget {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.google-reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-100);
}
.google-reviews-logo {
  display: flex; align-items: center; gap: 12px;
}
.google-reviews-logo strong { font-size: 1rem; color: var(--navy); display: block; }
.google-reviews-stars { display: flex; align-items: center; gap: 6px; }
.google-reviews-rating { font-weight: 800; font-size: 1.125rem; color: var(--navy); }
.google-reviews-count { font-size: .75rem; color: var(--gray-500); }
.google-map-embed { padding: 16px; }
.google-map-embed iframe { border-radius: 12px; }

@media (max-width: 1400px) {
  .google-reviews-header { flex-direction: column; gap: 12px; align-items: flex-start; padding: 16px; }
  .google-map-embed { padding: 0 0 0 0; }
  .google-map-embed iframe { border-radius: 0 0 12px 12px; height: 220px; }
  .google-reviews-widget { border-radius: 16px; margin: 0 -4px; }
}

/* ===== REVIEWS ===== */
.reviews-slider { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px; }
.review-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px;
  min-width: 320px; flex-shrink: 0;
}
.review-stars { color: #f59e0b; margin-bottom: 12px; }
.review-text { font-size: .875rem; color: var(--gray-600); margin-bottom: 16px; }
.review-author { font-size: .8125rem; font-weight: 600; color: var(--navy); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3; background: var(--gray-100); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: .75rem;
  padding: 12px;
}
.gallery-item img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  width: auto; height: auto;
}

/* ===== ERROR CODES GRID ===== */
.codes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.code-card {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--gray-200);
}
.code-card h4 { font-size: .9375rem; margin-bottom: 8px; color: var(--navy); }
.code-card p { font-size: .8125rem; }

/* ===== 404 PAGE ===== */
.page-404 {
  text-align: center; padding: 100px 0;
}
.page-404 h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.page-404 p { max-width: 500px; margin: 0 auto 32px; }
.page-404-buttons { display: flex; gap: 16px; justify-content: center; }

/* ===== THANK YOU PAGE ===== */
.thank-you {
  text-align: center; padding: 100px 0;
}
.thank-you h1 { margin-bottom: 16px; }
.thank-you p { max-width: 500px; margin: 0 auto 32px; }

/* ===== PRIVACY POLICY ===== */
.privacy-content {
  max-width: 800px; margin: 0 auto;
  padding: 48px 0;
}
.privacy-content h1 { margin-bottom: 32px; }
.privacy-content h2 { font-size: 1.25rem; margin: 32px 0 12px; }
.privacy-content p { margin-bottom: 16px; font-size: .9375rem; line-height: 1.8; }
.privacy-content ul { margin: 12px 0 20px 24px; }
.privacy-content li {
  font-size: .9375rem; color: var(--gray-600);
  margin-bottom: 8px; position: relative; padding-left: 16px;
}
.privacy-content li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); }

/* ===== ABOUT PAGE ===== */
.about-hero { padding: 60px 0; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin: 48px 0;
}
.stat-item { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--navy); }
.stat-label { font-size: .875rem; color: var(--gray-500); }

/* ===== PARTNERS PAGE ===== */
.partners-benefits {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 200;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; max-width: 600px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 1.5rem;
}
.modal h2 { margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: .9375rem; color: var(--navy);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== CHECK LIST ===== */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9375rem; color: var(--gray-700);
}
.check-item svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ===== SPLIT SECTION ===== */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.split-image {
  background: var(--gray-200); border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: .875rem;
}

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

/* Tablet landscape / small laptop */
@media (max-width: 1400px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-height: 400px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
  .codes-grid { grid-template-columns: repeat(2, 1fr); }

  /* Header tablet */
  .header-social { display: none; }
  .header-nav { gap: 12px; }
  .header-nav a { font-size: .75rem; }
  .header-phone { font-size: .8125rem; }
  .header-cta .btn { font-size: .75rem; padding: 8px 16px; }
  .lang-btn { padding: 4px 8px; font-size: .65rem; }
  .logo img { height: 26px; }

  /* Services nav scroll */
  .services-nav-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .services-nav a { padding: 12px 14px; font-size: .75rem; }
}

@media (max-width: 1400px) {
  :root { --header-h: auto; }

  /* === MOBILE/TABLET HEADER === */
  .header { border-bottom: none; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
  .header-top { padding: 10px 0; gap: 8px; justify-content: center; }
  .header-nav, .header-social, .header-cta { display: none; }
  .mobile-toggle { display: flex; width: 44px; height: 44px;
    border: 1px solid var(--gray-200); border-radius: 12px;
    background: var(--white); flex-shrink: 0; }
  .logo { flex: 1; min-width: 0; }
  .logo img { height: 56px; width: auto; }
  .lang-buttons { gap: 4px; }
  .lang-btn { padding: 0; font-size: .6rem; border-radius: 8px;
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; }
  .header-phone {
    font-size: 0; width: 44px; height: 44px;
    display: flex !important; align-items: center !important; justify-content: center !important;
    border: 2px solid var(--orange); border-radius: 12px; color: var(--orange);
    background: rgba(232,121,43,.05); flex-shrink: 0;
    padding: 0; gap: 0 !important;
  }
  .header-phone svg { display: block; width: 20px; height: 20px; margin: 0 auto; }
  .lang-buttons { flex-shrink: 0; }
  .header-actions { flex-shrink: 0; gap: 6px; }

  /* === HIDE services nav on mobile === */
  .services-nav { display: none; }

  /* === MOBILE CTA BAR === */
  .mobile-cta-bar {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--navy); padding: 10px 16px; gap: 12px;
  }
  .mobile-cta-bar p { color: var(--white); font-size: .8125rem; font-weight: 600; margin: 0; flex: 1; }
  .mobile-cta-bar .btn { font-size: .75rem; padding: 8px 16px;
    background: var(--orange); border-color: var(--orange); white-space: nowrap; }
  .mobile-cta-bar .close-bar {
    background: none; color: rgba(255,255,255,.6); font-size: 1.25rem;
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  }

  /* === HERO MOBILE === */
  .hero { padding: 20px 0 24px; background: linear-gradient(165deg, #eef2f7 0%, #dce4ee 100%); }
  .hero h1 { color: var(--navy); }
  .hero-badge { color: var(--orange); }
  .hero-text { color: var(--gray-600); }
  .hero-advantage { color: var(--gray-700); }
  .hero-image { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,.06); }

  /* Services landing — no top padding */
  .services-landing { padding-top: 12px !important; }
  .services-landing .section-header { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 24px; }
  .hero-badge { font-size: .65rem; margin-bottom: 8px; }
  .hero h1 { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.25; }
  .hero-text { font-size: .875rem; margin-bottom: 20px; line-height: 1.6; }
  .hero .btn-lg { width: 100%; justify-content: center; padding: 14px 24px; font-size: .9375rem; }
  .hero-advantages { flex-direction: column; gap: 8px; margin-top: 20px; }
  .hero-advantage { font-size: .8125rem; }
  .hero-image { aspect-ratio: 1/1; max-height: 260px; border-radius: 16px; padding: 16px; }

  /* === SERVICE CARDS MOBILE (white + orange border) === */
  .cards-grid-2, .cards-grid-3, .cards-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-card {
    border-radius: 20px; overflow: hidden;
    border: 2px solid rgba(232,121,43,.2);
    background: linear-gradient(180deg, #ffffff 0%, #fef8f4 100%);
    box-shadow: 0 4px 16px rgba(232,121,43,.08);
    aspect-ratio: 1/1;
    display: flex; flex-direction: column;
    transition: all .2s ease;
  }
  .service-card:active {
    border-color: var(--orange);
    box-shadow: 0 4px 24px rgba(232,121,43,.25);
    transform: scale(.97);
  }
  .service-card-img {
    flex: 1; padding: 8px;
    background: var(--white); aspect-ratio: auto;
    display: flex; align-items: center; justify-content: center;
    min-height: 0;
  }
  .service-card-img img {
    filter: none; background: transparent;
    max-height: 100%; max-width: 100%;
    width: 85%; height: auto;
    object-fit: contain;
  }
  .service-card-body {
    padding: 0 10px 12px; text-align: center; background: none;
  }
  .service-card h3 {
    font-size: .8125rem; color: var(--navy); margin: 0;
    font-weight: 700; line-height: 1.3;
  }
  .service-card p { display: none; }
  .service-card .card-link { display: none; }
  .service-card:hover { transform: none; }

  /* If odd number — center last card */
  .cards-grid .service-card:last-child:nth-child(odd),
  .cards-grid-3 .service-card:last-child:nth-child(odd),
  .cards-grid-4 .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1; max-width: 50%; margin: 0 auto;
  }

  /* === SECTIONS MOBILE === */
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 1.25rem; }
  .section-header p { font-size: .8125rem; }
  .section-badge { font-size: .65rem; }
  .card { padding: 20px; border-radius: 12px; }
  .card h3 { font-size: .9375rem; }
  .card p { font-size: .8125rem; }

  /* === STEPS MOBILE === */
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step { text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .step-num { margin: 0; flex-shrink: 0; width: 40px; height: 40px; font-size: 1rem; }
  .step h3 { font-size: .9375rem; margin-bottom: 4px; }
  .step p { font-size: .8125rem; }

  /* === PRICING MOBILE === */
  .pricing-block { padding: 20px 16px; border-radius: 12px; }
  .pricing-item { font-size: .8125rem; padding: 8px 0; }

  /* === FAQ MOBILE === */
  .faq-question { font-size: .875rem; padding: 16px 0; }
  .faq-answer-inner { font-size: .8125rem; }

  /* === CTA MOBILE === */
  .cta-section { padding: 32px 0; }
  .cta-section h2 { font-size: 1.25rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }

  /* === CONTACTS MOBILE === */
  .contacts-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 20px; }

  /* === FOOTER MOBILE === */
  .footer { padding: 0; border-top: none; background: var(--white); }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }

  /* Brand block */
  .footer-brand {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a6f 100%);
    padding: 28px 20px; text-align: center; border-radius: 0;
    margin: 0 -16px;
  }
  .footer-brand img { height: 28px; margin: 0 auto 10px; filter: brightness(0) invert(1); }
  .footer-tagline { color: rgba(255,255,255,.6) !important; font-size: .8125rem; }
  .footer-social { justify-content: center; gap: 10px; margin: 16px 0; }
  .footer-social a { border-color: rgba(255,255,255,.25) !important; color: rgba(255,255,255,.6) !important; width: 40px; height: 40px; }
  .footer-social a:hover { background: var(--orange) !important; border-color: var(--orange) !important; color: #fff !important; }
  .footer-google { justify-content: center; margin-bottom: 8px; }
  .footer-google-rating { color: var(--white) !important; font-size: 1.5rem; }
  .footer-google-text { color: rgba(255,255,255,.5) !important; }
  .footer-badge { display: none; }

  /* Services links */
  .footer-grid > div:nth-child(2) {
    padding: 20px 20px 16px; border-bottom: 1px solid var(--gray-100);
  }
  .footer-grid > div:nth-child(2) h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 12px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .footer-links a {
    font-size: .8125rem; padding: 6px 12px; margin: 2px;
    background: var(--gray-50); border-radius: 8px;
    color: var(--gray-700) !important;
  }
  .footer-links a:hover { background: var(--orange); color: var(--white) !important; }

  /* Contacts */
  .footer-grid > div:nth-child(3) { padding: 16px 20px 20px; }
  .footer-grid > div:nth-child(3) h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 12px; }
  .footer-contact-item { font-size: .875rem; }
  .footer-director { margin-top: 16px; }
  .footer-director .btn { width: 100%; justify-content: center; border-color: var(--orange) !important; color: var(--orange) !important; }

  .footer-bottom {
    flex-direction: column; gap: 6px; text-align: center;
    padding: 16px 20px; font-size: .75rem;
    background: var(--gray-50);
  }

  /* === OTHER === */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .codes-grid { grid-template-columns: 1fr; gap: 8px; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partners-benefits { grid-template-columns: 1fr; }
  .breadcrumbs { padding: 10px 0; font-size: .75rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.25rem; }
  .cards-grid-2, .cards-grid-3, .cards-grid-4 { gap: 8px; }
  .service-card h3 { font-size: .7rem; }
  .container { padding: 0 12px; }
  .pricing-block { padding: 16px 12px; }
  .btn-lg { padding: 12px 16px; font-size: .8125rem; }
  .header-top { padding: 8px 0; gap: 6px; }
  .logo img { height: 20px; }
  .lang-btn { width: 30px; height: 30px; font-size: .55rem; }
  .header-phone { width: 38px; height: 38px; }
  .mobile-toggle { width: 38px; height: 38px; }
  .section { padding: 32px 0; }
}

/* === MOBILE MENU (full screen, like avtivna) === */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 0;
  background: var(--white); z-index: 999;
  padding: 0; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.mobile-menu-header img { height: 28px; }
.mobile-menu-close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200); border-radius: 8px;
  background: none; font-size: 1.5rem; color: var(--gray-500); cursor: pointer;
}
.mobile-menu-lang {
  display: flex; justify-content: flex-end; padding: 8px 20px;
  background: var(--navy); gap: 6px; flex-shrink: 0;
}
.mobile-menu-lang .lang-btn {
  background: transparent; color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.3);
  padding: 5px 12px; font-size: .7rem;
}
.mobile-menu-lang .lang-btn.active {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.mobile-menu-list { padding: 0 20px; flex: 1; }
.mobile-menu-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; font-size: .9375rem; font-weight: 500;
  color: var(--gray-800); border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}
.mobile-menu-item svg { width: 22px; height: 22px; color: var(--navy); flex-shrink: 0; opacity: .5; }
.mobile-menu-item span { flex: 1; }
.mobile-menu-group { border-bottom: 1px solid var(--gray-100); }
.mobile-menu-group .mobile-menu-item { border-bottom: none; }
.mobile-sub-toggle {
  background: none; border: none; padding: 4px; cursor: pointer;
  color: var(--gray-400); transition: transform .2s;
}
.mobile-menu-group.open .mobile-sub-toggle { transform: rotate(180deg); }
.mobile-sub-menu {
  display: none; padding: 0 0 8px 36px;
}
.mobile-menu-group.open .mobile-sub-menu { display: block; }
.mobile-sub-menu a {
  display: block; padding: 8px 0; font-size: .8125rem;
  color: var(--gray-600); text-decoration: none;
  border-bottom: 1px solid var(--gray-50);
}
.mobile-sub-menu a:last-child { border-bottom: none; }
.mobile-sub-menu a:hover { color: var(--orange); }
.mobile-menu-bottom {
  padding: 12px 20px 24px; border-top: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0;
}
.mobile-menu-bottom .btn { justify-content: center; width: 100%; font-size: .875rem; padding: 14px; }

/* === FLOATING PHONE BUTTON === */
.float-phone {
  display: none; position: fixed; bottom: 20px; right: 16px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 20px rgba(232,121,43,.5);
  align-items: center; justify-content: center;
  transition: transform .2s;
  animation: pulse-phone 2s infinite;
}
.float-phone:hover { transform: scale(1.1); }
.float-phone svg { width: 22px; height: 22px; }
@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,121,43,.4); }
  50% { box-shadow: 0 4px 30px rgba(232,121,43,.7); }
}
@media (max-width: 1400px) {
  .float-phone { display: none; }
  .sticky-mobile-cta { display: block !important; }
}

/* === MOBILE CTA BAR (scroll-triggered, like avtivna) === */
.mobile-cta-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  background: var(--orange);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(-100%);
  transition: transform .3s ease;
  box-shadow: 0 4px 16px rgba(232,121,43,.3);
}
.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar.dismissed { display: none !important; }
.mobile-cta-bar p { color: var(--white); font-size: .8125rem; font-weight: 600; margin: 0; flex: 1; line-height: 1.3; }
.mobile-cta-bar .btn {
  font-size: .75rem; padding: 8px 16px;
  background: var(--white); border-color: var(--white); color: var(--orange);
  white-space: nowrap; font-weight: 700; flex-shrink: 0;
}
.mobile-cta-bar .close-bar {
  background: none; color: rgba(255,255,255,.7); font-size: 1.25rem;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer; border: none;
}
/* CTA bar visible on ALL screen sizes */

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp .5s ease forwards;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: .9375rem;
}
.comparison-table th {
  background: var(--gray-50); font-weight: 600; color: var(--navy);
}
.comparison-table td { color: var(--gray-600); }

/* ===== ROUTE MODAL ===== */
.route-modal .modal { max-width: 800px; }
.route-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.route-card { text-align: center; }
.route-card h3 { font-size: 1rem; margin-bottom: 8px; }
.route-card p { font-size: .8125rem; margin-bottom: 16px; }
.route-video {
  aspect-ratio: 9/16; background: var(--gray-200); border-radius: var(--radius);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
}

/* ===== CONTACTS PAGE ===== */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.social-link-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  padding: 32px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: .9375rem;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.social-link-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.messenger-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.messenger-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  padding: 32px 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.messenger-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .social-links-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .messenger-links { gap: 16px; }
  .messenger-card { padding: 24px 28px; }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0,0,0,.1);
  padding: 4px 8px calc(4px + env(safe-area-inset-bottom));
  z-index: 90;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-nav {
  display: flex; max-width: var(--max-w); margin: 0 auto;
}
.sticky-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px; font-size: .6875rem; color: var(--gray-600);
  text-decoration: none; transition: color .2s;
  background: none; border: none; cursor: pointer; position: relative;
}
.sticky-nav-item svg { color: var(--navy); }
.sticky-nav-item:active { color: var(--orange); }
.sticky-nav-item:active svg { color: var(--orange); }
.sticky-nav-menu { font-weight: 600; }
/* Messenger popup */
.sticky-msg-popup {
  display: none; position: absolute; bottom: 100%; right: 0;
  background: var(--white); border-radius: var(--radius); padding: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15); margin-bottom: 8px;
  min-width: 160px;
}
.sticky-msg-popup.show { display: flex; flex-direction: column; gap: 4px; }
.sticky-msg-popup a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: var(--navy);
  text-decoration: none; transition: background .15s;
}
.sticky-msg-popup a:hover { background: var(--gray-50); }

@media (max-width: 1400px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 70px; }
}

/* ===== LANGUAGE SWITCHER (custom) ===== */
.lang-buttons { display: flex; gap: 4px; align-items: center; }
.lang-btn {
  padding: 5px 10px; border-radius: 6px; font-size: .75rem;
  font-weight: 700; cursor: pointer; border: 1px solid var(--gray-300);
  background: var(--gray-100); color: var(--gray-600);
  transition: all .2s; text-transform: uppercase; letter-spacing: .5px;
}
.lang-btn:hover { border-color: var(--navy); color: var(--navy); }
.lang-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lang-btn[data-lang="ua"]::after { content: "UA"; }
.lang-btn[data-lang="ru"]::after { content: "RU"; }
.lang-btn[data-lang="en"]::after { content: "EN"; }
.lang-btn[data-lang="ua"]::after { content: "UA"; }
.lang-btn[data-lang="ru"]::after { content: "RU"; }
.lang-btn[data-lang="en"]::after { content: "EN"; }

/* Hide ALL Google Translate UI — keep only our custom buttons */
.goog-te-banner-frame { display: none !important; height: 0 !important; visibility: hidden !important; }
html { top: 0 !important; }
body { top: 0 !important; position: static !important; margin-top: 0 !important; }
body > .skiptranslate { display: none !important; height: 0 !important; visibility: hidden !important; overflow: hidden !important; }
body > .skiptranslate > iframe { display: none !important; height: 0 !important; }
body > .skiptranslate iframe { display: none !important; }
#google_translate_element { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.goog-te-gadget { font-size: 0 !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
iframe[id^="goog-"] { display: none !important; }

/* ===== PERFORMANCE: reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header, .footer, .services-nav, .sticky-mobile-cta,
  .modal-overlay, .mobile-menu, .btn { display: none !important; }
  body { color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .hero { padding: 20px 0; }
  .section { padding: 20px 0; }
}
