/* ==========================================================================
   G Med — Electro-Medical Equipment
   Global stylesheet
   ========================================================================== */

:root {
  /* Option B — warm emerald / cream / soft gold */
  --navy: #0f5132;        /* deep emerald (primary brand) */
  --navy-dark: #0a3a24;   /* darkest emerald */
  --blue: #1a7a52;        /* mid emerald */
  --teal: #1f9d6b;        /* accent green */
  --teal-dark: #167a51;   /* accent green (dark) */
  --accent: #34c785;      /* mint highlight */
  --gold: #c9a24b;        /* soft gold */
  --ink: #1c2a22;         /* warm green-charcoal */
  --muted: #66766c;       /* warm muted */
  --line: #e6ece2;        /* warm hairline */
  --bg: #ffffff;
  --bg-soft: #f7f5ef;     /* warm cream */
  --bg-alt: #eef3ea;      /* soft green-cream */
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(10, 42, 67, .05), 0 4px 14px rgba(10, 42, 67, .05);
  --shadow-md: 0 10px 34px rgba(10, 42, 67, .10);
  --shadow-lg: 0 26px 64px rgba(10, 42, 67, .16);
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1200px;
  --font: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Poppins", "Inter", "Segoe UI", sans-serif;
  --font-mono: "Poppins", "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.16; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.1vw, 2.4rem); }
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #dbe7f1; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .96rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(23, 162, 184, .34); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--navy-dark);
  color: #b9cede;
  font-size: .84rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #d6e5f1; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { display: inline-flex; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  object-fit: cover;
}
.brand-text { line-height: 1.1; }
.brand-text b { color: var(--navy); font-size: 1.35rem; letter-spacing: .5px; display: block; }
.brand-text small { color: var(--muted); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.brand-logo {
  height: 104px; width: auto; display: block;
}
@media (max-width: 480px) { .brand-logo { height: 68px; padding: 8px 14px; } }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--teal); }
.nav-links > li.active > a { background: var(--bg-alt); }
.nav-links > li.has-dd > a::after { content: " ▾"; font-size: .7rem; color: var(--muted); }

.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  list-style: none;
  margin: 8px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.nav-links > li.has-dd:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 14px; border-radius: 8px; color: var(--ink); font-size: .9rem; }
.dropdown a:hover { background: var(--bg-alt); color: var(--teal); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  color: var(--navy);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0; border-radius: 2px;
  transition: .3s;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: #eaf3fb;
  background:
    linear-gradient(120deg, rgba(7, 43, 70, .93) 0%, rgba(10, 61, 98, .80) 45%, rgba(23, 162, 184, .55) 100%),
    url("../assets/medical-bill.jpg") center/cover no-repeat;
  overflow: hidden;
}
.hero .container {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.hero .eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 20px; max-width: 15ch; }
.hero p { font-size: 1.18rem; color: #d5e6f2; max-width: 58ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 55%, var(--teal-dark));
  color: #eaf3fb;
  padding: 92px 0 80px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #cfe1ef; max-width: 60ch; margin: 0 auto; }
.breadcrumb { margin-top: 18px; font-size: .9rem; color: #a9c6dc; }
.breadcrumb a { color: #d6e5f1; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats {
  background: var(--teal);
  color: #fff;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 44px;
  padding-bottom: 44px;
  text-align: center;
}
.stat b { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.stat span { font-size: .92rem; opacity: .9; }

/* ==========================================================================
   Feature / focus cards
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--bg-alt);
  color: var(--teal);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ==========================================================================
   About split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
/* Contain variant — for graphics, logos and wide banners that must not be cropped */
.split-media--contain {
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  padding: 38px;
  background: linear-gradient(135deg, var(--bg-alt), #dbeafe);
}
.split-media--contain img {
  width: auto; height: auto;
  max-width: 100%; max-height: 320px;
  object-fit: contain;
}
.split-media--lg { padding: 10px; position: relative; }
.split-media--lg img {
  max-height: 600px;
  filter: brightness(.87) contrast(1.15) saturate(1.15);
}
.split-media--lg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.split ul.checks { list-style: none; padding: 0; margin: 18px 0 26px; }
.split ul.checks li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
}
.split ul.checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--teal); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700;
}

/* ==========================================================================
   Products
   ========================================================================== */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-alt), #dbeafe);
  display: grid; place-items: center;
  color: var(--blue);
}
.product-thumb svg { width: 74px; height: 74px; opacity: .8; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.contain { background: #fff; }
.product-thumb.contain img { object-fit: contain; padding: 16px; }
.product-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-body .tag {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal); font-weight: 700; margin-bottom: 6px;
}
.product-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.product-body p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; flex: 1; }
.product-body .more { font-weight: 600; font-size: .9rem; color: var(--teal); }

/* Category chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.chip {
  padding: 9px 20px; border-radius: 30px;
  border: 1px solid var(--line); background: #fff;
  font-weight: 600; font-size: .9rem; color: var(--ink);
  cursor: pointer; transition: all .2s ease;
}
.chip:hover, .chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ==========================================================================
   Services list
   ========================================================================== */
.service-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-row .num {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 1.3rem;
}
.service-row h3 { font-size: 1.2rem; margin-bottom: 6px; }
.service-row p { color: var(--muted); margin: 0; }

/* ==========================================================================
   Clients
   ========================================================================== */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.client-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 120px;
  display: grid; place-items: center;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}
.client-logo:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-4px); }
.client-logo small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; margin-top: 4px; }

.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.testimonial p { font-style: italic; color: var(--ink); font-size: 1.02rem; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial .who .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-alt); color: var(--navy);
  display: grid; place-items: center; font-weight: 800;
}
.testimonial .who b { color: var(--navy); display: block; font-size: .95rem; }
.testimonial .who span { color: var(--muted); font-size: .84rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.office {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.office h3 { font-size: 1.15rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.office h3 .pin { color: var(--teal); }
.office .line { display: flex; gap: 12px; margin-bottom: 10px; color: var(--ink); font-size: .95rem; }
.office .line svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }

.contact-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23, 162, 184, .15);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none;
  background: #e7f7ef; border: 1px solid #b6e4cc;
  color: #1a7f4b; padding: 12px 16px; border-radius: 10px;
  margin-bottom: 18px; font-size: .92rem;
}
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 26px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   CTA band + Newsletter
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--teal-dark));
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d5e6f2; max-width: 60ch; margin: 0 auto 26px; }

.newsletter {
  background: var(--navy-dark);
  color: #cfe1ef;
  padding: 56px 0;
}
.newsletter .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.newsletter h3 { color: #fff; margin-bottom: 4px; }
.newsletter p { margin: 0; color: #a9c6dc; }
.newsletter form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter input {
  padding: 13px 18px; border-radius: 40px; border: none;
  min-width: 280px; font-size: .95rem; font-family: inherit;
}
.newsletter input:focus { outline: 2px solid var(--teal); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #061f34; color: #9db6cc; padding: 62px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .04em; }
.site-footer .brand-text b { color: #fff; }
.site-footer p { color: #9db6cc; font-size: .92rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9db6cc; font-size: .92rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: grid; place-items: center; color: #cfe1ef;
}
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-bottom {
  text-align: center; padding: 22px 0; font-size: .86rem; color: #7f9ab2;
}

/* ==========================================================================
   Inquiry form (premium)
   ========================================================================== */
.inquiry-wrap { margin-top: -70px; position: relative; z-index: 5; padding-bottom: 90px; }
.inquiry-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 61, 98, .22);
}

/* Left brand panel */
.inquiry-aside {
  position: relative;
  padding: 48px 42px;
  color: #eaf3fb;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 45%, var(--teal-dark) 100%);
  overflow: hidden;
}
.inquiry-aside::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(46,196,182,.35), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(255,255,255,.10), transparent 40%);
  pointer-events: none;
}
.inquiry-aside > * { position: relative; z-index: 1; }
.inquiry-aside .eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .76rem; }
.inquiry-aside h2 { color: #fff; font-size: 1.9rem; margin: 12px 0 14px; }
.inquiry-aside p.lead { color: #d5e6f2; font-size: 1rem; margin-bottom: 30px; }
.inquiry-contact { list-style: none; padding: 0; margin: 0 0 30px; }
.inquiry-contact li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.inquiry-contact .ic {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center; color: #fff;
}
.inquiry-contact .ic svg { width: 20px; height: 20px; }
.inquiry-contact small { display: block; color: #a9c6dc; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.inquiry-contact b { color: #fff; font-weight: 600; font-size: .96rem; word-break: break-word; }
.inquiry-contact a { color: #fff; }
.inquiry-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.inquiry-trust span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 13px; border-radius: 30px; font-size: .8rem; color: #eaf3fb;
}

/* Right form panel */
.inquiry-form { padding: 48px 44px; }
.inquiry-form h3 { font-size: 1.5rem; margin-bottom: 4px; }
.inquiry-form .sub { color: var(--muted); font-size: .95rem; margin-bottom: 26px; }

.iform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.iform-field { position: relative; margin-bottom: 20px; }
.iform-field.full { grid-column: 1 / -1; }
.iform-field label { display: block; font-weight: 600; font-size: .84rem; margin-bottom: 7px; color: var(--navy); }
.iform-field label .req { color: #e0455e; }
.iform-input {
  position: relative;
}
.iform-input svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted); pointer-events: none;
  transition: color .2s ease;
}
.iform-field input,
.iform-field select,
.iform-field textarea {
  width: 100%;
  padding: 13px 15px 13px 42px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit; font-size: .95rem; color: var(--ink);
  background: var(--bg-soft);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.iform-field textarea { padding-left: 15px; resize: vertical; min-height: 120px; }
.iform-field select { appearance: none; cursor: pointer; }
.iform-field input:focus,
.iform-field select:focus,
.iform-field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23,162,184,.14);
  background: #fff;
}
.iform-field input:focus + svg { color: var(--teal); }
.iform-input:focus-within svg { color: var(--teal); }
.iform-input .chev {
  left: auto; right: 14px;
}

/* Interest / type chips */
.iform-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.iform-chips input { position: absolute; opacity: 0; pointer-events: none; }
.iform-chips label {
  display: inline-block; margin: 0;
  padding: 9px 16px; border-radius: 30px;
  border: 1.5px solid var(--line); background: #fff;
  font-weight: 600; font-size: .85rem; color: var(--ink);
  cursor: pointer; transition: all .2s ease;
}
.iform-chips input:checked + label {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.iform-chips label:hover { border-color: var(--teal); }

.iform-consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 22px; }
.iform-consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal); flex-shrink: 0; }
.iform-consent label { font-size: .85rem; color: var(--muted); margin: 0; font-weight: 500; }

.iform-submit {
  width: 100%;
  padding: 15px 24px;
  border: none; border-radius: 40px;
  background: linear-gradient(120deg, var(--navy), var(--teal));
  color: #fff; font-weight: 700; font-size: 1rem; cursor: pointer;
  box-shadow: 0 12px 30px rgba(23,162,184,.32);
  transition: transform .18s ease, box-shadow .18s ease, filter .2s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.iform-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(23,162,184,.4); }
.iform-submit svg { width: 19px; height: 19px; }

.iform-alert {
  display: none;
  align-items: flex-start; gap: 12px;
  background: #e7f7ef; border: 1px solid #b6e4cc; color: #14663c;
  padding: 14px 16px; border-radius: 12px; margin-bottom: 22px; font-size: .92rem;
}
.iform-alert.show { display: flex; }
.iform-alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: #1a9e5f; }
.iform-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 14px; }

@media (max-width: 900px) {
  .inquiry-card { grid-template-columns: 1fr; }
  .inquiry-aside { padding: 40px 32px; }
  .inquiry-form { padding: 38px 30px; }
}
@media (max-width: 560px) {
  .inquiry-wrap { margin-top: -50px; }
  .iform-grid { grid-template-columns: 1fr; }
  .inquiry-form { padding: 30px 22px; }
  .inquiry-aside { padding: 34px 24px; }
}

/* ==========================================================================
   Executive team (modern image-forward cards)
   ========================================================================== */
.exec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1010px;
  margin: 0 auto;
}
.exec-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
}
.exec-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
  z-index: 3;
}
.exec-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.exec-card:hover::before { transform: scaleX(1); }

.exec-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt), #dbeafe);
}
.exec-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.exec-card:hover .exec-media img { transform: scale(1.07); }
.exec-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,43,70,.72) 0%, rgba(7,43,70,.15) 40%, transparent 70%);
  opacity: 0; transition: opacity .4s ease;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 18px;
  z-index: 2;
}
.exec-card:hover .exec-scrim { opacity: 1; }
.exec-social { display: flex; gap: 10px; transform: translateY(14px); transition: transform .4s ease; }
.exec-card:hover .exec-social { transform: translateY(0); }
.exec-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center; color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.exec-social a:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.exec-social svg { width: 18px; height: 18px; }

.exec-body { padding: 22px 22px 26px; text-align: center; position: relative; }
.exec-name { font-size: 1.24rem; color: var(--navy); font-weight: 700; margin: 0 0 10px; }
.exec-role {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--teal-dark);
  font-weight: 700; font-size: .7rem;
  letter-spacing: .13em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px;
  margin-bottom: 18px;
}
.exec-contact { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); padding-top: 16px; }
.exec-contact li {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: .9rem; margin-bottom: 9px;
}
.exec-contact li:last-child { margin-bottom: 0; }
.exec-contact li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.exec-contact a { color: var(--ink); word-break: break-word; font-weight: 500; }
.exec-contact a:hover { color: var(--teal); }

@media (max-width: 820px) { .exec-grid { grid-template-columns: 1fr 1fr; max-width: 620px; } }
@media (max-width: 520px) { .exec-grid { grid-template-columns: 1fr; max-width: 360px; } }

/* ==========================================================================
   Brand / solutions slider
   ========================================================================== */
.brand-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
  border: 1px solid var(--line);
}
.brand-slides { position: relative; width: 100%; aspect-ratio: 1920 / 620; }
.brand-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .6s ease;
}
.brand-slide.active { opacity: 1; visibility: visible; }
.brand-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.bs-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(10, 61, 98, .55); color: #fff;
  border: none; cursor: pointer; z-index: 3;
  display: grid; place-items: center;
  transition: background .2s ease;
  backdrop-filter: blur(2px);
}
.bs-btn:hover { background: var(--navy); }
.bs-btn svg { width: 22px; height: 22px; }
.bs-prev { left: 16px; }
.bs-next { right: 16px; }

.bs-dots {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 9px;
}
.bs-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.bs-dot.active { background: #fff; transform: scale(1.25); }

@media (max-width: 620px) {
  .bs-btn { width: 38px; height: 38px; }
  .bs-btn svg { width: 18px; height: 18px; }
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 90px 20px 30px;
    box-shadow: var(--shadow-lg);
    transition: right .3s ease;
    gap: 4px;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links > li > a { padding: 12px 14px; }
  .nav-links > li.has-dd .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    margin: 0 0 0 12px; padding: 0; min-width: auto;
  }
  .nav-cta .btn { display: none; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .newsletter .container { flex-direction: column; align-items: flex-start; }
  .newsletter input { min-width: 100%; }
  .topbar-info { display: none; }
}

/* ==========================================================================
   v2 — Precision-medical polish layer
   (Signature: patient-monitor readouts, ECG accents, pulse "vital" dots)
   ========================================================================== */

body { text-rendering: optimizeLegibility; }

/* --- Eyebrow: pulsing vital-sign dot --- */
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px; margin-right: 9px;
  border-radius: 50%;
  background: var(--teal);
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(23, 162, 184, .5);
  animation: gm-pulse 2.4s ease-out infinite;
}
@keyframes gm-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(23, 162, 184, .5); }
  70%  { box-shadow: 0 0 0 9px rgba(23, 162, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(23, 162, 184, 0); }
}

/* --- Buttons: gradient + sheen sweep --- */
.btn-primary {
  background: linear-gradient(135deg, #22b8c8 0%, var(--teal) 55%, var(--teal-dark) 100%);
  box-shadow: 0 10px 26px rgba(23, 162, 184, .30);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.38) 50%, transparent 100%);
  transform: translateX(-135%) skewX(-18deg);
  transition: transform .75s ease;
}
.btn-primary:hover::after { transform: translateX(135%) skewX(-18deg); }

/* --- Nav: underline indicator on hover --- */
@media (min-width: 821px) {
  .nav-links > li > a { position: relative; }
  .nav-links > li > a::after {
    content: "";
    position: absolute; left: 16px; right: 16px; bottom: 4px;
    height: 2px; border-radius: 2px;
    background: var(--teal);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
  }
  .nav-links > li:not(.active) > a:hover::after { transform: scaleX(1); }
}

/* --- Cards: gradient accent bar wipes in on hover --- */
.card { position: relative; overflow: hidden; }
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.card:hover::before { transform: scaleX(1); }

/* --- Icon tiles: soft gradient + hairline --- */
.card .icon {
  background: linear-gradient(135deg, rgba(30,111,184,.12), rgba(46,196,182,.18));
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(23,162,184,.16);
}

/* --- Stats: patient-monitor readout --- */
.stats {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='90' viewBox='0 0 320 90'%3E%3Cpath d='M0 45 H95 l9 -22 l11 46 l13 -62 l13 78 l11 -40 h22 l9 -12 H320' fill='none' stroke='%232ec4b6' stroke-opacity='0.22' stroke-width='2'/%3E%3C/svg%3E") left center repeat-x,
    radial-gradient(120% 150% at 12% 0%, #0c496b 0%, var(--navy) 45%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.stat b {
  font-family: var(--font-mono);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -2px;
  text-shadow: 0 0 22px rgba(46,196,182,.5);
}
.stat span {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .78rem;
  font-weight: 500;
  opacity: .82;
}

/* --- Inner page hero: ambient glows --- */
.page-hero { position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(520px 320px at 86% 8%, rgba(46,196,182,.30), transparent 62%),
    radial-gradient(460px 320px at 8% 105%, rgba(30,111,184,.34), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

/* --- CTA band: ambient glows --- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 340px at 90% -20%, rgba(46,196,182,.30), transparent 60%),
    radial-gradient(500px 300px at 5% 120%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }

/* --- Accessibility: visible focus + reduced motion --- */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   OPTION B — warm emerald theme overrides
   (redefines hardcoded cool gradients/glows from the base + polish layers)
   ========================================================================== */

/* Poppins is slightly wider than Sora — relax the display tracking */
h1, h2, h3, h4 { letter-spacing: -0.015em; }

/* Hero: emerald overlay instead of navy/teal */
.hero {
  background:
    linear-gradient(120deg, rgba(10, 58, 36, .93) 0%, rgba(15, 81, 50, .82) 45%, rgba(31, 157, 107, .55) 100%),
    url("../assets/medical-bill.jpg") center/cover no-repeat;
}

/* Primary button: emerald gradient + gold-free sheen */
.btn-primary {
  background: linear-gradient(135deg, #2bb079 0%, var(--teal) 55%, var(--teal-dark) 100%);
  box-shadow: 0 10px 26px rgba(31, 157, 107, .30);
}

/* Eyebrow pulse: green */
.eyebrow::before {
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(31, 157, 107, .5);
  animation: gm-pulse-g 2.4s ease-out infinite;
}
@keyframes gm-pulse-g {
  0%   { box-shadow: 0 0 0 0 rgba(31, 157, 107, .5); }
  70%  { box-shadow: 0 0 0 9px rgba(31, 157, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 157, 107, 0); }
}

/* Icon tiles: warm emerald wash + soft gold hairline */
.card .icon {
  background: linear-gradient(135deg, rgba(15,81,50,.10), rgba(52,199,133,.18));
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(201,162,75,.28);
}

/* Card accent bar: emerald → gold */
.card::before { background: linear-gradient(90deg, var(--navy), var(--gold)); }

/* Stats panel: emerald readout, green ECG line, Poppins digits */
.stats {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='90' viewBox='0 0 320 90'%3E%3Cpath d='M0 45 H95 l9 -22 l11 46 l13 -62 l13 78 l11 -40 h22 l9 -12 H320' fill='none' stroke='%2334c785' stroke-opacity='0.22' stroke-width='2'/%3E%3C/svg%3E") left center repeat-x,
    radial-gradient(120% 150% at 12% 0%, #14603c 0%, var(--navy) 45%, var(--navy-dark) 100%);
}
.stat b {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 0 22px rgba(52,199,133,.45);
}

/* Inner-page hero glows: emerald + gold */
.page-hero {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 55%, var(--teal-dark));
}
.page-hero::before {
  background:
    radial-gradient(520px 320px at 86% 8%, rgba(52,199,133,.28), transparent 62%),
    radial-gradient(460px 320px at 8% 105%, rgba(201,162,75,.22), transparent 60%);
}

/* CTA band: emerald + gold glows */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--teal-dark)); }
.cta-band::before {
  background:
    radial-gradient(600px 340px at 90% -20%, rgba(52,199,133,.28), transparent 60%),
    radial-gradient(500px 300px at 5% 120%, rgba(201,162,75,.18), transparent 60%);
}

/* Team card top accent + role pill in emerald */
.exec-card::before { background: linear-gradient(90deg, var(--navy), var(--gold)); }
.exec-photo, .team-photo { box-shadow: 0 0 0 3px var(--teal), var(--shadow-sm); }

/* Inquiry form aside + submit: emerald gradient */
.inquiry-aside {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 45%, var(--teal-dark) 100%);
}
.iform-submit { background: linear-gradient(120deg, var(--navy), var(--teal)); }

/* ==========================================================================
   OPTION B — FULL REDESIGN  ·  "Aurora Glass Bento"
   Distinct layout system: floating glass nav, aurora hero, bento grids,
   brand marquee, glass cards. Space Grotesk display + Inter body.
   ========================================================================== */
:root {
  --navy: #142a4d;
  --navy-dark: #0d1c36;
  --blue: #4f6ef7;
  --teal: #0ea5a4;
  --teal-dark: #0b8483;
  --accent: #22d3ee;
  --indigo: #6366f1;
  --ink: #0e1a2b;
  --muted: #5b6b82;
  --line: #e6ecf4;
  --bg: #ffffff;
  --bg-soft: #eef2f9;
  --bg-alt: #e9eef8;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --shadow-sm: 0 2px 10px rgba(20, 42, 77, .06);
  --shadow-md: 0 14px 40px rgba(20, 42, 77, .12);
  --shadow-lg: 0 30px 70px rgba(20, 42, 77, .18);
  --radius: 16px;
  --radius-lg: 26px;
  --aurora: radial-gradient(60% 90% at 15% 20%, rgba(99,102,241,.55), transparent 60%),
            radial-gradient(55% 85% at 85% 15%, rgba(34,211,238,.50), transparent 60%),
            radial-gradient(70% 90% at 60% 100%, rgba(14,165,164,.45), transparent 60%);
}

body { background: var(--bg-soft); }
h1, h2, h3, h4 { letter-spacing: -0.03em; }
::selection { background: rgba(14,165,164,.22); }

/* ---------- Buttons ---------- */
.btn { border-radius: 14px; font-weight: 600; padding: 14px 28px; }
.btn-primary {
  background: linear-gradient(120deg, var(--teal) 0%, var(--indigo) 100%) !important;
  box-shadow: 0 12px 28px rgba(79,110,247,.30) !important;
}
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.65); border-radius: 14px; }
.btn-ghost {
  background: #fff; border: 1.5px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Floating glass header ---------- */
.site-header {
  position: sticky; top: 14px; z-index: 60;
  background: transparent; border: none; box-shadow: none;
  backdrop-filter: none;
}
.site-header > .nav {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow-md);
  border-radius: 18px;
  padding: 8px 12px 8px 18px;
  min-height: 84px;
}
.nav-links > li.active > a { background: var(--bg-alt); color: var(--teal-dark); }
.nav-links > li > a:hover { color: var(--teal); }

/* ---------- Eyebrow: gradient tag chip ---------- */
.eyebrow {
  display: inline-flex !important; align-items: center;
  padding: 6px 14px; border-radius: 30px;
  background: linear-gradient(120deg, rgba(14,165,164,.12), rgba(99,102,241,.12));
  border: 1px solid rgba(99,102,241,.20);
  color: var(--teal-dark) !important;
  letter-spacing: .1em !important;
}
.eyebrow::before { background: var(--teal); }

/* ---------- Section rhythm ---------- */
.section { padding: 96px 0; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }

/* ---------- Glass cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.card::before { display: none; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,164,.35); }
.card .icon {
  width: 62px; height: 62px; border-radius: 18px;
  background: linear-gradient(135deg, var(--teal), var(--indigo));
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(79,110,247,.28);
}
.card .icon svg { width: 28px; height: 28px; }

/* ---------- Stats: light glass with aurora edge ---------- */
.stats { background: var(--navy-dark); position: relative; overflow: hidden; }
.stats::after {
  content: ""; position: absolute; inset: 0; opacity: .8;
  background: var(--aurora); mix-blend-mode: screen; pointer-events: none;
}
.stats .container { position: relative; z-index: 1; }
.stat b { font-family: var(--font-display); font-weight: 700; text-shadow: 0 0 28px rgba(34,211,238,.5); letter-spacing: -1px; }

/* ---------- Inner page hero: aurora dark ---------- */
.page-hero {
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .9;
  background: var(--aurora); mix-blend-mode: screen;
}

/* ---------- CTA band: aurora ---------- */
.cta-band { background: var(--navy-dark); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .85;
  background: var(--aurora); mix-blend-mode: screen;
}

/* ---------- Product / service / client cards → glass ---------- */
.product-card, .service-row, .client-logo, .testimonial, .office,
.exec-card, .contact-form, .brand-slider {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.product-card:hover, .service-row:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.chip { border-radius: 14px; }
.chip.active, .chip:hover { background: linear-gradient(120deg, var(--teal), var(--indigo)); border-color: transparent; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(60% 120% at 90% 0%, rgba(34,211,238,.18), transparent 55%),
              radial-gradient(60% 120% at 0% 100%, rgba(99,102,241,.20), transparent 55%);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

/* ==========================================================================
   Homepage-only redesign components
   ========================================================================== */

/* Aurora hero */
.ax-hero { position: relative; overflow: hidden; padding: 60px 0 84px; background: var(--bg-soft); }
.ax-hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 90%;
  background: var(--aurora); filter: blur(30px); opacity: .55; pointer-events: none;
}
.ax-hero .container { position: relative; z-index: 1; }
.ax-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.ax-copy .eyebrow { margin-bottom: 20px; }
.ax-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem); line-height: 1.05; margin-bottom: 20px;
  letter-spacing: -0.035em;
}
.ax-copy h1 .grad {
  background: linear-gradient(110deg, var(--teal), var(--indigo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ax-copy p.lead { font-size: 1.14rem; color: var(--muted); max-width: 54ch; margin-bottom: 30px; }
.ax-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.ax-trust { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: .88rem; }
.ax-trust b { color: var(--ink); font-weight: 700; font-family: var(--font-display); }

/* Bento cluster */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 128px;
  gap: 16px;
}
.b-tile {
  border-radius: 22px; padding: 20px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; position: relative;
}
.b-tile .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.b-tile .v { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1; }
.b-photo { grid-row: span 2; padding: 0; }
.b-photo img { width: 100%; height: 100%; object-fit: cover; }
.b-dark {
  grid-column: span 2;
  background: linear-gradient(120deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: #fff; border: none;
}
.b-dark .k { color: rgba(255,255,255,.75); }
.b-dark .v { color: #fff; }
.b-pulse { display: flex; align-items: center; gap: 8px; }
.b-pulse span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(34,211,238,.6); animation: gm-pulse-g 2s infinite; }
.b-ecg { position: absolute; right: -6px; bottom: 8px; width: 120px; opacity: .5; }

/* Brand marquee */
.marquee { padding: 34px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-label { text-align: center; color: var(--muted); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 22px; }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: gm-marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 66px; width: auto; object-fit: contain; border-radius: 12px; opacity: .95; }
@keyframes gm-marquee { to { transform: translateX(-50%); } }

/* Bento capabilities grid */
.cap-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap { grid-column: span 1; }
.cap.wide { grid-column: span 2; }
.cap-hero {
  grid-column: span 2; grid-row: span 2;
  background: linear-gradient(150deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: #fff; border: none; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.cap-hero::after { content: ""; position: absolute; inset: 0; background: var(--aurora); mix-blend-mode: screen; opacity: .7; }
.cap-hero > * { position: relative; z-index: 1; }
.cap-hero h3 { color: #fff; font-size: 1.5rem; }
.cap-hero p { color: rgba(255,255,255,.82); }

@media (max-width: 900px) {
  .ax-grid { grid-template-columns: 1fr; }
  .bento { grid-auto-rows: 110px; }
  .cap-bento { grid-template-columns: repeat(2, 1fr); }
  .cap.wide, .cap-hero { grid-column: span 2; }
  .cap-hero { grid-row: auto; min-height: 220px; }
}
@media (max-width: 560px) {
  .section { padding: 66px 0; }
  .cap-bento { grid-template-columns: 1fr; }
  .cap.wide, .cap-hero { grid-column: span 1; }
  .marquee-track img { height: 52px; }
}

/* ==========================================================================
   Clients widget — aurora gradient tone, white text
   ========================================================================== */
.client-logo {
  background: linear-gradient(135deg, var(--teal) 0%, var(--indigo) 100%);
  border: none;
  color: #fff;
  box-shadow: 0 12px 28px rgba(79, 110, 247, .26);
}
.client-logo small { color: rgba(255, 255, 255, .82); }
.client-logo:hover {
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(79, 110, 247, .38);
  filter: saturate(1.08);
}

/* ==========================================================================
   Homepage product carousel
   ========================================================================== */
.pslider { position: relative; }
.ps-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 22px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ps-track::-webkit-scrollbar { display: none; }

.ps-card {
  flex: 0 0 300px;
  max-width: 300px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.ps-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,164,.35); }
.ps-thumb {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: grid; place-items: center;
  overflow: hidden;
}
.ps-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.ps-card:hover .ps-thumb img { transform: scale(1.07); }
.ps-info { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ps-tag {
  align-self: flex-start;
  font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
  color: var(--teal-dark); background: var(--bg-alt);
  padding: 4px 11px; border-radius: 20px;
}
.ps-info h3 { font-size: 1.06rem; margin: 4px 0 0; color: var(--navy); line-height: 1.25; }
.ps-more { margin-top: auto; padding-top: 8px; color: var(--teal); font-weight: 600; font-size: .9rem; }
.ps-card:hover .ps-more { color: var(--indigo); }

.ps-nav {
  position: absolute; top: 38%; transform: translateY(-50%);
  z-index: 4; width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md); cursor: pointer;
  display: grid; place-items: center; color: var(--navy);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.ps-nav:hover { background: linear-gradient(120deg, var(--teal), var(--indigo)); color: #fff; transform: translateY(-50%) scale(1.06); }
.ps-nav svg { width: 22px; height: 22px; }
.ps-prev { left: -6px; }
.ps-next { right: -6px; }

.ps-progress { height: 4px; background: var(--line); border-radius: 4px; margin: 8px auto 0; max-width: 340px; overflow: hidden; }
.ps-progress span {
  display: block; height: 100%; width: 22%;
  background: linear-gradient(90deg, var(--teal), var(--indigo));
  border-radius: 4px;
  transition: width .25s ease, margin-left .25s ease;
}

@media (max-width: 900px) { .ps-nav { top: 34%; } }
@media (max-width: 640px) {
  .ps-card { flex-basis: 76%; max-width: 76%; }
  .ps-prev { left: 2px; } .ps-next { right: 2px; }
  .ps-nav { width: 42px; height: 42px; }
}
