﻿.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 8px clamp(18px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 84, 86, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(108px, 9vw, 142px);
  object-fit: contain;
}

.nav-links {
  display: none;
  gap: clamp(10px, 1.35vw, 20px);
  color: var(--muted);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  font-weight: 700;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-action {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(10, 84, 86, 0.18);
}

.hero-carousel {
  position: relative;
  height: clamp(180px, 46.875vw, 720px);
  overflow: hidden;
  color: var(--white);
  background: var(--brand-dark);
  touch-action: pan-y;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  padding: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide__image-link,
.hero-slide__image-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide__image-link img {
  object-fit: cover;
  object-position: center;
}

.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - clamp(22px, 4vw, 72px));
  margin-inline: auto;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  flex: 0 0 auto;
  width: clamp(42px, 4vw, 54px);
  height: clamp(42px, 4vw, 54px);
  place-items: center;
  color: var(--white);
  background: rgba(5, 43, 44, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  backdrop-filter: blur(14px);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.hero-arrow[data-carousel-previous] {
  left: 0;
}

.hero-arrow[data-carousel-next] {
  right: 0;
}

.hero-arrow:hover {
  background: rgba(5, 43, 44, 0.58);
  border-color: rgba(255, 255, 255, 0.54);
  transform: translateY(-50%) scale(1.06);
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: auto;
}

.hero-dot {
  width: 36px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  border-radius: 999px;
  transition: width 220ms ease, background 220ms ease, opacity 220ms ease;
}

.hero-dot.is-active {
  width: 58px;
  background: var(--white);
}

.trust-strip {
  position: relative;
  z-index: 10;
  margin-top: -29px;
}

.trust-stack {
  display: grid;
  gap: 10px;
}

.coverage-card,
.trust-grid {
  padding: 14px clamp(18px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-card {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 12px;
  width: min(100%, 660px);
  min-height: 58px;
  padding-inline: clamp(14px, 2vw, 22px);
  color: var(--brand);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.coverage-card span {
  white-space: nowrap;
}

.trust-grid {
  display: grid;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  color: var(--brand);
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.coverage-card svg,
.trust-item svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--brand);
  stroke-width: 2.35;
}

.contact-section {
  background: var(--white);
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.contact-layout {
  display: grid;
  gap: 18px;
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
  align-items: stretch;
}

.contact-card {
  max-width: 760px;
  margin: 0;
  padding: clamp(34px, 5vw, 58px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.contact-info {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4vw, 38px);
  color: var(--ink);
  background: var(--brand-soft);
  border: 1px solid rgba(10, 84, 86, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-info a,
.contact-info > span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 44px;
  color: var(--brand-dark);
  font-weight: 800;
  line-height: 1.45;
}

.contact-info a {
  transition: color 180ms ease, transform 180ms ease;
}

.contact-info a:hover {
  color: var(--brand);
  transform: scale(1.012);
}

.contact-info svg {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  color: var(--brand);
  stroke-width: 2.35;
}

.contact-info__icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  color: var(--brand);
}

.instagram-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.contact-card:hover {
  box-shadow: 0 22px 54px rgba(10, 84, 86, 0.1);
  transform: scale(1.018);
}

.contact-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: #25d366;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card p {
  max-width: 620px;
  margin: 10px auto 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
  padding: 16px 22px;
  color: var(--white);
  background: #25d366;
  border-radius: var(--radius-soft);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.25);
  font-weight: 800;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.contact-button:hover {
  background: #1fbd5a;
  box-shadow: 0 24px 54px rgba(37, 211, 102, 0.34);
  transform: translateY(-3px);
}

.faq-section {
  background: var(--brand-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.faq-list details:hover {
  transform: scale(1.018);
  border-color: rgba(10, 84, 86, 0.26);
  box-shadow: 0 22px 54px rgba(10, 84, 86, 0.1);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.6rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
}

.section-heading p {
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #1fad59;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(31, 173, 89, 0.34);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.035);
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .nav-links {
    display: flex;
  }
}

@media (max-width: 1119px) {
  .site-header {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    row-gap: 8px;
  }

  .header-action {
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-toggle {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    gap: 8px;
    width: 100%;
    padding: 8px 0 2px;
    overflow: visible;
    color: var(--brand-dark);
    font-size: 0.8rem;
    white-space: normal;
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    background: var(--brand-soft);
    border: 1px solid rgba(10, 84, 86, 0.1);
    border-radius: var(--radius-soft);
  }

  .nav-links a::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
    padding: 7px 16px;
  }

  .brand img {
    width: 92px;
  }

  .header-action {
    min-width: 46px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .header-action span {
    display: none;
  }

  .hero-slide {
    min-height: 100%;
    padding: 0;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 18px;
  }

  .hero-dot {
    width: 28px;
  }

  .hero-dot.is-active {
    width: 44px;
  }

  .trust-strip {
    margin-top: -34px;
  }

  .trust-grid {
    padding: 14px 16px;
  }

  .trust-item {
    justify-content: flex-start;
    white-space: normal;
  }

  .coverage-card {
    justify-content: center;
    padding-inline: 16px;
    text-align: center;
  }

  .coverage-card span {
    white-space: normal;
  }
}

.care-diagnosis {
  background: var(--white);
}

.diagnosis-layout,
.ecosystem-layout,
.mosaic-layout,
.bridge-layout {
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.diagnosis-copy {
  max-width: 760px;
}

.diagnosis-copy p,
.ecosystem-panel p,
.bridge-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.diagnosis-board {
  display: grid;
  gap: 12px;
}

.diagnosis-board article,
.ecosystem-card,
.journey-step,
.bridge-highlights article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.diagnosis-board article:hover,
.ecosystem-card:hover,
.journey-step:hover,
.bridge-highlights article:hover {
  transform: scale(1.018);
  border-color: rgba(10, 84, 86, 0.26);
  box-shadow: 0 22px 54px rgba(10, 84, 86, 0.1);
}

.diagnosis-board article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 18px;
  color: var(--brand-dark);
  font-weight: 800;
  line-height: 1.28;
  text-align: left;
}

.diagnosis-board svg,
.ecosystem-card svg,
.bridge-highlights svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--brand);
  stroke-width: 2.35;
}

.ecosystem-section {
  background:
    linear-gradient(180deg, var(--brand-soft), var(--white));
}

.ecosystem-layout {
  align-items: center;
}

.ecosystem-panel {
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(10, 84, 86, 0.22);
}

.ecosystem-panel .eyebrow,
.ecosystem-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.ecosystem-panel .btn {
  margin-top: 12px;
  color: var(--brand);
  background: var(--white);
  border-color: var(--white);
}

.section-image-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(10, 84, 86, 0.16);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.section-image-card:hover {
  transform: scale(1.018);
  border-color: rgba(10, 84, 86, 0.26);
  box-shadow: 0 22px 54px rgba(10, 84, 86, 0.1);
}

.section-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-image-card {
  width: 100%;
  aspect-ratio: 16 / 5;
  align-self: end;
  justify-self: stretch;
}

.ecosystem-grid {
  display: grid;
  gap: 16px;
}

.ecosystem-side {
  display: grid;
  min-height: 100%;
  gap: 18px;
}

.ecosystem-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  padding: 26px;
  text-align: left;
}

.ecosystem-card h3 {
  margin: 18px 0 10px;
  line-height: 1.22;
}

.ecosystem-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.ecosystem-card.accent {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.ecosystem-card.accent p {
  color: rgba(255, 255, 255, 0.82);
}

.ecosystem-card.accent svg {
  color: var(--white);
}

.journey-section {
  background: var(--white);
}

.journey-heading {
  max-width: 830px;
  margin-bottom: 36px;
}

.journey-track {
  position: relative;
  display: grid;
  gap: 16px;
}

.journey-track::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 23px;
  width: 2px;
  content: "";
  background: var(--line);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  text-align: left;
}

.journey-step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-weight: 800;
}

.journey-step h3,
.journey-step p {
  grid-column: 2;
}

.journey-step h3 {
  margin: 2px 0 6px;
  line-height: 1.22;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.audience-mosaic {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 47, 49, 0.96), rgba(10, 84, 86, 0.9)),
    var(--brand-dark);
}

.mosaic-copy {
  max-width: 680px;
}

.mosaic-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.mosaic-image-card {
  width: min(100%, 560px);
  margin: clamp(24px, 3vw, 34px) 0 0;
  aspect-ratio: 16 / 7;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

.mosaic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mosaic-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: var(--brand-dark);
  background: var(--white);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.mosaic-list svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
}

.monitoring-bridge {
  background: var(--brand-soft);
}

.bridge-card {
  min-height: 100%;
  padding: clamp(30px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bridge-card .btn {
  margin-top: 12px;
}

.bridge-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.bridge-image-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  justify-self: stretch;
}

.bridge-highlights {
  display: grid;
  gap: 14px;
}

.bridge-highlights article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 20px;
  color: var(--brand-dark);
  line-height: 1.28;
  text-align: left;
}

@media (min-width: 760px) {
  .ecosystem-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ecosystem-image-card {
    grid-column: 1 / -1;
  }

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

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

  .journey-track::before {
    top: 24px;
    right: 8%;
    bottom: auto;
    left: 8%;
    width: auto;
    height: 2px;
  }

  .journey-step {
    grid-template-columns: 1fr;
  }

  .journey-step h3,
  .journey-step p {
    grid-column: auto;
  }
}

@media (min-width: 980px) {
  .diagnosis-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.68fr);
  }

  .ecosystem-layout {
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  }

  .mosaic-layout,
  .bridge-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.92fr);
  }
}

@media (max-width: 720px) {
  .ecosystem-panel {
    background:
      linear-gradient(135deg, var(--brand-dark), var(--brand));
  }

  .mosaic-list span {
    width: 100%;
    border-radius: var(--radius);
  }

  .ecosystem-image-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .bridge-image-card {
    width: 100%;
  }
}


