/* ==========================================================================
   Syntra Medical Solutions — Design System
   Palette: Deep navy #0A2540 · Teal #00A3A1 / #52C3C2 · Green #5BA53C
   ========================================================================== */

:root {
  --navy: #0A2540;
  --navy-2: #071B31;
  --navy-3: #10355C;
  --teal: #00A3A1;
  --teal-2: #52C3C2;
  --teal-soft: #E4F6F6;
  --green: #5BA53C;
  --ink: #12283F;
  --muted: #52677C;
  --line: #E2EAF0;
  --bg: #F5F9FB;
  --white: #ffffff;
  --grad-teal: linear-gradient(135deg, #00A3A1 0%, #2FBDBB 55%, #52C3C2 100%);
  --grad-navy: linear-gradient(150deg, #0E2F52 0%, #0A2540 55%, #071B31 100%);
  --shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 14px 40px -12px rgba(10, 37, 64, 0.18);
  --shadow-lg: 0 30px 70px -20px rgba(10, 37, 64, 0.28);
  --shadow-teal: 0 16px 38px -10px rgba(0, 163, 161, 0.45);
  --radius: 20px;
  --radius-lg: 28px;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--teal-2); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--navy); color: #fff; padding: .8rem 1.4rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout utilities ---------- */
.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-soft { background: var(--bg); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-size: .8rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 3px; background: var(--grad-teal); }
.section-head.center .eyebrow::after { content: ""; width: 34px; height: 3px; border-radius: 3px; background: var(--grad-teal); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 700; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--muted); margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  padding: 1.05rem 2rem; border-radius: 999px; line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-call { background: var(--grad-teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -10px rgba(0,163,161,.55); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 2px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-sm { padding: .75rem 1.4rem; font-size: .98rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.15rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-family: var(--font-display); color: var(--teal);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .25s ease; }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -12px rgba(10,37,64,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand-logo { height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2.2rem; }
.main-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--navy);
  position: relative; padding: .4rem 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--grad-teal); border-radius: 3px; transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 12px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; position: absolute; left: 12px; width: 24px; height: 2.5px;
  background: var(--navy); border-radius: 3px; transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: .4rem;
  padding: 1rem 4% 1.6rem; background: #fff; border-bottom: 1px solid var(--line);
}
.mobile-nav a.mn-link {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy);
  padding: .85rem .4rem; border-bottom: 1px solid var(--line);
}
.mobile-nav a.mn-link.active { color: var(--teal); }
.mobile-nav .btn { margin-top: .9rem; }
.mobile-nav.open { display: flex; }

/* ---------- Mobile sticky call bar ---------- */
.mobile-call-bar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 190;
  align-items: center; justify-content: center; gap: .6rem;
  background: var(--grad-teal); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  padding: 1.05rem; border-radius: 999px; box-shadow: var(--shadow-teal);
}
.mobile-call-bar svg { width: 22px; height: 22px; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 4rem) 0 9rem;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(7,27,49,.94) 0%, rgba(10,37,64,.82) 42%, rgba(0,90,90,.55) 100%);
}
.hero-content { max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px); border-radius: 999px; padding: .55rem 1.2rem;
  font-size: .92rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 1.6rem;
}
.hero-badge svg { width: 17px; height: 17px; color: var(--teal-2); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
.hero h1 .accent {
  background: linear-gradient(90deg, #52C3C2, #8FE3D9);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .h1-line { white-space: nowrap; }
.hero-sub { font-size: clamp(1.12rem, 1.8vw, 1.35rem); color: rgba(255,255,255,.88); margin-top: 1.4rem; max-width: 620px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-top: 3rem; }
.hero-trust li { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .98rem; color: rgba(255,255,255,.92); }
.hero-trust svg { width: 20px; height: 20px; color: var(--teal-2); flex: none; }

/* Stats band overlapping hero */
.stats-band { position: relative; z-index: 5; margin-top: -5.5rem; }
.stats-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 2.2rem 1rem; text-align: center;
}
.stat { padding: 0 1rem; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 800;
  background: linear-gradient(120deg, var(--teal), var(--navy-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { font-size: .95rem; color: var(--muted); font-weight: 600; margin-top: .2rem; }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 1.6rem 0; background: var(--navy-2); color: rgba(255,255,255,.85); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2.6rem; }
.trust-strip span { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; font-weight: 600; letter-spacing: .02em; }
.trust-strip svg { width: 17px; height: 17px; color: var(--teal-2); }

/* ---------- Solution cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.sol-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.9rem; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.sol-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(0,163,161,.35); }
.sol-icon {
  width: 62px; height: 62px; border-radius: 18px; background: var(--grad-teal);
  display: grid; place-items: center; box-shadow: var(--shadow-teal);
}
.sol-icon svg { width: 30px; height: 30px; color: #fff; }
.sol-card p { color: var(--muted); font-size: 1.02rem; flex: 1; }

/* ---------- Split sections (mission / solutions page) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.split.rev > .split-media { order: 2; }
.split-media { position: relative; }
.split-media .img-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
}
.split-media .img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.split-media:hover .img-frame img { transform: scale(1.05); }
.float-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.5rem;
}
.float-badge .fb-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-soft); display: grid; place-items: center; flex: none; }
.float-badge .fb-icon svg { width: 26px; height: 26px; color: var(--teal); }
.float-badge strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1.02rem; }
.float-badge small { color: var(--muted); font-size: .85rem; }

.check-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.check-list li { display: flex; gap: .9rem; align-items: flex-start; font-weight: 600; color: var(--navy); font-size: 1.06rem; }
.check-list svg { width: 24px; height: 24px; color: var(--teal); flex: none; margin-top: .15rem; }
.split-copy .lead { margin-top: 1.2rem; }
.split-copy p.body-copy { color: var(--muted); margin-top: 1.1rem; }
.split-copy .btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; counter-reset: step; position: relative; }
.step-card {
  background: #fff; border-radius: var(--radius); padding: 2.4rem 2rem 2.2rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; line-height: 1;
  background: linear-gradient(140deg, rgba(0,163,161,.22), rgba(82,195,194,.08));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1.1rem;
}
.step-card p { color: var(--muted); font-size: 1.02rem; margin-top: .6rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 2.2rem 2rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.2rem; position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card .stars { display: flex; gap: .2rem; }
.testi-card .stars svg { width: 18px; height: 18px; color: #F5B50A; }
.testi-card blockquote { color: var(--ink); font-size: 1.05rem; line-height: 1.65; flex: 1; }
.testi-who { display: flex; align-items: center; gap: .9rem; }
.testi-who .avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--grad-teal);
  display: grid; place-items: center; color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.05rem; flex: none;
}
.testi-who strong { display: block; color: var(--navy); font-size: .98rem; }
.testi-who small { color: var(--muted); font-size: .87rem; }

/* ---------- CTA banner + forms ---------- */
.cta-banner { position: relative; overflow: hidden; background: var(--grad-navy); color: #fff; }
.cta-banner::before {
  content: ""; position: absolute; top: -40%; right: -10%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,163,161,.35), transparent 65%);
}
.cta-banner::after {
  content: ""; position: absolute; bottom: -50%; left: -12%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(82,195,194,.22), transparent 65%);
}
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.cta-inner h2 { color: #fff; }
.cta-inner .lead { color: rgba(255,255,255,.82); }
.cta-phone {
  display: inline-flex; align-items: center; gap: 1rem; margin-top: 2rem;
  background: var(--grad-teal); color: #fff; border-radius: 999px;
  padding: 1.15rem 2.2rem; box-shadow: var(--shadow-teal);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-phone:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 24px 50px -10px rgba(0,163,161,.6); }
.cta-phone svg { width: 30px; height: 30px; }
.cta-note { margin-top: 1.2rem; color: rgba(255,255,255,.72); font-size: .95rem; }

.form-card {
  position: relative; z-index: 2; background: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-lg); color: var(--ink);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.form-card .form-sub { color: var(--muted); font-size: .98rem; margin-bottom: 1.6rem; }
.lead-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: .4rem; }
.field label .req { color: var(--teal); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1.02rem; color: var(--ink);
  background: var(--bg); border: 2px solid var(--line); border-radius: 14px;
  padding: .9rem 1.1rem; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(0,163,161,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-privacy { font-size: .85rem; color: var(--muted); }
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.show { display: block; }
.form-success .fs-icon {
  width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%;
  background: var(--teal-soft); display: grid; place-items: center;
}
.form-success .fs-icon svg { width: 36px; height: 36px; color: var(--teal); }
.form-success h3 { margin-bottom: .5rem; }
.form-success p { color: var(--muted); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  padding: calc(var(--header-h) + 5rem) 0 6rem;
}
.page-hero .hero-bg { z-index: -2; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(7,27,49,.95) 0%, rgba(10,37,64,.85) 50%, rgba(0,95,95,.6) 100%);
}
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; max-width: 780px; }
.page-hero .lead { color: rgba(255,255,255,.88); max-width: 660px; }
.breadcrumb { display: flex; gap: .6rem; align-items: center; font-size: .95rem; color: rgba(255,255,255,.75); margin-bottom: 1.4rem; font-weight: 600; }
.breadcrumb a { color: var(--teal-2); }
.page-hero .hero-ctas { margin-top: 2.2rem; }

/* ---------- Solutions page ---------- */
.cat-split { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.cat-split:nth-of-type(even) { background: var(--bg); }
.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.pill-list li {
  background: var(--teal-soft); color: var(--navy); font-weight: 600; font-size: .92rem;
  border-radius: 999px; padding: .45rem 1.05rem;
}
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.partner-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  padding: 2.3rem 2rem; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.partner-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.partner-card p { color: var(--muted); font-size: 1.02rem; margin-top: .8rem; }

.florida-band { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; }
.florida-band::before {
  content: ""; position: absolute; top: -30%; left: 55%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,163,161,.3), transparent 65%);
}
.florida-band .split { position: relative; z-index: 2; }
.florida-band h2 { color: #fff; }
.florida-band p { color: rgba(255,255,255,.85); margin-top: 1.1rem; }
.florida-band .check-list li { color: #fff; }
.florida-band .check-list svg { color: var(--teal-2); }

/* ---------- Contact page ---------- */
.contact-hero { background: var(--grad-navy); color: #fff; padding: calc(var(--header-h) + 4.5rem) 0 5.5rem; position: relative; overflow: hidden; }
.contact-hero::before {
  content: ""; position: absolute; top: -35%; right: -8%; width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(0,163,161,.32), transparent 65%);
}
.contact-hero .container { position: relative; z-index: 2; text-align: center; }
.contact-hero h1 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.contact-hero .lead { color: rgba(255,255,255,.85); margin-inline: auto; max-width: 640px; }
.big-phone {
  display: inline-flex; align-items: center; gap: 1.1rem; margin-top: 2.4rem;
  background: var(--grad-teal); color: #fff; border-radius: 999px;
  padding: clamp(1.1rem, 2.5vw, 1.6rem) clamp(1.8rem, 4vw, 3rem);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 3rem); letter-spacing: .02em;
  box-shadow: var(--shadow-teal); transition: transform .25s ease, box-shadow .25s ease;
}
.big-phone:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 28px 56px -12px rgba(0,163,161,.62); }
.big-phone svg { width: clamp(28px, 4vw, 40px); height: clamp(28px, 4vw, 40px); }
.contact-hero .chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2.2rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(6px); border-radius: 999px; padding: .5rem 1.1rem;
  font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.92);
}
.chip svg { width: 16px; height: 16px; color: var(--teal-2); }

.contact-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: 2.2rem; align-items: start; }
.info-stack { display: grid; gap: 1.4rem; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; gap: 1.1rem; align-items: flex-start;
}
.info-card .ic-icon { width: 52px; height: 52px; border-radius: 15px; background: var(--teal-soft); display: grid; place-items: center; flex: none; }
.info-card .ic-icon svg { width: 26px; height: 26px; color: var(--teal); }
.info-card h3 { font-size: 1.12rem; margin-bottom: .2rem; }
.info-card p, .info-card a { color: var(--muted); font-size: 1rem; }
.info-card a.strong-link { color: var(--teal); font-weight: 700; font-size: 1.1rem; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-2); color: rgba(255,255,255,.78); }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 2.5rem; padding: 4.5rem 0 3.5rem; }
.footer-brand .logo-chip {
  display: inline-block; background: #fff; border-radius: 18px; padding: 1rem 1.6rem; margin-bottom: 1.3rem;
}
.footer-brand .logo-chip img { height: 88px; width: auto; margin: 0 auto; }
.footer-tag { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-brand p { font-size: .96rem; margin-top: .7rem; max-width: 300px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 1.2rem; letter-spacing: .04em; }
.footer-links { display: grid; gap: .75rem; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .98rem; transition: color .2s ease, padding-left .2s ease; }
.footer-links a:hover { color: var(--teal-2); padding-left: 5px; }
.footer-contact li { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .95rem; font-size: .98rem; }
.footer-contact svg { width: 19px; height: 19px; color: var(--teal-2); flex: none; margin-top: .2rem; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.6rem 0; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; font-size: .88rem; color: rgba(255,255,255,.55); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); transition-delay: var(--d, 0s); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards-grid, .testi-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-inner, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  body { padding-bottom: 74px; }
  /* Mobile polish: headlines, hero & CTA centering */
  h2 { font-size: clamp(1.55rem, 6.2vw, 1.9rem); line-height: 1.2; }
  .hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hero-content { text-align: center; margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge { font-size: .8rem; padding: .45rem 1rem; gap: .45rem; margin-bottom: 1.3rem; }
  .hero-badge svg { width: 15px; height: 15px; }
  .btn-row { justify-content: center; }
  .cta-inner { text-align: center; }
  .cta-inner .lead { margin-inline: auto; }
  .main-nav { display: none; }
  .header-actions .btn-call span.ha-text { display: none; }
  .header-actions .btn-call { padding: .75rem 1rem; }
  .nav-toggle { display: block; }
  .mobile-call-bar { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 0; }
  .stat:nth-child(3) { border-left: none; }
  .float-badge { left: 8px; bottom: -18px; padding: .9rem 1.1rem; }
  .hero { padding-bottom: 10rem; }
  .stats-band { margin-top: -6.5rem; }
}
@media (max-width: 620px) {
  .cards-grid, .testi-grid, .partner-grid, .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .brand-logo { height: 42px; }
  .hero-ctas .btn { width: 100%; }
  .footer-brand .logo-chip img { height: 72px; }
}
