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

:root {
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --bg-soft: #eef4fa;
  --steel-dark: #f0f4f8;
  --steel-mid: #e8eef5;
  --graphite: #dde5ed;
  --graphite-dark: #d0dae4;
  --text: #333333;
  --text-muted: #5a6578;
  --text-subtle: #7a8699;
  --cream: #333333;
  --gold: #c9a84c;
  --blue: #0090ff;
  --blue-dark: #0070cc;
  --blue-light: #e8f4ff;
  --charcoal: #333333;
  --border: rgba(0, 144, 255, 0.15);
  --shadow: rgba(0, 60, 120, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-serif: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: color 0.25s; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 8vw; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 156px;
  padding: 0 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(255,255,255,0.96), rgba(255,255,255,0.88) 70%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo img {
  height: 140px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.navbar__nav { display: flex; align-items: center; gap: 32px; }
.navbar__nav a {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}
.navbar__nav a:hover, .navbar__nav a.active { color: var(--blue); }
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.3s;
}
.navbar__nav a:hover::after, .navbar__nav a.active::after { width: 100%; }
.navbar__phone {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue) !important;
  letter-spacing: 0.05em;
}
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: var(--bg);
  overflow: hidden;
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__zone-a {
  position: absolute;
  top: 0; left: 0;
  width: 62%; height: 100%;
  background: linear-gradient(165deg, #dedbdbb8 0%, #f5f9ff 55%, #eef6ff 100%);
  clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
}
.hero__zone-a::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to right, rgba(0,144,255,0.03) 0px, rgba(0,144,255,0.03) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}
.hero__zone-b {
  position: absolute;
  top: 0; right: 0;
  width: 48%; height: 100%;
  background: linear-gradient(165deg, #f8fbff 0%, #eef5fc 50%, #e3f0fa 100%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__zone-b::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,144,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__intersection {
  position: absolute;
  inset: 0;
  clip-path: polygon(56% 0, 68% 0, 50% 100%, 38% 100%);
  background: rgba(0,144,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: 50%; left: 58%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,144,255,0.12) 0%, rgba(0,144,255,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* 2-column content grid */
.hero__layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  height: 100%;
  width: 100%;
  padding: 108px 0 64px 8vw;
  box-sizing: border-box;
}

/* Left column */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  width: 100%;
  max-width: 520px;
  border-left: 2px solid var(--blue);
  padding-left: 28px;
  padding-right: 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--blue-light);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 20px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,144,255,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,144,255,0); }
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4px;
}
.hero__title-line {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 88px);
  color: var(--charcoal);
  line-height: 0.88;
  letter-spacing: 0.03em;
}
.hero__title-line--accent { color: var(--blue); }
.hero__subtitle-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-top: 14px;
  max-width: 420px;
  line-height: 1.8;
}
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-top: 20px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__actions .hero__cta-btn {
  display: inline-block;
  width: auto;
  padding: 16px 28px;
  margin-bottom: 0;
}
.hero__cta-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.hero__cta-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--blue);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.3s;
}
.hero__cta-link:hover {
  color: var(--blue);
}
.hero__cta-link:hover::after {
  transform: scaleX(1);
}
.hero__trust {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.hero__trust span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-left: 14px;
}
.hero__trust span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  border-radius: 1px;
}

/* Center column — CTA */
.hero__center {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.hero__cta-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  width: 280px;
  text-align: center;
  box-shadow:
    0 24px 64px var(--shadow),
    0 0 0 1px rgba(0,144,255,0.06) inset,
    0 0 40px rgba(0,144,255,0.06);
  position: relative;
  overflow: hidden;
}
.hero__cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}
.hero__cta-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  background: rgba(0,144,255,0.1);
  border: 1px solid rgba(0,144,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
}
.hero__cta-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 10px;
}
.hero__cta-phone {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--blue);
  display: block;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.hero__cta-phone:hover { color: var(--blue-dark); }
.hero__cta-btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,144,255,0.25);
}
.hero__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,144,255,0.35);
}
.hero__cta-note {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-subtle);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Right column — Full-cover slider + Stats */
.hero__right {
  align-self: center;
  width: 100%;
  min-width: 0;
  height: min(600px, calc(100vh - 160px));
  min-height: 420px;
}
.hero__visual {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  box-shadow:
    -24px 0 80px rgba(0, 60, 120, 0.15),
    0 0 0 1px rgba(0, 144, 255, 0.08);
  outline: none;
}
.hero__slider:focus-visible {
  box-shadow:
    -24px 0 80px rgba(0, 60, 120, 0.15),
    0 0 0 2px var(--blue);
}
.hero__slider::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--blue), var(--gold), var(--blue));
  z-index: 6;
  pointer-events: none;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.7s;
  z-index: 1;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero__slide.is-exiting {
  opacity: 0;
  z-index: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 6s ease-out;
  filter: brightness(0.92) contrast(1.05) saturate(1.08);
}
.hero__slide.is-active img {
  transform: scale(1);
}
.hero__slider:hover .hero__slide.is-active img {
  transform: scale(1.04);
}
.hero__slider-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 30, 50, 0.5) 0%, transparent 22%),
    linear-gradient(to top, rgba(15, 30, 50, 0.82) 0%, rgba(15, 30, 50, 0.2) 35%, transparent 60%),
    linear-gradient(to right, rgba(0, 144, 255, 0.06) 0%, transparent 35%);
  pointer-events: none;
  z-index: 3;
}
.hero__slide-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 12px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s 0.2s, transform 0.5s 0.2s;
}
.hero__slide.is-active .hero__slide-label {
  opacity: 1;
  transform: translateY(0);
}
.hero__slide-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero__slide-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s, background 0.25s, border-color 0.25s;
  cursor: pointer;
}
.hero__slider:hover .hero__arrow {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.hero__arrow:hover {
  background: rgba(0, 144, 255, 0.85);
  border-color: rgba(0, 144, 255, 0.6);
  transform: translateY(-50%) scale(1.08);
}
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }
.hero__dots {
  position: absolute;
  top: 32px;
  right: 24px;
  z-index: 5;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  transition: width 0.35s, background 0.35s;
  cursor: pointer;
  padding: 0;
}
.hero__dot.is-active {
  width: 44px;
  background: var(--blue);
}
.hero__dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.6);
}
.hero__stats {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  padding: 16px 20px;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 40, 80, 0.18);
}
.hero__stat { text-align: center; flex: 1; }
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,144,255,0.15);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,144,255,0.5), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--charcoal);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.section-title span { color: var(--blue); }

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 120px 0;
  background: var(--bg-alt);
  position: relative;
}
.why-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,144,255,0.2), transparent);
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us__desc {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 24px;
  max-width: 480px;
}
.why-us__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-us__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px var(--shadow);
}
.why-us__card:hover {
  border-color: rgba(0,144,255,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,144,255,0.12);
}
.why-us__card-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--blue);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}
.why-us__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.why-us__card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,144,255,0.2), transparent);
}
.services::after {
  content: '';
  position: absolute;
  top: 120px;
  left: 8vw;
  width: 3px;
  height: calc(100% - 240px);
  background: linear-gradient(to bottom, var(--blue), rgba(0,144,255,0.08));
  opacity: 0.35;
  pointer-events: none;
}
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
  padding-left: 32px;
  border-left: 3px solid var(--blue);
}
.services__intro {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
  max-width: 480px;
  justify-self: end;
}
.services__showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services__row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(0,144,255,0.1);
  position: relative;
}
.services__row:first-child { padding-top: 0; }
.services__row:last-child { border-bottom: none; padding-bottom: 0; }
.services__row:nth-child(even) {
  direction: rtl;
}
.services__row:nth-child(even) > * {
  direction: ltr;
}
.services__row-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  color: rgba(0,144,255,0.12);
  line-height: 1;
  letter-spacing: 0.05em;
  user-select: none;
}
.services__row:nth-child(even) .services__row-num {
  text-align: right;
}
.services__row-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 40px var(--shadow);
}
.services__row-visual::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(0,144,255,0.35);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
  transition: inset 0.4s ease, border-color 0.4s;
}
.services__row:hover .services__row-visual::before {
  inset: 6px;
  border-color: var(--blue);
}
.services__row-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.services__row:hover .services__row-visual img {
  transform: scale(1.05);
}
.services__row-content {
  padding: 8px 0;
}
.services__row-content h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--charcoal);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.services__row-content h3::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin-top: 14px;
}
.services__row-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 420px;
}
.services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.services__tags span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--blue-light);
  border: 1px solid var(--border);
  color: var(--blue);
  border-radius: 2px;
}
.services__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.services__btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateX(4px);
}
.services__btn--call {
  background: var(--blue);
  color: #fff;
}
.services__btn--call:hover {
  background: var(--blue-dark);
}
.services__btn svg { transition: transform 0.3s; }
.services__btn:hover svg { transform: translateX(3px); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0,144,255,0.1), rgba(0,144,255,0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner__inner { max-width: 700px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--charcoal);
  line-height: 0.95;
  margin-bottom: 20px;
}
.cta-banner h2 span { color: var(--blue); }
.cta-banner p {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-style: italic;
}
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner__btn {
  padding: 16px 36px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.cta-banner__btn--primary {
  background: var(--blue);
  color: #fff;
}
.cta-banner__btn--primary:hover { background: var(--blue-dark); }
.cta-banner__btn--outline {
  border: 1px solid var(--blue);
  color: var(--blue);
}
.cta-banner__btn--outline:hover { background: var(--blue-light); }

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: var(--bg);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.faq__intro p {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 20px;
}
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.faq__question:hover { color: var(--blue); }
.faq__icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  transition: transform 0.3s;
}
.faq__icon::before { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.faq__icon::after { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.faq__item.open .faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}
.faq__item.open .faq__answer { max-height: 300px; padding-bottom: 24px; }
.faq__answer p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== ACCORDION SERVICES ===== */
.acc-services { background: var(--bg-alt); }
.acc-services__header {
  padding: 80px 8vw 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.acc-services__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.acc-services__item:nth-child(even) { background: rgba(0,144,255,0.03); }
.acc-services__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 8vw;
  text-align: left;
  transition: background 0.3s;
}
.acc-services__trigger:hover { background: rgba(0,144,255,0.06); }
.acc-services__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  color: rgba(0,144,255,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  transition: color 0.3s;
}
.acc-services__item.open .acc-services__num { color: rgba(0,144,255,0.6); }
.acc-services__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--charcoal);
  letter-spacing: 0.04em;
  flex: 1;
}
.acc-services__arrow {
  font-size: 24px;
  color: var(--blue);
  transition: transform 0.4s;
}
.acc-services__item.open .acc-services__arrow { transform: rotate(45deg); }
.acc-services__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.acc-services__item.open .acc-services__panel { max-height: 600px; }
.acc-services__panel-inner {
  padding: 0 8vw 48px  calc(8vw + 112px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.acc-services__panel-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.acc-services__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.acc-services__tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(0,144,255,0.25);
  color: var(--blue);
  border-radius: 2px;
}
.acc-services__steps h4 {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.acc-services__step {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.acc-services__step-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.acc-services__step p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
}
.acc-services__panel-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 8px;
  transition: background 0.3s;
}
.acc-services__panel-btn:hover { background: var(--blue-dark); }
.acc-services__panel-img {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.acc-services__panel-img img {
  width: 100%; height: 280px;
  object-fit: cover;
  filter: brightness(1) saturate(1.05);
}

/* ===== SERVICE AREAS ===== */
.areas {
  padding: 120px 0;
  background: var(--bg);
}
.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.areas__desc {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 20px;
}
.areas__map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}
.areas__map-wrap iframe { width: 100%; height: 100%; border: 0; filter: none; }
.areas__cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 8px;
  margin-top: 24px;
}
.areas__city {
  padding: 8px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.areas__city:hover {
  border-color: rgba(0,144,255,0.4);
  color: var(--blue);
  background: var(--blue-light);
}

/* ===== PREMIUM SERVICES ===== */
.premium {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  position: relative;
}
.premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,144,255,0.25), transparent);
}
.premium__header { text-align: center; margin-bottom: 64px; }
.premium__header p {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.premium__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.premium__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px var(--shadow);
}
.premium__card:hover {
  border-color: rgba(0,144,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,144,255,0.12);
}
.premium__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.premium__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.premium__card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.premium__card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.premium__price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--blue);
}
.premium__price span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-subtle);
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0 80px;
  background: var(--bg);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact__info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact__info-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 18px;
}
.contact__info-item h4 {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact__info-item p, .contact__info-item a {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact__info-item a:hover { color: var(--blue); }
.contact__map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 420px;
}
.contact__map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  filter: none;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand img { height: 94px; margin-bottom: 16px; }
.footer__brand p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer__col ul a:hover { color: var(--blue); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  font-size: 10px;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer__social a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--charcoal);
  letter-spacing: 0.1em;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 8vw;
  font-size: 28px;
  color: var(--charcoal);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 8vw 80px;
    text-align: center;
  }
  .hero__left {
    border-left: none;
    padding-left: 0;
    padding-right: 0;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
  }
  .hero__badge { margin-left: auto; margin-right: auto; }
  .hero__tagline,
  .hero__subtitle-mono { max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__right {
    max-width: 640px;
    height: min(480px, 70vw);
    min-height: 320px;
    margin: 0 auto;
  }
  .hero__slider {
    border-radius: 16px;
  }
  .hero__slider::before { border-radius: 16px 0 0 16px; }
  .hero__stats {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .hero__bg .hero__zone-a,
  .hero__bg .hero__zone-b { clip-path: none; width: 100%; }
  .hero__bg .hero__zone-b { opacity: 0.5; }
  .hero__intersection { clip-path: none; opacity: 0.3; }
  .hero__glow { display: none; }
  .hero { height: auto; min-height: 100vh; }
  .hero__scroll { display: none; }
  .hero__arrow { opacity: 1; transform: translateY(-50%) scale(1); }
}

@media (max-width: 1024px) {
  .services__header { grid-template-columns: 1fr; gap: 24px; }
  .services__intro { justify-self: start; max-width: none; }
  .services::after { display: none; }
  .services__row,
  .services__row:nth-child(even) {
    display: flex;
    flex-direction: column;
    direction: ltr;
    gap: 24px;
    padding: 48px 0;
  }
  .services__row-num { font-size: 52px; text-align: left !important; }
  .why-us__grid, .faq__grid, .areas__grid, .contact__grid, .premium__grid { grid-template-columns: 1fr; }
  .acc-services__panel-inner { grid-template-columns: 1fr; padding-left: 8vw; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__right { height: min(420px, 65vw); min-height: 280px; }
}

@media (max-width: 768px) {
  .navbar { height: 112px; }
  .navbar__logo img { height: 100px; max-width: 120px; }
  .navbar__nav { display: none; }
  .navbar__toggle { display: flex; }
  .why-us__cards { grid-template-columns: 1fr; }
  .areas__cities { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 6px; }
  .premium__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title-line { font-size: clamp(36px, 11vw, 56px); }
  .hero__layout { padding: 88px 5vw 60px; gap: 36px; }
  .hero__right { height: min(360px, 72vw); min-height: 260px; }
  .hero__stats { padding: 14px 16px; left: 16px; right: 16px; bottom: 16px; }
  .hero__stat-num { font-size: 22px; }
  .services { padding: 80px 0; }
  .services__header { padding-left: 20px; margin-bottom: 48px; }
  .services__row { padding: 36px 0; gap: 20px; }
  .services__row-num { font-size: 40px; }
  .services__row-content p { max-width: none; }
}
