:root {
  --ink: #0c1f33;
  --muted: #5e7183;
  --brand: #073d82;
  --brand-strong: #042b5d;
  --teal: #09988f;
  --teal-bright: #20c8bd;
  --aqua: #e6fbfb;
  --sky: #edf8fc;
  --line: #d7e8ef;
  --card: #ffffff;
  --wash: #f7fbfc;
  --shadow: 0 24px 70px rgba(5, 36, 75, 0.12);
  --box-radius: 5px;
  --box-shadow: 0 16px 36px rgba(5, 36, 75, 0.1);
  --box-shadow-strong: 0 24px 56px rgba(5, 36, 75, 0.14);
  --radius: 28px;
  --container: min(1200px, calc(100% - 72px));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 5px;
  background: var(--brand);
  color: white;
  padding: .75rem 1rem;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 232, 239, .8);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  width: var(--container);
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 72px;
  max-width: 220px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--brand);
  padding: .65rem .75rem;
  font-weight: 800;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
  min-width: 0;
}

.nav-links a {
  border-radius: 5px;
  color: #35506a;
  padding: .72rem 2rem;
  font-size: .9rem;
  font-weight: 750;
  transition: background-color .2s ease, color .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--aqua);
  color: var(--brand);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.nav-links .nav-cta {
  background: var(--brand);
  color: white;
  margin-left: .4rem;
  box-shadow: 0 12px 28px rgba(7, 61, 130, .18);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.is-active {
  background: var(--teal);
  color: white;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 48% at 8% 10%, rgba(32, 200, 189, .24), transparent 62%),
    radial-gradient(ellipse 72% 62% at 96% 0%, rgba(7, 61, 130, .2), transparent 60%),
    linear-gradient(120deg, #fbfeff 0%, #eef8fc 45%, #e2f3fa 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(to right, rgba(7, 61, 130, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7, 61, 130, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .74));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  min-height: 560px;
  padding-block: clamp(2.75rem, 6vw, 5rem);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(9, 152, 143, .28);
  border-radius: 5px;
  background: rgba(255, 255, 255, .78);
  color: var(--teal);
  padding: .5rem .82rem;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: .48rem;
  height: .48rem;
  border-radius: 999px;
  background: var(--teal);
}

.hero h1,
.page-hero h1 {
  color: var(--brand-strong);
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin: 1.1rem 0 1.25rem;
}

.hero-lede,
.page-hero p,
.section-lede {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: .85rem 1.2rem;
  font-weight: 850;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 18px 42px rgba(7, 61, 130, .2);
}

.btn-secondary {
  border-color: var(--line);
  background: white;
  color: var(--brand);
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: rgba(32, 200, 189, .18);
}

.hero-visual::before {
  width: 52%;
  height: 52%;
  right: -8%;
  top: -8%;
}

.hero-visual::after {
  width: 34%;
  height: 34%;
  left: -10%;
  bottom: -8%;
  background: rgba(7, 61, 130, .14);
}

.hero-visual img {
  width: 100%;
  height: clamp(340px, 42vw, 520px);
  border-radius: var(--box-radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--box-shadow-strong);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--box-radius);
  background: var(--line);
  transform: translateY(-34px);
  box-shadow: var(--box-shadow-strong);
}

.metric {
  background: white;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.metric strong {
  display: block;
  color: var(--brand);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.photo-ribbon {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1.05fr;
  align-items: end;
  gap: 1.25rem;
  margin-top: -1.5rem;
}

.photo-card {
  position: relative;
  margin: 0;
  height: 340px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--box-radius);
  background: var(--sky);
  box-shadow: var(--box-shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 27, 57, .72));
}

.photo-card figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  z-index: 1;
  color: white;
  font-size: .9rem;
  font-weight: 850;
}

.photo-card.is-tall {
  height: 420px;
}

.photo-card.is-short {
  height: 300px;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--box-radius);
  background: white;
  box-shadow: var(--box-shadow);
}

.media-frame img {
  width: 100%;
  height: clamp(360px, 40vw, 500px);
  object-fit: cover;
  object-position: center;
}

.section {
  padding-block: clamp(3.75rem, 6vw, 6rem);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, .55fr);
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-kicker {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section h2,
.page-section h2 {
  color: var(--brand-strong);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -.04em;
  margin-bottom: .9rem;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--box-radius);
  background: white;
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.card h3 {
  color: var(--brand-strong);
  font-size: 1.16rem;
  line-height: 1.2;
  margin-bottom: .65rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--aqua), #fff);
  color: var(--teal);
  margin-bottom: 1rem;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.feature-band {
  overflow: hidden;
  border-radius: var(--box-radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 200, 189, .18), transparent 34%),
    linear-gradient(135deg, var(--brand-strong), #061e3e 58%, #082c50);
  color: white;
  padding: clamp(2rem, 5vw, 4rem);
}

.feature-band h2,
.feature-band h3 {
  color: white;
}

.feature-band p {
  color: rgba(255, 255, 255, .76);
}

.feature-band .card h3 {
  color: var(--brand-strong);
}

.feature-band .card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split img {
  border-radius: var(--box-radius);
  background: white;
}

.split > .media-frame,
.split > .photo-card {
  width: 100%;
}

.list {
  display: grid;
  gap: .75rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: .75rem;
  color: rgba(255, 255, 255, .84);
}

.list li::before {
  content: "";
  width: .55rem;
  height: .55rem;
  flex: 0 0 auto;
  margin-top: .5rem;
  border-radius: 999px;
  background: var(--teal-bright);
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 16%, rgba(32, 200, 189, .18), transparent 32%),
    linear-gradient(135deg, white, #edf9fb);
  padding-block: clamp(2.75rem, 5vw, 4.75rem);
}

.page-hero .container {
  max-width: 980px;
}

.page-hero .page-hero-grid {
  max-width: 1200px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.page-hero-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--box-radius);
  background: white;
  box-shadow: var(--box-shadow);
}

.page-hero-image img {
  width: 100%;
  height: clamp(300px, 32vw, 410px);
  object-fit: cover;
  object-position: center;
}

.page-hero + .section {
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

.product-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.product-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sky);
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.03);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.5rem 1.5rem;
}

.product-meta {
  display: inline-flex;
  width: fit-content;
  border-radius: 5px;
  background: var(--sky);
  color: var(--brand);
  padding: .32rem .65rem;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 1.5rem;
}

.contact-panel {
  border-radius: var(--box-radius);
  background: var(--brand-strong);
  color: white;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-panel .photo-card {
  margin-block: 1.35rem;
}

.contact-panel p,
.contact-panel a {
  color: rgba(255, 255, 255, .82);
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--box-radius);
  background: white;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: grid;
  gap: .4rem;
  color: var(--brand-strong);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fbfeff;
  color: var(--ink);
  font: inherit;
  padding: .9rem 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: rgba(9, 152, 143, .45);
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #061e3e;
  color: white;
  padding-block: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
  align-items: start;
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
}

.footer-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: .5rem .65rem;
  border-radius: 5px;
  background: white;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .72);
}

.site-footer p {
  margin: 0;
}

.site-footer h3 {
  color: white;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
}

.footer-links {
  display: grid;
  gap: .55rem;
}

.site-footer a:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 2px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(9, 152, 143, .45);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 16px 32px rgba(9, 152, 143, .5);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* —— Home page layout enhancements —— */
.page-home .hero-grid {
  align-items: center;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 1.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.75rem;
}

.hero-meta li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  max-width: 17.5rem;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-meta-icon {
  flex: 0 0 auto;
  margin-top: .12rem;
  color: var(--teal);
}

.hero-visual-frame {
  position: relative;
  border-radius: inherit;
}

.hero-visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.25rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .65rem;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  background: linear-gradient(180deg, transparent, rgba(4, 43, 93, .88));
  border-radius: 0 0 var(--box-radius) var(--box-radius);
}

.hero-visual-caption-dot {
  opacity: .65;
}

.metric-strip--home .metric--rich {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: 1.35rem 1.5rem;
  text-align: left;
}

.metric-strip--home .metric-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--aqua), #fff);
  color: var(--teal);
}

.metric-strip--home .metric-copy {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
}

.metric-strip--home .metric-copy strong {
  display: block;
  color: var(--brand);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1;
}

.metric-strip--home .metric-copy span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-showcase {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.home-showcase-inner {
  text-align: left;
}

.home-showcase-head {
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  max-width: 42rem;
  margin-right: auto;
}

.home-showcase-title {
  color: var(--brand-strong);
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: .65rem 0 .85rem;
}

.home-showcase-lede {
  margin: 0;
}

.home-showcase-slider {
  width: 100%;
  max-width: min(920px, 100%);
}

.home-showcase-viewport {
  overflow: hidden;
  border-radius: var(--box-radius);
  border: 1px solid var(--line);
  background: var(--sky);
  box-shadow: var(--box-shadow);
  touch-action: pan-y pinch-zoom;
}

.home-showcase-viewport:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.home-showcase-track {
  display: flex;
  width: 300%;
  transition: transform .45s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}

figure.photo-card.home-showcase-slide {
  position: relative;
  flex: 0 0 calc(100% / 3);
  width: calc(100% / 3);
  margin: 0;
  height: clamp(280px, 42vw, 420px);
  min-height: 260px;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

figure.photo-card.home-showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-showcase-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin-top: 1.15rem;
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--brand);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}

.slider-btn:hover {
  background: var(--aqua);
  border-color: rgba(9, 152, 143, .35);
  color: var(--brand-strong);
}

.slider-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.slider-btn:active {
  transform: scale(.96);
}

.home-showcase-dots {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.slider-dot {
  width: .55rem;
  height: .55rem;
  padding: 0;
  border: none;
  border-radius: 5px;
  background: var(--line);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, width .2s ease;
}

.slider-dot:hover {
  background: rgba(7, 61, 130, .35);
}

.slider-dot.is-active {
  width: 1.35rem;
  background: var(--teal);
  cursor: default;
}

.slider-dot:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.home-process {
  background:
    linear-gradient(180deg, rgba(237, 248, 252, .65) 0%, transparent 42%),
    var(--wash);
  border-block: 1px solid rgba(215, 232, 239, .65);
}

.home-process-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.home-process-title {
  color: var(--brand-strong);
  font-size: clamp(1.85rem, 3.5vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: .65rem 0 .85rem;
}

.home-process-lede {
  margin: 0;
}

.home-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-step {
  margin: 0;
  padding: 1.5rem 1.45rem 1.55rem;
  border-radius: var(--box-radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 12px 36px rgba(5, 36, 75, .06);
  position: relative;
  overflow: hidden;
}

.home-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--brand));
  border-radius: 4px 0 0 4px;
}

.home-step-num {
  display: block;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .2em;
  color: var(--teal);
  margin-bottom: .65rem;
}

.home-step-title {
  color: var(--brand-strong);
  font-size: 1.12rem;
  margin: 0 0 .55rem;
  line-height: 1.25;
}

.home-step-text {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.page-home .card--elevated {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.page-home .card--elevated:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(5, 36, 75, .1);
  border-color: rgba(9, 152, 143, .35);
}

.section-header--split-end {
  align-items: end;
}

.home-zone-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.home-zone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(5, 36, 75, .1);
}

.home-zone-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sky);
}

.home-zone-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}

/* Keep mixed stock images visually consistent (cool clinical tone). */
.hero-visual img,
.page-hero-image img,
.media-frame img,
.product-card-thumb img,
.home-zone-thumb img,
.home-process-thumb img,
figure.photo-card.home-showcase-slide img,
.photo-card img {
  filter: saturate(.86) contrast(1.04) hue-rotate(-7deg);
}

.home-zone-card:hover .home-zone-thumb img {
  transform: scale(1.04);
}

.home-zone-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.45rem 1.5rem;
  gap: .5rem;
}

.home-zone-body h3 {
  margin-bottom: 0;
}

.home-zone-body p {
  flex: 1;
  margin: 0;
}

.home-zone-link {
  margin-top: .35rem;
  font-size: .88rem;
  font-weight: 800;
  color: var(--brand);
  align-self: flex-start;
  padding: .35rem 0;
  border-bottom: 2px solid rgba(9, 152, 143, .45);
  transition: color .2s ease, border-color .2s ease;
}

.home-zone-link:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.home-cta {
  margin-top: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(3rem, 6vw, 4.25rem);
  background:
    radial-gradient(ellipse 80% 120% at 100% 50%, rgba(32, 200, 189, .18), transparent 48%),
    linear-gradient(135deg, #042b5d 0%, #061e3e 55%, #082f54 100%);
  color: white;
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.home-cta-title {
  margin: 0 0 .65rem;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: white;
  max-width: 28rem;
}

.home-cta-lede {
  margin: 0;
  font-size: clamp(.95rem, 1.6vw, 1.06rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
  max-width: 36rem;
}

.home-cta .btn-primary {
  background: white;
  color: var(--brand-strong);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
}

.home-cta .btn-primary:hover {
  background: var(--aqua);
  color: var(--brand-strong);
}

.home-cta-btn {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .home-steps {
    grid-template-columns: 1fr;
  }

  .home-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .hero-meta {
    flex-direction: column;
    gap: .65rem;
  }

  .hero-meta li {
    max-width: none;
  }

  .hero-visual-caption {
    border-radius: 0 0 var(--box-radius) var(--box-radius);
    font-size: .72rem;
    padding: .85rem 1rem;
  }

  .section-header--split-end .btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .btn:hover,
  .product-card:hover .product-card-thumb img {
    transform: none;
  }

  .page-home .card--elevated:hover,
  .home-zone-card:hover,
  .home-zone-card:hover .home-zone-thumb img {
    transform: none;
  }

  .home-showcase-track {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .page-hero-grid,
  .section-header,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    height: 320px;
  }

  .media-frame img {
    height: 360px;
  }

  .page-hero-image img {
    height: 340px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-ribbon {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card.is-tall,
  .photo-card.is-short {
    height: 340px;
  }

  /* Burger + stacked nav — matches single-column layouts at this width */
  .nav {
    min-height: 76px;
  }

  .brand img {
    height: 58px;
    max-width: 174px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
  }

  .nav-links {
    position: absolute;
    z-index: 60;
    left: 0;
    right: 0;
    top: calc(100% + .65rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: white;
    padding: .65rem;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: .85rem 1rem;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  /* Home hero: desktop rule below used to force a 420px min column and broke narrow widths */
  .page-home .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-home .hero-grid::before,
  .page-home .hero-grid::after {
    display: none;
  }

  .page-home .hero-visual img {
    height: 320px;
  }

  .page-home .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    margin-top: 1.5rem;
  }

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

@media (max-width: 760px) {
  .hero-grid {
    gap: 1.5rem;
    padding-block: 2.25rem 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    height: 240px;
    border-radius: var(--box-radius);
  }

  .page-hero-grid {
    gap: 1.5rem;
  }

  .page-hero-image {
    order: -1;
    grid-row: 1;
    grid-column: 1;
    border-radius: var(--box-radius);
  }

  .page-hero-image img {
    height: 240px;
  }

  .page-home .hero-visual img {
    height: 240px;
  }

}

@media (max-width: 620px) {
  :root {
    --container: min(1200px, calc(100% - 40px));
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 14vw, 3.35rem);
  }

  .metric-strip,
  .photo-ribbon,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .form-card,
  .contact-panel {
    border-radius: var(--box-radius);
    padding: 1.35rem;
  }

  .section {
    padding-block: 3rem;
  }

  .page-hero {
    padding-block: 2.25rem 3rem;
  }

  .hero-visual img,
  .page-hero-image img,
  .media-frame img,
  .photo-card,
  .photo-card.is-tall,
  .photo-card.is-short {
    height: 280px;
  }

  .metric-strip--home .metric--rich {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1rem;
  }

  .metric-strip--home .metric-copy {
    align-items: center;
  }

  .home-showcase-viewport figure.photo-card.home-showcase-slide {
    height: clamp(230px, 58vw, 300px);
    min-height: 220px;
  }
}

/* —— Home layout refinement v2 —— */
@media (min-width: 901px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .page-home .hero-visual img {
    height: clamp(380px, 43vw, 540px);
  }
}

.page-home .hero-grid::before,
.page-home .hero-grid::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.page-home .hero-grid::before {
  width: clamp(120px, 16vw, 220px);
  height: clamp(120px, 16vw, 220px);
  left: -38px;
  top: 52px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .85), rgba(32, 200, 189, .25) 55%, rgba(32, 200, 189, .05) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .45),
    0 16px 34px rgba(9, 152, 143, .22);
}

.page-home .hero-grid::after {
  width: clamp(180px, 22vw, 300px);
  height: clamp(180px, 22vw, 300px);
  right: -58px;
  bottom: 34px;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, .55), rgba(7, 61, 130, .18) 58%, rgba(7, 61, 130, .06) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .35),
    0 20px 38px rgba(7, 61, 130, .2);
}

.page-home .hero-copy {
  max-width: none;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border: 1px solid rgba(215, 232, 239, .92);
  border-radius: var(--box-radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 1;
}

.page-home .hero-meta {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}

.page-home .hero-meta li {
  max-width: none;
  font-size: .9rem;
}

.page-home .hero-visual {
  position: relative;
  z-index: 1;
}

.page-home .metric-strip {
  margin-top: 1.15rem;
  transform: none;
}

.page-home .home-showcase {
  background: linear-gradient(180deg, rgba(237, 248, 252, .5), rgba(237, 248, 252, 0));
  border-top: 1px solid rgba(215, 232, 239, .8);
  border-bottom: 1px solid rgba(215, 232, 239, .8);
}

.page-home .home-showcase-inner {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.4rem);
}

.page-home .home-showcase-head {
  margin-bottom: 0;
  position: sticky;
  top: 110px;
}

.page-home .home-showcase-slider {
  max-width: none;
}

.page-home figure.photo-card.home-showcase-slide {
  height: clamp(320px, 40vw, 430px);
}

.page-home .home-process {
  border-block: none;
  background: var(--wash);
}

.page-home .home-process-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2.2rem);
}

.page-home .home-process-head--rail {
  margin: 0;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--box-radius);
  background: white;
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-home .home-process-note {
  margin: 1rem 0 0;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

.page-home .home-steps {
  gap: 1rem;
}

.page-home .home-step {
  border-radius: var(--box-radius);
}

.page-home .home-process-main {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  min-height: 100%;
}

.page-home .home-process-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.page-home .home-process-thumb {
  margin: 0;
  height: 120px;
  border: 1px solid var(--line);
  border-radius: var(--box-radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--box-shadow);
}

.page-home .home-process-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home .home-categories .section-header {
  align-items: end;
}

.page-home .home-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-home .home-category-grid .card--elevated {
  border-top: 4px solid rgba(9, 152, 143, .38);
}

.page-home .home-zones .section-header {
  align-items: end;
}

.page-home .home-zone-grid {
  align-items: stretch;
}

.page-home .home-cta {
  margin-top: clamp(.5rem, 2vw, 1.25rem);
}

@media (max-width: 1100px) {
  .page-home .home-showcase-inner,
  .page-home .home-process-layout {
    grid-template-columns: 1fr;
  }

  .page-home .home-showcase-head,
  .page-home .home-process-head--rail {
    position: static;
    height: auto;
  }

  .page-home .home-process-main {
    grid-template-rows: auto;
  }
}

@media (max-width: 900px) {
  .page-home .home-category-grid {
    grid-template-columns: 1fr;
  }

  .page-home .metric-strip {
    margin-top: .75rem;
  }

  .page-home .home-process-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
