/* Tech Solution — Light professional design system */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #f3f7fc;
  --bg-2: #e8f1fb;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.65);
  --surface-glass-strong: rgba(255, 255, 255, 0.9);
  --border: rgba(7, 35, 83, 0.1);
  --border-strong: rgba(7, 35, 83, 0.16);
  --text: #0a2350;
  --text-soft: #314f7f;
  --muted: #61769b;
  --primary: #0553dd;
  --primary-2: #2f7bef;
  --primary-soft: #e3edff;
  --primary-glow: rgba(5, 83, 221, 0.28);
  --accent: #0ca6a6;
  --gradient-primary: linear-gradient(135deg, #0553dd 0%, #2f7bef 100%);
  --gradient-text: linear-gradient(135deg, #08388f 0%, #0553dd 55%, #1e8ad9 100%);
  --gradient-soft:
    radial-gradient(circle at 20% 0%, rgba(5, 83, 221, 0.11), transparent 52%),
    radial-gradient(circle at 90% 30%, rgba(12, 166, 166, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  --shadow-sm: 0 1px 2px rgba(7, 35, 83, 0.06);
  --shadow-md: 0 10px 26px -12px rgba(7, 35, 83, 0.18);
  --shadow-lg: 0 24px 62px -24px rgba(7, 35, 83, 0.24);
  --shadow-glow: 0 14px 34px -12px rgba(5, 83, 221, 0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  background-image:
    radial-gradient(circle at 10% 5%, rgba(5, 83, 221, 0.06), transparent 40%),
    radial-gradient(circle at 95% 80%, rgba(12, 166, 166, 0.06), transparent 40%);
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; line-height: 1.12; color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.mono { font-family: 'JetBrains Mono', monospace; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.35s var(--ease);
  font-family: inherit; position: relative; overflow: hidden;
}
.btn-hero {
  background: var(--gradient-primary); color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.7s var(--ease);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(11, 95, 255, 0.5); }
.btn-hero:hover::after { transform: translateX(100%); }
.btn-outline {
  background: var(--surface-glass); backdrop-filter: blur(10px);
  color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; }

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.45s var(--ease);
  padding: 14px 0;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  box-shadow: 0 4px 20px -10px rgba(15, 42, 92, 0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
  overflow: hidden;
}
.logo-mark svg { width: 22px; height: 22px; color: #fff; }
.logo-mark-image {
  width: 100%;
  height: 125%;
  object-fit: cover;
}
.logo-text { line-height: 1; }
.logo-name { font-family: 'Space Grotesk'; font-weight: 700; font-size: 17px; color: var(--text); }
.logo-name span { color: var(--primary); }
.logo-tag { font-family: 'JetBrains Mono'; font-size: 10px; color: var(--muted); letter-spacing: 0.18em; margin-top: 4px; }

.nav { display: none; gap: 36px; }
.nav a { font-size: 14px; color: var(--text-soft); font-weight: 500; transition: color 0.2s; position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--surface-glass-strong);
  color: var(--text);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--surface-glass-strong);
  backdrop-filter: blur(16px);
  padding: 8px 24px 16px;
}
.nav-mobile {
  display: grid;
  gap: 6px;
}
.nav-mobile a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 10px;
  border-radius: 10px;
}
.nav-mobile a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.mobile-menu-cta {
  margin-top: 12px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 767px) {
  .header-inner {
    height: 56px;
    min-height: 56px;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .logo {
    min-width: 0;
    flex: 1;
  }
  .logo-tag { display: none; }
  .header .btn-hero {
    display: none;
  }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background-image: url('/hero-ultrasound.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
  filter: saturate(0.85) brightness(1.05);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(246, 249, 252, 0.55) 0%, rgba(246, 249, 252, 0.85) 60%, var(--bg) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.2) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.hero-content { max-width: 720px; position: relative; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 52px;
  }
}
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface-glass-strong); backdrop-filter: blur(10px);
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.15em; color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  position: relative;
}
.dot::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--primary); animation: ping 1.8s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2.6); opacity: 0; } }

.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 700; margin: 26px 0;
  color: var(--text);
}
.hero p.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-soft); max-width: 580px; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-panel {
  background: var(--surface-glass-strong);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-panel-head {
  font-family: 'JetBrains Mono', monospace;
  color: var(--primary);
  letter-spacing: 0.16em;
  font-size: 11px;
}
.hero-panel-title {
  font-size: clamp(22px, 2.2vw, 30px);
  margin-top: 12px;
}
.hero-panel-list {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-panel-list li span { color: var(--text-soft); }
.hero-panel-list li strong { color: var(--text); font-weight: 600; text-align: right; }
.hero-panel-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 56px;
  max-width: 720px;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--surface-glass-strong); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-md); }
.stat-value { font-family: 'Space Grotesk'; font-weight: 700; font-size: 28px; color: var(--primary); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ---------- SECTIONS ---------- */
section { padding: clamp(82px, 10vw, 112px) 0; position: relative; }
.eyebrow {
  font-family: 'JetBrains Mono'; font-size: 11px; color: var(--primary);
  letter-spacing: 0.22em; margin-bottom: 16px; text-transform: uppercase;
}
.section-title { font-size: clamp(28px, 4vw, 46px); font-weight: 700; line-height: 1.15; }
.section-intro { max-width: 680px; margin-bottom: 12px; }
.section-intro-center { text-align: center; margin: 0 auto 12px; }

/* ---------- BRANDS ---------- */
.brands { padding: 60px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-label { text-align: center; font-family: 'JetBrains Mono'; font-size: 11px; color: var(--muted); letter-spacing: 0.2em; margin-bottom: 32px; }
.brands-marquee { overflow: hidden; }
.brands-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; align-items: center; }
.brands-track .brand[aria-hidden="true"] { display: none; }
.brand { text-align: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 18px; color: var(--muted); transition: all 0.3s var(--ease); cursor: default; }
.brand:hover { color: var(--primary); transform: scale(1.08); }

/* ---------- ABOUT / SPLIT ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.media { position: relative; }
.media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform 0.6s var(--ease);
}
.media:hover img { transform: scale(1.02); }
.media-badge {
  position: absolute; bottom: -28px; right: -16px;
  background: var(--surface-glass-strong); backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-lg);
}
.media-badge .mono { font-size: 11px; color: var(--primary); }
.media-badge .big { font-family: 'Space Grotesk'; font-weight: 700; font-size: 28px; margin: 4px 0; color: var(--text); }
.media-badge .sm { font-size: 11px; color: var(--muted); }

.checks { list-style: none; margin: 28px 0; }
.checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; padding: 8px 0; color: var(--text-soft); }
.checks li svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.prose { color: var(--text-soft); line-height: 1.75; margin: 24px 0; font-size: 15px; }

/* ---------- SERVICES ---------- */
.alt-bg {
  background: var(--gradient-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 52px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service {
  position: relative; overflow: hidden;
  background: var(--surface-glass-strong);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.5s var(--ease);
  cursor: default;
}
.service::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none;
}
.service::after {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--primary), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none;
}
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service:hover::before { opacity: 1; }
.service:hover::after { opacity: 1; }
.service-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.45s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; color: var(--primary); transition: transform 0.45s var(--ease); }
.service:hover .service-icon { background: var(--gradient-primary); transform: rotate(-6deg) scale(1.05); }
.service:hover .service-icon svg { color: #fff; transform: rotate(6deg); }
.service-code { font-family: 'JetBrains Mono'; font-size: 10px; color: var(--muted); letter-spacing: 0.2em; }
.service h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; position: relative; z-index: 1; }
.service p { font-size: 14px; color: var(--text-soft); line-height: 1.65; margin-bottom: 24px; position: relative; z-index: 1; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 14px; font-weight: 600; transition: gap 0.3s var(--ease); position: relative; z-index: 1; }
.service-link:hover { gap: 14px; }
.service-link svg { width: 16px; height: 16px; }
.service-num {
  position: absolute; top: -16px; right: 8px;
  font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(90px, 10vw, 130px); line-height: 1;
  color: rgba(11, 95, 255, 0.05); pointer-events: none; user-select: none;
  transition: color 0.5s var(--ease);
}
.service:hover .service-num { color: rgba(11, 95, 255, 0.1); }

/* ---------- PROCESS ---------- */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;
  background: var(--surface-glass-strong);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.5s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.step-num { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--primary); margin-bottom: 18px; letter-spacing: 0.15em; }
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow); margin-bottom: 18px;
  transition: transform 0.5s var(--ease);
}
.step:hover .step-icon { transform: scale(1.08) rotate(-4deg); }
.step-icon svg { width: 24px; height: 24px; color: #fff; }
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ---------- COVERAGE ---------- */
.states { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
@media (min-width: 640px) { .states { grid-template-columns: repeat(3, 1fr); } }
.state {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-glass-strong); backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px;
  transition: all 0.35s var(--ease);
}
.state:hover { border-color: var(--primary); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.state-uf {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono'; font-weight: 700; color: var(--primary); font-size: 13px;
  transition: all 0.35s var(--ease);
}
.state:hover .state-uf { background: var(--gradient-primary); color: #fff; }
.state-name { font-size: 14px; font-weight: 500; color: var(--text); }
.media-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--surface-glass-strong); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 14px; font-family: 'JetBrains Mono'; font-size: 11px;
  color: var(--text-soft);
}
.media-tag .pulse { color: var(--primary); }

/* ---------- CTA ---------- */
.cta-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px; padding: clamp(36px, 5vw, 64px);
  box-shadow: var(--shadow-lg);
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(11, 95, 255, 0.10), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.10), transparent 50%);
  pointer-events: none;
}
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .cta-grid { grid-template-columns: 1.05fr 0.95fr; gap: 32px; } }
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--surface-glass-strong); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px;
  transition: all 0.35s var(--ease);
}
.contact-item > div { min-width: 0; }
.contact-item:hover { transform: translateX(4px); border-color: var(--primary); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--primary); }
.contact-label { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.contact-value { font-size: 14px; font-weight: 600; margin-top: 2px; color: var(--text); }
.cta-title { margin-bottom: 16px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border); background: var(--surface); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer p { font-size: 14px; color: var(--text-soft); line-height: 1.65; margin-top: 14px; }
.footer-label { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--muted); letter-spacing: 0.2em; margin-bottom: 14px; }
.social { display: flex; gap: 10px; }
.social a {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease);
}
.social a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; color: var(--muted);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } .footer-grid > div:last-child { text-align: right; } .footer-grid > div:last-child .social { justify-content: flex-end; } }

.prose,
.contact-value,
.footer p {
  overflow-wrap: anywhere;
}

/* ---------- FAB ---------- */
.fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow); transition: transform 0.35s var(--ease);
}
.fab:hover { transform: scale(1.1) rotate(-6deg); }
.fab svg { width: 26px; height: 26px; }
.fab::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--primary); animation: ping 2.2s ease-out infinite; opacity: 0.3;
}

@media (max-width: 767px) {
  .badge {
    display: none;
  }

  .mobile-menu {
    padding: 8px clamp(16px, 4vw, 22px) 16px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-panel {
    padding: 22px;
  }
  .hero-panel-list li strong {
    text-align: left;
  }

  .media-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    margin-top: 0;
    width: auto;
    max-width: calc(100% - 20px);
    padding: 12px 14px;
  }

  .split .media {
    max-width: min(78vw, 320px);
    margin-inline: auto;
  }

  .split .media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 350px;
    object-fit: cover;
  }

  .section-intro {
    margin-bottom: 4px;
  }

  .services-grid {
    margin-top: 34px;
    gap: 16px;
  }

  .service {
    padding: 24px 20px;
  }

  .service h3 {
    font-size: 18px;
  }

  .process-grid {
    margin-top: 36px;
    gap: 16px;
  }

  .step {
    padding: 22px 18px;
  }

  .cta-card {
    border-radius: 18px;
    padding: 28px 18px;
  }

  .contact-list {
    gap: 10px;
  }

  .contact-item {
    padding: 12px;
    gap: 12px;
  }

  .fab {
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 68px 0;
  }

  .hero {
    padding: 104px 0 64px;
  }

  .badge {
    width: auto;
    max-width: min(100%, 320px);
    justify-content: center;
    text-align: center;
    line-height: 1.35;
    font-size: 9px;
    padding: 6px 10px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .brands {
    padding: 44px 0;
  }

  .brands-label {
    margin-bottom: 22px;
  }

  .brands-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: brands-scroll 18s linear infinite;
    padding-right: 14px;
  }

  .brands-track .brand[aria-hidden="true"] {
    display: block;
  }

  .brand {
    min-width: 132px;
    padding: 0;
    font-size: 15px;
  }

  .states {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .state {
    padding: 12px;
  }

  .footer {
    padding-top: 42px;
  }

  .fab {
    width: 52px;
    height: 52px;
  }

  .fab svg {
    width: 22px;
    height: 22px;
  }
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .header-inner {
    gap: 18px;
  }

  .logo-tag {
    display: none;
  }

  .nav-desktop {
    gap: 18px;
  }

  .header .btn-hero {
    display: none;
  }

  .hero-layout {
    gap: 28px;
  }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero::before,
  .dot::before,
  .fab::before {
    animation: none !important;
  }

  .brands-track {
    animation: none !important;
  }

  .reveal,
  .js .reveal,
  .js .reveal.in {
    opacity: 1;
    transform: none;
  }
}
