@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0c2d57;
  --blue-800: #1a4f8a;
  --blue-700: #1d5fa5;
  --blue-600: #2471c8;
  --blue-500: #2d86e8;
  --blue-400: #5ba3ee;
  --blue-200: #bfdbfe;
  --blue-100: #deeeff;
  --blue-50:  #f0f7ff;

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white:    #ffffff;

  --font: 'Inter', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--blue-800);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 18px 36px; font-size: 1.0625rem; }

/* ── Section helpers ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--blue-600); }
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin-inline: auto; }
.divider {
  width: 52px; height: 4px;
  background: var(--blue-600);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.section-header .divider { margin-inline: auto; }

/* ──────────────────────────────────────────
   HEADER
────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: 18px;
  background: var(--blue-900);
  box-shadow: var(--shadow-lg);
}
.site-header.scrolled {
  background: var(--blue-900);
  box-shadow: var(--shadow-lg);
  padding-block: 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--blue-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; color: var(--white); }
.logo-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  display: block;
}
.logo-tagline {
  font-size: 0.6875rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-400);
  border-radius: var(--radius-full);
  transition: width .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.call-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}
.call-badge:hover { background: rgba(255,255,255,.18); }
.call-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-900);
  padding: 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: block;
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1669101602108-fa5ba89507ee?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,45,87,.82) 0%, rgba(12,45,87,.68) 55%, rgba(26,79,138,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  color: var(--blue-200);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-400);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item svg { width: 16px; height: 16px; color: var(--blue-400); flex-shrink: 0; }

/* ──────────────────────────────────────────
   STATS BAR
────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-800);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.875rem; color: var(--gray-500); font-weight: 500; }

/* ──────────────────────────────────────────
   ABOUT
────────────────────────────────────────── */
.about { padding-block: 96px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-float {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  aspect-ratio: 1;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.cert-float {
  position: absolute;
  top: 24px; left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cert-float-icon {
  width: 40px; height: 40px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-float-icon svg { width: 22px; height: 22px; color: var(--blue-600); }
.cert-float-title { font-weight: 700; font-size: 0.875rem; color: var(--gray-900); }
.cert-float-sub { font-size: 0.75rem; color: var(--gray-500); }

.about-description { color: var(--gray-500); line-height: 1.8; margin-bottom: 32px; }
.badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.badge-icon {
  width: 32px; height: 32px;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg { width: 16px; height: 16px; color: var(--blue-700); }
.badge-label { font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); }

/* ──────────────────────────────────────────
   SERVICES PREVIEW
────────────────────────────────────────── */
.services-preview {
  padding-block: 96px;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-200);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .25s;
}
.service-card:hover .service-icon { background: var(--blue-100); }
.service-icon svg { width: 28px; height: 28px; color: var(--blue-700); }
.service-name { font-size: 1.0625rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.service-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.services-cta { text-align: center; }

/* ──────────────────────────────────────────
   WHY CHOOSE US
────────────────────────────────────────── */
.why-us {
  padding-block: 96px;
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(45,134,232,.18) 0%, transparent 70%);
  pointer-events: none;
}
.why-us .section-label { color: var(--blue-400); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,.6); }
.why-us .divider { background: var(--blue-500); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.why-item:hover .why-item-icon { background: rgba(255,255,255,.14); }
.why-item-icon svg { width: 22px; height: 22px; color: var(--blue-400); }
.why-item-title { font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item-desc { font-size: 0.875rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testimonials { padding-block: 96px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blue-100);
  font-family: Georgia, serif;
  position: absolute;
  top: 16px; left: 24px;
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: #f59e0b; font-size: 0.875rem; }
.testimonial-text {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--blue-600);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.875rem; color: var(--gray-900); }
.author-role { font-size: 0.75rem; color: var(--gray-500); }

/* ──────────────────────────────────────────
   CTA SECTION
────────────────────────────────────────── */
.cta-section {
  padding-block: 96px;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/3184416/pexels-photo-3184416.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: .05;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  color: var(--blue-200);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-section > .cta-inner > p {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-phones {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 700;
  transition: color .2s;
}
.phone-link:hover { color: var(--blue-200); }
.phone-link svg { width: 20px; height: 20px; }
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */
.contact { padding-block: 96px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--blue-700); }
.contact-info-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-info-value { font-weight: 600; color: var(--gray-900); line-height: 1.65; }
.contact-info-value a:hover { color: var(--blue-700); }
.service-area-box {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 8px;
}
.service-area-box h4 { font-size: 0.875rem; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.service-area-box p { font-size: 0.875rem; color: var(--blue-700); line-height: 1.6; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.form-subtitle { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(45,134,232,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 16px;
  color: #15803d;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 16px;
  text-align: center;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.site-footer {
  background: var(--gray-900);
  padding-top: 64px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .logo-name { font-size: 1.25rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer-certs { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.6875rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,.3); }

/* ──────────────────────────────────────────
   SERVICES PAGE
────────────────────────────────────────── */
.page-hero {
  background: var(--blue-900);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/4099354/pexels-photo-4099354.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  opacity: .1;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p { font-size: 1.125rem; color: rgba(255,255,255,.7); max-width: 560px; margin-inline: auto; }

.all-services { padding-block: 96px; }
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card-lg {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card-lg:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-200);
}
.service-card-body { padding: 32px 28px 28px; }
.service-card-icon-lg {
  width: 72px; height: 72px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .25s, transform .25s;
}
.service-card-lg:hover .service-card-icon-lg {
  background: var(--blue-100);
  transform: scale(1.08);
}
.service-card-icon-lg svg { width: 34px; height: 34px; color: var(--blue-700); }
.service-card-name { font-size: 1.0625rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.service-card-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.service-cta-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding-block: 72px;
  text-align: center;
}

/* ──────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────── */
.js-animations .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.js-animations .fade-up.visible { opacity: 1; transform: none; }

/* stagger within grid parents */
.services-grid .service-card:nth-child(1),
.all-services-grid .service-card-lg:nth-child(1),
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: .0s; }
.services-grid .service-card:nth-child(2),
.all-services-grid .service-card-lg:nth-child(2),
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: .08s; }
.services-grid .service-card:nth-child(3),
.all-services-grid .service-card-lg:nth-child(3),
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: .16s; }
.services-grid .service-card:nth-child(4),
.all-services-grid .service-card-lg:nth-child(4) { transition-delay: .24s; }
.services-grid .service-card:nth-child(5),
.all-services-grid .service-card-lg:nth-child(5) { transition-delay: .32s; }
.services-grid .service-card:nth-child(6),
.all-services-grid .service-card-lg:nth-child(6) { transition-delay: .40s; }
.all-services-grid .service-card-lg:nth-child(7) { transition-delay: .48s; }
.all-services-grid .service-card-lg:nth-child(8) { transition-delay: .56s; }
.all-services-grid .service-card-lg:nth-child(9) { transition-delay: .64s; }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .all-services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .call-badge { display: none; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .all-services-grid { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-phones { flex-direction: column; align-items: center; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
  .contact-form-wrap { padding: 24px; }
}
