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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  color: #0a0a0a;
}

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

/* ===== UTILITY ===== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 1.5rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 64px; width: auto; object-fit: contain; }
.nav-links {
  display: none;
  align-items: center; gap: 4px;
  background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 9999px; padding: 6px 8px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 6px 14px; font-size: 13.5px; font-weight: 500;
  color: #404040; border-radius: 9999px; transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: #fff; color: #171717; }
.nav-cta { display: none; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: #1e40af; color: #fff; font-size: 13.5px; font-weight: 500;
  padding: 10px 20px 10px 20px; border-radius: 9999px; transition: background 0.2s;
}
.btn-primary:hover { background: #1e3a8a; }
.btn-primary svg { width: 14px; height: 14px; }

.nav-hamburger { display: flex; padding: 8px; color: #1a1a1a; }
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.nav-hamburger svg { width: 24px; height: 24px; }

.nav-mobile {
  display: none; border-top: 1px solid #e5e7eb; background: #fff;
}
.nav-mobile.open { display: block; }
.nav-mobile-inner { padding: 16px 24px; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a { display: block; padding: 10px 0; font-size: 15px; font-weight: 500; color: #1a1a1a; }
.nav-mobile .btn-primary {
  margin-top: 8px; justify-content: center;
  font-size: 14px; padding: 10px 20px;
}

/* ===== HERO ===== */
#hero {
  position: relative; padding-top: 112px; padding-bottom: 64px;
  overflow: hidden; background: #fff;
}
@media (min-width: 1024px) { #hero { padding-top: 128px; padding-bottom: 80px; } }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; } }
.hero-dot-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image: radial-gradient(circle at 1px 1px, #e5e7eb 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: #1e40af;
}
.hero-tag-line { display: inline-block; width: 24px; height: 1px; background: #1e40af; }
h1.hero-title {
  margin-top: 24px;
  font-size: clamp(44px, 8vw, 78px);
  line-height: 0.98; font-weight: 800; letter-spacing: -0.03em; color: #171717;
}
.hero-title .accent { color: #1e40af; }
.hero-title .muted { color: #a3a3a3; }
.hero-desc { margin-top: 24px; max-width: 560px; font-size: 16px; line-height: 1.7; color: #525252; }
@media (min-width: 1024px) { .hero-desc { font-size: 17.5px; } }
.hero-desc strong { color: #171717; font-weight: 500; }
.hero-btns { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #171717; font-size: 15px; font-weight: 500;
  padding: 14px 24px; border-radius: 9999px; border: 1px solid #e5e7eb; transition: background 0.2s;
}
.btn-outline:hover { background: #f9fafb; }
.hero-trust { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.hero-avatars { display: flex; align-items: center; }
.hero-avatars span {
  width: 36px; height: 36px; border-radius: 9999px; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; margin-left: -8px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 12px; color: #737373; }

/* Hero image */
.hero-img-wrap {
  position: relative; border-radius: 28px; overflow: hidden;
  aspect-ratio: 4/5; background: #e5e7eb;
}
.hero-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,23,23,0.7) 0%, rgba(23,23,23,0.15) 40%, transparent 100%);
}
.hero-badges {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; gap: 8px;
}
.hero-badge {
  flex: 1; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 10px;
}
.hero-badge-icon {
  width: 32px; height: 32px; border-radius: 8px; background: #eff6ff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge-icon svg { width: 16px; height: 16px; color: #1e40af; }
.hero-badge-title { font-size: 12.5px; font-weight: 600; color: #171717; line-height: 1.2; }
.hero-badge-sub { font-size: 10.5px; color: #737373; }

/* ===== STATS ===== */
#stats { padding: 56px 0; background: #fff; }
@media (min-width: 1024px) { #stats { padding: 64px 0; } }
.stats-card {
  border-radius: 24px; background: #0a0a0a; color: #fff; overflow: hidden; position: relative;
}
.stats-inner { padding: 40px 28px; }
@media (min-width: 1024px) { .stats-inner { padding: 56px 48px; } }
.stats-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.stats-label { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #60a5fa; }
.stats-label svg { width: 14px; height: 14px; }
.stats-title { margin-top: 12px; font-size: clamp(28px, 4vw, 36px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.stats-title .accent { color: #60a5fa; }
.stats-sub { font-size: 14px; color: #737373; max-width: 280px; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  background: #0a0a0a; padding: 24px 28px; transition: background 0.2s;
}
.stat-item:hover { background: #171717; }
.stat-num { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #525252; }
.stat-value { margin-top: 12px; font-size: clamp(36px, 5vw, 48px); font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.stat-label { margin-top: 12px; font-size: 13px; color: #d4d4d4; line-height: 1.4; }

/* ===== ABOUT ===== */
#about { padding: 80px 0; background: rgba(250,250,250,0.7); }
@media (min-width: 1024px) { #about { padding: 112px 0; } }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 6fr 6fr; gap: 4rem; } }
.about-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 5/6; background: #e5e7eb;
}
.about-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 60%);
}
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #1e40af;
}
.section-tag-line { display: inline-block; width: 24px; height: 1px; background: #1e40af; }
.section-title {
  margin-top: 16px; font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05; font-weight: 700; letter-spacing: -0.025em; color: #171717;
}
.section-title .accent { color: #1e40af; }
.section-desc { margin-top: 20px; font-size: 16px; color: #525252; line-height: 1.7; max-width: 560px; }
.about-list { margin-top: 36px; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.about-list-item {
  padding: 16px 0; display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.about-list-item:last-child { border-bottom: none; }
.about-icon {
  width: 40px; height: 40px; border-radius: 12px; background: #fff;
  border: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-icon svg { width: 16px; height: 16px; color: #1e40af; }
.about-item-title { font-size: 15px; font-weight: 600; color: #171717; }
.about-item-sub { font-size: 13px; color: #737373; margin-top: 2px; }
.about-item-arrow { width: 16px; height: 16px; color: #d4d4d4; flex-shrink: 0; }
@media (max-width: 640px) { .about-item-arrow { display: none; } }

/* ===== SERVICES ===== */
#services { padding: 80px 0; background: #fff; }
@media (min-width: 1024px) { #services { padding: 112px 0; } }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.section-head-sub { font-size: 15px; color: #525252; line-height: 1.7; max-width: 320px; }
.services-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px; background: #eff6ff; border: 1px solid #dbeafe;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.service-card:hover .service-icon { background: #1e40af; border-color: #1e40af; }
.service-icon svg { width: 20px; height: 20px; color: #1e40af; transition: color 0.2s; }
.service-card:hover .service-icon svg { color: #fff; }
.service-num { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #a3a3a3; }
.service-title { margin-top: 40px; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: #171717; }
.service-desc { margin-top: 10px; font-size: 14px; color: #525252; line-height: 1.7; flex: 1; }
.service-link {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500; color: #404040;
  transition: color 0.2s;
}
.service-card:hover .service-link { color: #1e40af; }
.service-link svg { width: 14px; height: 14px; }

/* ===== FLEET ===== */
#fleet { padding: 80px 0; background: rgba(250,250,250,0.7); }
@media (min-width: 1024px) { #fleet { padding: 112px 0; } }
.fleet-layout { display: grid; gap: 20px; }
@media (min-width: 1024px) { .fleet-layout { grid-template-columns: 7fr 5fr; } }
.fleet-main {
  position: relative; border-radius: 24px; overflow: hidden; background: #171717; min-height: 460px;
}
.fleet-main-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fleet-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #171717 0%, rgba(23,23,23,0.3) 40%, transparent 100%);
}
.fleet-counter {
  position: absolute; top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  color: #171717; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 12px; border-radius: 9999px;
}
.fleet-main-info { position: absolute; bottom: 24px; left: 24px; right: 24px; color: #fff; }
.fleet-main-cat { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #93c5fd; }
.fleet-main-name { margin-top: 8px; font-size: clamp(28px, 5vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.fleet-list { display: flex; flex-direction: column; gap: 12px; }
.fleet-btn {
  text-align: left; width: 100%; border-radius: 16px; padding: 20px; border: 1px solid #e5e7eb;
  background: #fff; color: #171717; transition: all 0.2s; display: block;
}
.fleet-btn.active { background: #171717; color: #fff; border-color: #171717; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.fleet-btn:hover:not(.active) { border-color: #d4d4d4; }
.fleet-btn-inner { display: flex; align-items: center; gap: 16px; }
.fleet-thumb {
  width: 64px; height: 64px; border-radius: 12px; overflow: hidden; flex-shrink: 0;
}
.fleet-thumb.ring { outline: 2px solid #3b82f6; outline-offset: 2px; }
.fleet-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fleet-btn-meta { flex: 1; }
.fleet-btn-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #737373; }
.fleet-btn.active .fleet-btn-cat { color: #93c5fd; }
.fleet-btn-name { margin-top: 4px; font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.fleet-btn-desc { font-size: 12.5px; color: #737373; }
.fleet-btn.active .fleet-btn-desc { color: #d4d4d4; }
.fleet-arrow {
  width: 36px; height: 36px; border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  background: #f5f5f5; color: #404040; transition: all 0.2s; flex-shrink: 0;
}
.fleet-btn.active .fleet-arrow { background: #1d4ed8; color: #fff; }
.fleet-btn:hover:not(.active) .fleet-arrow { background: #171717; color: #fff; }
.fleet-arrow svg { width: 16px; height: 16px; }

/* ===== WHY CHOOSE US ===== */
#why { padding: 80px 0; background: #fff; }
@media (min-width: 1024px) { #why { padding: 112px 0; } }
.why-grid {
  display: grid; gap: 1px;
  background: #e5e7eb; border-radius: 24px; overflow: hidden; border: 1px solid #e5e7eb;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: #fff; padding: 32px; transition: background 0.2s; }
.why-card:hover { background: #f9fafb; }
.why-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; }
.why-num { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #a3a3a3; }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #eff6ff; border: 1px solid #dbeafe;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.why-card:hover .why-icon { background: #1e40af; border-color: #1e40af; }
.why-icon svg { width: 20px; height: 20px; color: #1e40af; transition: color 0.2s; }
.why-card:hover .why-icon svg { color: #fff; }
.why-title { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: #171717; }
.why-desc { margin-top: 10px; font-size: 14px; color: #525252; line-height: 1.7; }
.why-link {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 500; color: #a3a3a3; transition: color 0.2s;
}
.why-card:hover .why-link { color: #1e40af; }
.why-link svg { width: 14px; height: 14px; }

/* ===== CLIENTS ===== */
#clients { padding: 80px 0; background: rgba(250,250,250,0.7); }
@media (min-width: 1024px) { #clients { padding: 112px 0; } }
.clients-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.clients-stats { border: 1px solid #e5e7eb; background: #fff; border-radius: 16px; padding: 12px 20px; display: flex; align-items: center; gap: 16px; }
.clients-stat-val { font-size: 28px; font-weight: 700; color: #171717; line-height: 1; }
.clients-stat-val.blue { color: #1e40af; }
.clients-stat-sub { font-size: 12px; color: #737373; margin-top: 2px; }
.clients-divider { width: 1px; height: 40px; background: #e5e7eb; }

/* Marquee */
.marquee-wrap { overflow: hidden; position: relative; }
.mask-fade {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 12px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track.reverse { animation: marquee-reverse 30s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.client-pill {
  height: 64px; padding: 0 28px; flex-shrink: 0; background: #fff; border: 1px solid #e5e7eb;
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: #404040; font-weight: 600; font-size: 15px; letter-spacing: -0.02em; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.client-pill:hover { color: #171717; border-color: #d4d4d4; }
.marquee-rows { display: flex; flex-direction: column; gap: 12px; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===== CTA ===== */
#cta { padding: 64px 0; background: #fff; }
@media (min-width: 1024px) { #cta { padding: 80px 0; } }
.cta-card {
  position: relative; border-radius: 32px; overflow: hidden; background: #0a0a0a;
}
.cta-bg {
  position: absolute; inset: 0; opacity: 0.25;
  background-image: url('https://images.unsplash.com/photo-1709625215458-69e36584c9f1?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NDQ2NDJ8MHwxfHNlYXJjaHwyfHxJbmRpYW4lMjBoaWdod2F5fGVufDB8fHx8MTc3ODQ5OTk5OHww&ixlib=rb-4.1.0&q=85');
  background-size: cover; background-position: center;
}
.cta-gradient { position: absolute; inset: 0; background: linear-gradient(to right, #0a0a0a, rgba(10,10,10,0.95) 50%, rgba(10,10,10,0.6)); }
.cta-inner {
  position: relative; display: grid; gap: 40px; align-items: center;
  padding: 56px 32px;
}
@media (min-width: 1024px) { .cta-inner { grid-template-columns: 1fr 1fr; padding: 80px 56px; } }
.cta-text { color: #fff; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: #93c5fd; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px; border-radius: 9999px;
}
.cta-title {
  margin-top: 20px; font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02; font-weight: 700; letter-spacing: -0.025em;
}
.cta-title .accent { color: #60a5fa; }
.cta-desc { margin-top: 20px; font-size: 16px; color: #d4d4d4; line-height: 1.7; max-width: 400px; }
.cta-btns { margin-top: 32px; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1d4ed8; color: #fff; font-size: 15px; font-weight: 500;
  padding: 14px 24px; border-radius: 9999px; transition: background 0.2s;
}
.btn-cta:hover { background: #1e40af; }
.btn-cta svg { width: 16px; height: 16px; }
.cta-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-stat {
  border-radius: 16px; background: rgba(255,255,255,0.06); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1); padding: 24px; color: #fff;
}
.cta-stat-val { font-size: clamp(28px, 4vw, 40px); font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.cta-stat-sub { margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,0.7); }

/* ===== CONTACT ===== */
#contact { position: relative; overflow: hidden; padding: 96px 0; background: #f8fafc; }
@media (min-width: 1024px) { #contact { padding: 128px 0; } }
.contact-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; background: rgba(219,234,254,0.4);
  filter: blur(80px); border-radius: 9999px; pointer-events: none;
}
.contact-heading { max-width: 768px; margin: 0 auto; text-align: center; margin-bottom: 64px; }
.contact-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border: 1px solid #dbeafe; background: #fff; border-radius: 9999px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: #1e40af;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-tag-line { display: inline-block; width: 20px; height: 1px; background: #1d4ed8; }
.contact-title {
  margin-top: 24px; font-size: clamp(36px, 6vw, 64px);
  line-height: 0.98; font-weight: 700; letter-spacing: -0.04em; color: #171717;
}
.contact-title .accent { color: #1e40af; }
.contact-desc { margin-top: 24px; font-size: 17px; line-height: 1.7; color: #525252; max-width: 672px; margin-left: auto; margin-right: auto; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1200px; margin: 0 auto; }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  position: relative; background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  border: 1px solid #e5e7eb; border-radius: 28px; padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-color: #dbeafe; }
.contact-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.contact-icon {
  width: 56px; height: 56px; border-radius: 16px; background: #eff6ff; border: 1px solid #dbeafe;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.contact-card:hover .contact-icon { background: #1e40af; border-color: #1e40af; }
.contact-icon svg { width: 20px; height: 20px; color: #1e40af; transition: color 0.3s; }
.contact-card:hover .contact-icon svg { color: #fff; }
.contact-arrow {
  width: 40px; height: 40px; border-radius: 9999px; background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.contact-card:hover .contact-arrow { background: #1e40af; }
.contact-arrow svg { width: 16px; height: 16px; color: #737373; transition: color 0.3s; }
.contact-card:hover .contact-arrow svg { color: #fff; }
.contact-body { margin-top: 32px; }
.contact-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: #737373; }
.contact-value { margin-top: 12px; font-size: 22px; line-height: 1.2; font-weight: 600; letter-spacing: -0.02em; color: #171717; word-break: break-word; }
.contact-sub { margin-top: 12px; font-size: 14px; color: #737373; line-height: 1.6; }
.contact-cta { margin-top: 32px; display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #1e40af; }
.contact-cta .arrow { transition: transform 0.3s; }
.contact-card:hover .contact-cta .arrow { transform: translateX(4px); }

/* ===== FOOTER ===== */
footer { background: #0a0a0a; color: #d4d4d4; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 64px 24px; }
@media (min-width: 1024px) { .footer-inner { padding: 80px 32px; } }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 7fr; } }
.footer-brand { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.footer-desc { margin-top: 24px; font-size: 14.5px; color: #737373; line-height: 1.7; max-width: 400px; }
.footer-addresses { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 480px; }
.footer-addr-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: #525252; margin-bottom: 8px; }
.footer-addr-text { font-size: 14px; color: #737373; line-height: 1.6; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (min-width: 640px) { .footer-links-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #525252; }
.footer-col ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: #737373; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 56px; padding-top: 32px; border-top: 1px solid #262626; }
.footer-wordmark {
  font-size: clamp(44px, 10vw, 120px); font-weight: 700; letter-spacing: -0.03em;
  color: #262626; line-height: 1; user-select: none;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-wordmark .blue { color: rgba(96,165,250,0.6); }
.btn-footer-quote {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  background: #1d4ed8; color: #fff; font-size: 13.5px; font-weight: 500;
  padding: 10px 16px 10px 16px; border-radius: 9999px; transition: background 0.2s;
  margin-bottom: 8px;
}
.btn-footer-quote:hover { background: #1e40af; }
.btn-footer-quote svg { width: 16px; height: 16px; }

/* ===== SVG ICONS (inline) ===== */
svg { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
