:root {
  --sp-bg: #f5f7f9;
  --sp-surface: #ffffff;
  --sp-ink: #112530;
  --sp-ink-soft: #4f6673;
  --sp-primary: #0a84bf;
  --sp-primary-strong: #08638f;
  --sp-accent: #1bb17f;
  --sp-alert: #c44a4a;
  --sp-line: rgba(17, 37, 48, 0.12);
  --sp-shadow: 0 18px 38px rgba(10, 35, 50, 0.12);
  --sp-radius-lg: 24px;
  --sp-radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--sp-ink);
  background:
    radial-gradient(circle at 90% -10%, rgba(10, 132, 191, 0.12) 0%, rgba(10, 132, 191, 0) 44%),
    radial-gradient(circle at 0% 0%, rgba(27, 177, 127, 0.09) 0%, rgba(27, 177, 127, 0) 40%),
    var(--sp-bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.sp-container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.sp-strip {
  background: linear-gradient(120deg, #08334a, #0c5f87);
  color: #ebfbff;
}

.sp-strip-inner {
  min-height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sp-strip p {
  margin: 0;
  font-size: 0.9rem;
}

.sp-strip a {
  text-decoration: none;
  font-weight: 700;
  color: #0e4f72;
  background: #effbff;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.sp-nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sp-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.sp-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  position: relative;
  background:
    linear-gradient(rgba(236, 250, 255, 0.95), rgba(236, 250, 255, 0.95)) center 10px / 3px 10px no-repeat,
    linear-gradient(rgba(236, 250, 255, 0.88), rgba(236, 250, 255, 0.88)) center 18px / 9px 2px no-repeat,
    linear-gradient(145deg, #0a84bf, #075f8a);
  border: 1px solid rgba(7, 65, 92, 0.22);
  box-shadow: 0 10px 18px rgba(8, 72, 102, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sp-brand-mark::before,
.sp-brand-mark::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 13px;
  height: 16px;
  border: 2px solid rgba(236, 250, 255, 0.92);
  background: rgba(236, 250, 255, 0.08);
  border-radius: 56% 44% 62% 64% / 50% 50% 50% 50%;
}

.sp-brand-mark::before {
  left: 8px;
  transform: rotate(8deg);
}

.sp-brand-mark::after {
  right: 8px;
  transform: scaleX(-1) rotate(8deg);
}

.sp-brand-copy {
  display: inline-grid;
  gap: 0.16rem;
}

.sp-brand strong {
  font-family: "Bree Serif", serif;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #0f3043;
}

.sp-brand small {
  font-size: 0.88rem;
  color: var(--sp-ink-soft);
  font-weight: 800;
  line-height: 1;
}

.sp-brand:hover .sp-brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(8, 72, 102, 0.28);
}

.sp-menu-btn {
  display: none;
  border: 1px solid var(--sp-line);
  border-radius: 10px;
  background: var(--sp-surface);
  color: var(--sp-ink);
  padding: 0.42rem 0.72rem;
  font-weight: 700;
}

.sp-nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.sp-nav a {
  text-decoration: none;
  font-size: 0.93rem;
  color: var(--sp-ink-soft);
  font-weight: 600;
}

.sp-nav a:hover {
  color: var(--sp-primary-strong);
}

.sp-nav a[aria-current="page"] {
  color: var(--sp-primary-strong);
  font-weight: 800;
}

.sp-nav a[aria-current="page"]:not(.sp-nav-pill) {
  position: relative;
}

.sp-nav a[aria-current="page"]:not(.sp-nav-pill)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--sp-primary), var(--sp-primary-strong));
}

.sp-nav-pill {
  padding: 0.52rem 0.86rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--sp-primary), var(--sp-primary-strong));
  color: #effbff !important;
}

.sp-page-hero {
  padding: 2.4rem 0 1.2rem;
}

.sp-hero-card {
  border: 1px solid var(--sp-line);
  background: var(--sp-surface);
  border-radius: var(--sp-radius-lg);
  padding: 1.2rem;
  box-shadow: var(--sp-shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.sp-kicker {
  margin: 0;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sp-primary-strong);
  background: rgba(10, 132, 191, 0.12);
  border-radius: 999px;
  padding: 0.34rem 0.64rem;
}

.sp-hero-card h1 {
  margin: 0.86rem 0 0;
  font-family: "Bree Serif", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  text-wrap: balance;
}

.sp-hero-card p {
  margin: 1rem 0 0;
  color: var(--sp-ink-soft);
}

.sp-hero-image {
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(140deg, #dbe9f3, #f2f7fb);
  border: 1px solid rgba(17, 37, 48, 0.08);
}

.sp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sp-section {
  padding: 3.4rem 0;
}

.sp-telemed-card {
  border: 1px solid rgba(10, 132, 191, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 18%, rgba(120, 227, 255, 0.2), rgba(120, 227, 255, 0) 34%),
    linear-gradient(130deg, #08354e, #0a6c9a 62%, #0d7cb3);
  color: #ebfbff;
  padding: 1.2rem;
  box-shadow: 0 18px 34px rgba(6, 34, 51, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.sp-telemed-card h2 {
  margin: 0.7rem 0 0;
  font-family: "Bree Serif", serif;
  line-height: 1.08;
  text-wrap: balance;
}

.sp-telemed-card p {
  margin: 0.66rem 0 0;
  color: rgba(235, 251, 255, 0.92);
}

.sp-telemed-card .sp-kicker {
  color: #0c4a6c;
  background: rgba(235, 251, 255, 0.9);
}

.sp-telemed-card .sp-btn-primary {
  box-shadow: none;
  color: #053a2c;
  background: linear-gradient(120deg, #27ca9a, #13a87c);
}

.sp-telemed-card .sp-btn-soft {
  border-color: rgba(235, 251, 255, 0.45);
  color: #ebfbff;
  background: rgba(235, 251, 255, 0.08);
}

.sp-section-head {
  margin-bottom: 1.2rem;
}

.sp-section-head h2 {
  margin: 0.72rem 0 0;
  font-family: "Bree Serif", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  text-wrap: balance;
}

.sp-section-head p {
  margin: 0;
  color: var(--sp-ink-soft);
}

.sp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.88rem;
}

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

.sp-card {
  border: 1px solid var(--sp-line);
  background: var(--sp-surface);
  border-radius: var(--sp-radius-md);
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(12, 48, 68, 0.08);
}

.sp-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.sp-card p {
  margin: 0;
  color: var(--sp-ink-soft);
  font-size: 0.92rem;
}

.sp-bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: var(--sp-ink-soft);
}

.sp-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--sp-line);
  background: #e9f2f7;
}

.sp-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sp-alert {
  border: 1px solid rgba(196, 74, 74, 0.4);
  background: rgba(196, 74, 74, 0.09);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  color: #7d2929;
  font-weight: 600;
}

.sp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sp-btn {
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.74rem 1.08rem;
  font-size: 0.94rem;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.22s ease;
}

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

.sp-btn-primary {
  color: #eefbff;
  background: linear-gradient(120deg, var(--sp-primary), var(--sp-primary-strong));
  box-shadow: 0 10px 24px rgba(10, 132, 191, 0.35);
}

.sp-btn-soft {
  color: var(--sp-primary-strong);
  background: var(--sp-surface);
  border: 1px solid rgba(8, 99, 143, 0.28);
}

.sp-gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sp-filter-btn {
  border: 1px solid var(--sp-line);
  border-radius: 999px;
  background: #f8fbfd;
  color: var(--sp-ink-soft);
  padding: 0.45rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.sp-filter-btn.is-active {
  background: linear-gradient(120deg, var(--sp-primary), var(--sp-primary-strong));
  color: #f1fbff;
  border-color: transparent;
}

.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.88rem;
}

.sp-gallery-item {
  border: 1px solid var(--sp-line);
  background: var(--sp-surface);
  border-radius: var(--sp-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(12, 48, 68, 0.08);
}

.sp-gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

.sp-gallery-body {
  padding: 0.85rem;
}

.sp-gallery-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.sp-gallery-body p {
  margin: 0;
  color: var(--sp-ink-soft);
  font-size: 0.9rem;
}

.sp-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 23, 33, 0.82);
  z-index: 60;
  padding: 1rem;
}

.sp-lightbox.open {
  display: flex;
}

.sp-lightbox-inner {
  width: min(1000px, 100%);
  background: #0f2430;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.sp-lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #102a39;
}

.sp-lightbox-caption {
  margin: 0;
  padding: 0.75rem 0.9rem;
  color: #e8f6ff;
  font-size: 0.92rem;
}

.sp-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(14, 28, 38, 0.7);
  color: #eefbff;
  border-radius: 10px;
  padding: 0.42rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.sp-footer {
  padding: 1.8rem 0 2.6rem;
}

.sp-footer-shell {
  border: 1px solid var(--sp-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 10%, rgba(10, 132, 191, 0.1), rgba(10, 132, 191, 0) 32%),
    linear-gradient(175deg, #f7fbfd, #ffffff 52%);
  padding: 1.25rem;
  box-shadow: var(--sp-shadow);
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr;
  gap: 1rem;
}

.sp-footer-kicker {
  margin: 0;
  display: inline-flex;
  padding: 0.32rem 0.66rem;
  border-radius: 999px;
  background: rgba(10, 132, 191, 0.14);
  color: var(--sp-primary-strong);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.sp-footer-main h3 {
  margin: 0.7rem 0 0;
  font-family: "Bree Serif", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.1;
  text-wrap: balance;
}

.sp-footer-main p:last-child {
  margin: 0.55rem 0 0;
  color: var(--sp-ink-soft);
  font-size: 0.92rem;
}

.sp-footer-links {
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.sp-footer-links a {
  text-decoration: none;
  color: var(--sp-ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.sp-footer-links a:hover {
  color: var(--sp-primary-strong);
}

.sp-footer-contact {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.sp-footer-contact a {
  text-decoration: none;
  color: #0b4867;
  background: rgba(10, 132, 191, 0.1);
  border: 1px solid rgba(10, 132, 191, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.82rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.sp-footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--sp-line);
  padding-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--sp-ink-soft);
  font-size: 0.86rem;
}

.sp-footer-bottom p {
  margin: 0;
}

.sp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.sp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .sp-hero-card,
  .sp-telemed-card {
    grid-template-columns: 1fr;
  }

  .sp-grid-3,
  .sp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .sp-footer-contact {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .sp-nav-row {
    min-height: auto;
    flex-wrap: wrap;
    row-gap: 0.72rem;
    padding: 0.78rem 0;
  }

  .sp-menu-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .sp-nav {
    position: static;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    background: #f7fbfd;
    border: 1px solid rgba(17, 37, 48, 0.15);
    border-radius: 14px;
    padding: 0.84rem;
    box-shadow: 0 12px 24px rgba(9, 42, 62, 0.14);
    z-index: 20;
  }

  .sp-nav.open {
    display: flex;
  }

  .sp-nav a {
    width: 100%;
    padding: 0.32rem 0.08rem;
  }

  .sp-nav-pill {
    width: 100%;
    text-align: center;
    padding: 0.58rem 0.86rem !important;
  }

  .sp-strip-inner {
    min-height: 62px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .sp-hero-image {
    height: 260px;
  }

  .sp-brand-mark {
    width: 42px;
    height: 42px;
  }

  .sp-brand strong {
    font-size: 1.55rem;
  }

  .sp-brand small {
    font-size: 0.8rem;
  }

  .sp-grid-3,
  .sp-grid-2,
  .sp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sp-footer-shell {
    grid-template-columns: 1fr;
  }

  .sp-footer-contact {
    grid-template-columns: 1fr;
  }

  .sp-actions {
    width: 100%;
  }

  .sp-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .sp-container {
    width: calc(100% - 1.2rem);
  }

  .sp-strip-inner {
    min-height: auto;
    padding: 0.55rem 0;
    gap: 0.5rem;
  }

  .sp-strip p {
    font-size: 0.81rem;
  }

  .sp-strip a {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0.74rem;
  }

  .sp-nav-row {
    padding: 0.62rem 0;
    row-gap: 0.62rem;
  }

  .sp-brand {
    gap: 0.56rem;
  }

  .sp-brand strong {
    font-size: 1.34rem;
  }

  .sp-brand small {
    font-size: 0.72rem;
  }

  .sp-nav {
    padding: 0.74rem;
  }

  .sp-page-hero {
    padding: 1.6rem 0 1rem;
  }

  .sp-hero-card h1 {
    font-size: clamp(1.64rem, 10.2vw, 2.15rem);
    line-height: 1.08;
  }

  .sp-hero-card,
  .sp-telemed-card,
  .sp-card,
  .sp-footer-shell {
    padding: 0.92rem;
    border-radius: 18px;
  }

  .sp-hero-image {
    height: 220px;
  }

  .sp-section {
    padding: 2.3rem 0;
  }

  .sp-actions .sp-btn {
    width: 100%;
  }

  .sp-footer-contact a {
    border-radius: 12px;
  }
}

@media (max-width: 400px) {
  .sp-brand small {
    display: none;
  }

  .sp-strip p {
    font-size: 0.76rem;
  }

  .sp-kicker {
    font-size: 0.72rem;
  }

  .sp-hero-card h1 {
    font-size: clamp(1.5rem, 9.5vw, 1.9rem);
  }

  .sp-hero-image {
    height: 190px;
  }
}
