:root {
  --bg-base: #060b14;
  --bg-deep: #0d1423;
  --bg-mid: #132240;
  --brand-deep: #1d4ed8;
  --brand-bright: #3b82f6;
  --accent-sky: #60a5fa;
  --accent-light: #93c5fd;
  --accent-pale: #bfdbfe;
  --accent-emerald: #34d399;
  --accent-mint: #6ee7b7;
  --text-main: #f0f6ff;
  --text-soft: #bfdbfe;
  --text-muted: rgba(191, 219, 254, 0.68);
  --border-soft: rgba(147, 197, 253, 0.14);
  --card-bg: linear-gradient(180deg, rgba(14, 24, 50, 0.94) 0%, rgba(9, 17, 40, 0.97) 100%);
  --shadow-soft: 0 24px 60px rgba(2, 5, 16, 0.42);
  --shadow-strong: 0 32px 80px rgba(1, 3, 12, 0.62);
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #34d399 100%);
  --gradient-background: linear-gradient(160deg, #060b14 0%, #0d1a38 48%, #1d4ed8 100%);
  --max-width: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.15), transparent 38%),
    radial-gradient(ellipse at bottom right, rgba(52, 211, 153, 0.13), transparent 38%),
    linear-gradient(180deg, #050a12 0%, #070c18 28%, #060b14 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(147, 197, 253, 0.52);
  outline-offset: 3px;
}

svg {
  display: block;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: 120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 72%);
  filter: blur(6px);
}

.page-shell::after {
  top: 420px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.18) 0%, rgba(52, 211, 153, 0) 74%);
  filter: blur(12px);
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(8, 16, 36, 0.97) 0%, rgba(13, 25, 56, 0.96) 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(2, 5, 16, 0.48);
  width: 100%;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: clamp(190px, 20vw, 228px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  color: rgba(240, 246, 255, 0.78);
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-main);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--text-main);
}

.site-nav a[aria-current="page"]:not(.button)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-emerald), var(--accent-mint));
}

.nav-cta {
  margin-left: 6px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  background: rgba(52, 211, 153, 0.07);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease;
}

.nav-phone:hover {
  background: rgba(52, 211, 153, 0.13);
  border-color: rgba(52, 211, 153, 0.38);
  transform: none;
}

.nav-phone svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--accent-emerald);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-phone-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  line-height: 1;
  margin-bottom: 2px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 160ms ease;
}

.footer-phone:hover {
  color: var(--accent-emerald);
}

.footer-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--accent-emerald);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-phone-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  margin-bottom: 2px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
  word-break: break-all;
  transition: color 160ms ease;
}

.footer-email > span,
.footer-phone > span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.footer-email:hover {
  color: var(--accent-emerald);
}

.footer-email svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--accent-emerald);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-email-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  margin-bottom: 2px;
}

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 210px;
  background: rgba(8, 16, 36, 0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(147, 197, 253, 0.12);
  border-radius: 14px;
  padding: 14px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 100;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown,
.nav-item-dropdown.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: rgba(240, 246, 255, 0.75);
  display: block;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
  transform: none !important;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(59, 130, 246, 0.13);
  color: var(--text-main);
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(147, 197, 253, 0.18);
}

.mobile-nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle span:first-child {
  transform: translateY(-4px);
}

.mobile-nav-toggle span:last-child {
  transform: translateY(4px);
}

.mobile-nav-toggle.is-active span:first-child {
  transform: rotate(45deg);
}

.mobile-nav-toggle.is-active span:last-child {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: 0 14px 32px rgba(59, 130, 246, 0.28), 0 6px 20px rgba(52, 211, 153, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.38), 0 8px 28px rgba(52, 211, 153, 0.26);
}

.button-secondary {
  color: var(--text-main);
  border: 1px solid rgba(147, 197, 253, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(147, 197, 253, 0.38);
  background: rgba(59, 130, 246, 0.06);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.78;
  transform: none;
}

.hero-section {
  position: relative;
  padding: 24px 0 50px;
}

.page-hero {
  position: relative;
  padding: 24px 0 18px;
}

.page-hero .hero-backdrop {
  inset: 0;
  height: auto;
  min-height: 100%;
}

.hero-backdrop {
  position: absolute;
  inset: 0 0 auto;
  height: 620px;
  background:
    linear-gradient(160deg, rgba(4, 8, 20, 0.98) 0%, rgba(10, 26, 72, 0.95) 50%, rgba(29, 78, 216, 0.86) 100%),
    var(--gradient-background);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 20, 0.06) 0%, rgba(4, 8, 20, 0.3) 100%),
    radial-gradient(circle at 75% 25%, rgba(99, 102, 241, 0.2), transparent 36%),
    radial-gradient(circle at 15% 70%, rgba(52, 211, 153, 0.1), transparent 30%);
}

.hero-medical-art {
  position: absolute;
  top: 80px;
  right: -80px;
  width: min(620px, 58vw);
  height: 620px;
  background: url("assets/medical-pattern.svg") no-repeat center / contain;
  opacity: 0.2;
  filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.12));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 34px;
  align-items: center;
  padding-top: 60px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 30px;
  align-items: center;
  padding-top: 60px;
}

.eyebrow,
.section-label,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-emerald);
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-sub {
  display: block;
  margin: -10px 0 18px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(147, 197, 253, 0.2);
  color: var(--accent-light);
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.18);
}

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

.hero-copy h1 {
  margin: 0;
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero-copy h1 {
  margin: 0;
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.page-hero-copy p:last-of-type {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.page-hero-side {
  padding: 22px;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:last-child {
  color: var(--accent-emerald);
}

.hero-text,
.section-heading p,
.about-copy p,
.schedule-copy p,
.portal-copy p,
.process-card p,
.info-card p,
.metric-card p,
.pricing-note,
.mini-list,
.site-footer p,
.highlight-card span {
  color: var(--text-soft);
}

.hero-text {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.trust-pills span {
  padding: 9px 15px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  border-radius: 999px;
  background: rgba(6, 11, 26, 0.5);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-service-areas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(147, 197, 253, 0.1);
}

.hero-service-areas-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.75);
  margin-right: 4px;
}

.hero-service-areas a {
  padding: 5px 12px;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 999px;
  background: rgba(6, 11, 26, 0.4);
  color: var(--text-main);
  font-size: 0.83rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.hero-service-areas a:hover {
  border-color: var(--accent-emerald, #22c58b);
  color: var(--accent-emerald, #22c58b);
  background: rgba(34, 197, 139, 0.08);
}

.hero-service-areas a.hero-service-areas-more {
  background: transparent;
  border-color: transparent;
  color: var(--accent-emerald, #22c58b);
  font-weight: 600;
}

.hero-service-areas a.hero-service-areas-more:hover {
  text-decoration: underline;
}

.glass-card {
  border: 1px solid rgba(147, 197, 253, 0.12);
  background: linear-gradient(160deg, rgba(18, 32, 64, 0.93) 0%, rgba(10, 18, 44, 0.97) 100%);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 0 rgba(147, 197, 253, 0.06),
    0 20px 48px rgba(2, 5, 18, 0.36);
}

.service-panel {
  justify-self: end;
  width: min(100%, 430px);
  padding: 28px;
  background: linear-gradient(160deg, rgba(18, 36, 88, 0.97) 0%, rgba(12, 24, 66, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(147, 197, 253, 0.12),
    0 24px 56px rgba(29, 78, 216, 0.24);
}

.service-panel-brand {
  width: min(100%, 220px);
  margin-bottom: 18px;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 197, 253, 0.1);
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 200ms ease, border-color 200ms ease;
}

.service-list li:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(147, 197, 253, 0.18);
}

.check-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(110, 231, 183, 0.32));
  border: 1px solid rgba(110, 231, 183, 0.22);
}

.check-icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 8px;
  height: 11px;
  border-right: 2px solid var(--accent-mint);
  border-bottom: 2px solid var(--accent-mint);
  transform: rotate(40deg);
}

.panel-button {
  width: 100%;
  margin-top: 18px;
}

.feature-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  padding: 18px 20px;
  border: 1px solid rgba(147, 197, 253, 0.1);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(14, 24, 52, 0.88) 0%, rgba(8, 14, 34, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  backdrop-filter: blur(12px);
}

.feature-item span:last-child {
  font-weight: 600;
  line-height: 1.35;
}

.feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(147, 197, 253, 0.1);
  color: var(--accent-light);
}

.feature-icon svg,
.icon-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content-section {
  position: relative;
  padding: 88px 0;
}

.section-heading {
  max-width: 740px;
  text-align: center;
}

.section-heading.left-aligned {
  text-align: left;
}

.section-heading h2,
.about-copy h2,
.schedule-copy h2,
.portal-copy h2 {
  margin: 0;
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p,
.about-copy p,
.schedule-copy p,
.portal-copy p {
  margin: 18px 0 0;
  font-size: 1.03rem;
  line-height: 1.8;
}

.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

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

.info-card,
.pricing-card,
.process-card,
.metric-card,
.highlight-card,
.schedule-form,
.portal-card {
  position: relative;
  overflow: hidden;
}

.info-card,
.pricing-card,
.metric-card {
  padding: 28px;
}

.info-card::after,
.pricing-card::after,
.metric-card::after,
.process-card::after,
.portal-card::after,
.schedule-form::after {
  display: none;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(147, 197, 253, 0.35) 40%, rgba(147, 197, 253, 0.35) 60%, transparent 100%);
  border-radius: 20px 20px 0 0;
}

.info-card h3,
.pricing-card h3,
.process-card h3,
.metric-card h3,
.highlight-card strong {
  margin: 18px 0 10px;
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: 1.04rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.mini-list {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-emerald), var(--accent-mint));
  opacity: 0.85;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(147, 197, 253, 0.12);
  flex-shrink: 0;
}

.icon-blue {
  color: var(--accent-light);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0.08));
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-cyan {
  color: var(--accent-sky);
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(96, 165, 250, 0.08));
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-green {
  color: var(--accent-emerald);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.18), rgba(52, 211, 153, 0.08));
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.two-column-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-card {
  padding: 36px;
}

.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(147, 197, 253, 0.3) 40%, rgba(147, 197, 253, 0.3) 60%, transparent 100%);
  border-radius: 20px 20px 0 0;
}

.detail-card h2 {
  margin: 0;
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.detail-card p:last-of-type {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.process-section {
  background:
    radial-gradient(circle at left center, rgba(59, 130, 246, 0.08), transparent 28%),
    radial-gradient(circle at right bottom, rgba(52, 211, 153, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(6, 11, 26, 0.44), rgba(6, 11, 26, 0));
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  min-height: 220px;
  padding: 28px 28px 28px 36px;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 3px;
  height: 52px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--brand-bright), var(--accent-emerald));
  opacity: 0.7;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--accent-mint);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.18), rgba(52, 211, 153, 0.08));
  border: 1px solid rgba(110, 231, 183, 0.22);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.15);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(5, 9, 22, 0) 0%, rgba(10, 20, 48, 0.38) 100%);
}

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

.pricing-card {
  min-height: 100%;
}

.pricing-card.featured {
  border-color: rgba(96, 165, 250, 0.3);
  background: linear-gradient(160deg, rgba(22, 40, 88, 0.98) 0%, rgba(13, 24, 62, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(147, 197, 253, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.12),
    0 24px 60px rgba(29, 78, 216, 0.32);
  transform: translateY(-6px);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-bright), var(--accent-sky), transparent);
  border-radius: 20px 20px 0 0;
}

.pricing-note {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--accent-light);
  font-weight: 700;
  transition: color 180ms ease, gap 180ms ease;
  gap: 6px;
}

.text-link:hover {
  color: var(--accent-pale);
  gap: 10px;
}

.about-grid,
.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.about-panels {
  display: grid;
  gap: 20px;
}

.metric-card {
  min-height: 176px;
  border-left: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 0 20px 20px 0;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-area-card {
  padding: 28px;
}

.service-area-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.service-area-region {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.service-area-sub {
  margin: 2px 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.service-area-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-area-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.5);
  flex-shrink: 0;
}

.service-area-list a {
  color: var(--text-soft);
  transition: color 160ms ease;
}

.service-area-list a:hover,
.service-area-list a:focus-visible {
  color: var(--accent-emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-area-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* Blog article pages */
.blog-article-hero {
  position: relative;
  padding: 100px 0 64px;
  overflow: hidden;
}

.blog-article-hero .hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 0%, rgba(59, 130, 246, 0.13), transparent 60%),
    radial-gradient(ellipse at 100% 80%, rgba(99, 102, 241, 0.08), transparent 50%);
  pointer-events: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.back-link:hover {
  color: var(--accent-light);
}

.blog-article-hero .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-article-hero h1 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 20px;
}

.article-intro {
  max-width: 660px;
  font-size: 1.06rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.blog-article-body {
  padding: 64px 0 88px;
}

.blog-article-prose {
  max-width: 720px;
}

.blog-article-prose h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 44px 0 12px;
  color: var(--text-main);
  line-height: 1.3;
}

.blog-article-prose p {
  margin: 0 0 18px;
  line-height: 1.78;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.blog-article-prose ul,
.blog-article-prose ol {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.blog-article-prose ul li,
.blog-article-prose ol li {
  position: relative;
  padding: 5px 0 5px 20px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.blog-article-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.55);
}

.blog-article-prose ol {
  counter-reset: article-ol;
}

.blog-article-prose ol li {
  counter-increment: article-ol;
}

.blog-article-prose ol li::before {
  content: counter(article-ol);
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-light);
}

.article-callout {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 3px solid var(--brand-bright);
  background: rgba(59, 130, 246, 0.06);
  border-radius: 0 12px 12px 0;
}

.article-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-light);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-callout p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.65;
}

/* Homepage trailer callout */
.trailer-section {
  background:
    radial-gradient(circle at left center, rgba(59, 130, 246, 0.07), transparent 40%),
    radial-gradient(circle at right center, rgba(52, 211, 153, 0.05), transparent 40%);
}

.trailer-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 44px 48px;
}

.trailer-split-copy h2 {
  margin: 10px 0 14px;
}

.trailer-split-copy p {
  margin: 0 0 22px;
}

.trailer-split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trailer-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(147, 197, 253, 0.1);
}

.trailer-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--accent-emerald);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trailer-pill span {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Mobile trailer feature grid */
.trailer-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trailer-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
}

.trailer-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 5px;
}

.trailer-feature span {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.blog-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(147, 197, 253, 0.24);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-tag-blue {
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(147, 197, 253, 0.2);
  color: var(--accent-light);
}

.blog-tag-cyan {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: #67e8f9;
}

.blog-tag-green {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: var(--accent-emerald);
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: auto;
}

.blog-card-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-main);
}

.blog-card-excerpt {
  margin: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.blog-link-disabled {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.schedule-section {
  background:
    radial-gradient(circle at right center, rgba(99, 102, 241, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(5, 9, 22, 0.3) 0%, rgba(5, 9, 22, 0) 100%);
}

.schedule-highlights {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.highlight-card {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  background: linear-gradient(160deg, rgba(16, 30, 64, 0.92) 0%, rgba(9, 18, 44, 0.96) 100%);
  border-left: 2px solid rgba(59, 130, 246, 0.35);
  border-radius: 0 20px 20px 0;
}

.schedule-form {
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-row.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row label {
  color: var(--text-main);
  font-size: 0.94rem;
  font-weight: 700;
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  background: rgba(6, 11, 26, 0.72);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.schedule-form input:focus,
.schedule-form select:focus,
.schedule-form textarea:focus {
  border-color: rgba(96, 165, 250, 0.52);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
  background: rgba(6, 11, 26, 0.92);
}

.schedule-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-message--success {
  color: var(--accent-emerald);
}

.form-message--error {
  color: #f87171;
}

.portal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* ---- Service detail page ---- */

.service-anchor-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0;
  background: rgba(5, 9, 20, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(147, 197, 253, 0.1);
}

.service-anchor-list {
  display: flex;
  gap: 4px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-anchor-list::-webkit-scrollbar {
  display: none;
}

.service-anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.12);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-anchor-link:hover {
  color: var(--text-main);
  border-color: rgba(147, 197, 253, 0.28);
  background: rgba(59, 130, 246, 0.08);
}

.service-anchor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-detail-section {
  padding: 84px 0;
  border-top: 1px solid rgba(147, 197, 253, 0.07);
  scroll-margin-top: 108px;
}

.service-detail-section:first-of-type {
  border-top: none;
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.service-detail-heading {
  flex: 1;
}

.service-detail-heading h2 {
  margin: 10px 0 14px;
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-detail-heading p {
  max-width: 640px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-steps {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.service-steps-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 14px;
}

.service-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(12, 20, 46, 0.7);
  border: 1px solid rgba(147, 197, 253, 0.09);
}

.service-step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(147, 197, 253, 0.2);
  color: var(--accent-light);
}

.service-step-body strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.service-step-body span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.facts-card {
  padding: 28px;
  position: sticky;
  top: 120px;
}

.facts-card-title {
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(147, 197, 253, 0.1);
}

.facts-list {
  display: grid;
  gap: 0;
}

.fact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(147, 197, 253, 0.07);
  align-items: start;
}

.fact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact-row dt {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  line-height: 1.5;
  padding-top: 2px;
}

.fact-row dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.compliance-tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  background: rgba(52, 211, 153, 0.08);
  color: var(--accent-mint);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.faq-section-group {
  margin-bottom: 56px;
}

.faq-section-group:last-of-type {
  margin-bottom: 0;
}

.faq-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(147, 197, 253, 0.1);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border: 1px solid rgba(147, 197, 253, 0.1);
  border-radius: 12px;
  background: rgba(10, 18, 42, 0.5);
  overflow: hidden;
  transition: border-color 180ms ease;
}

.faq-item.is-open {
  border-color: rgba(147, 197, 253, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-main);
  font-family: "Manrope", "Segoe UI Variable", sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 160ms ease;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-answer p:last-child {
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}

.service-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 24px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 24, 52, 0.8) 0%, rgba(9, 16, 38, 0.9) 100%);
  border: 1px solid rgba(147, 197, 253, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-cta-strip p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--text-soft);
}

.service-cta-strip strong {
  display: block;
  color: var(--text-main);
  margin-bottom: 4px;
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .facts-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .service-detail-section {
    padding: 60px 0;
  }

  .service-detail-header {
    flex-direction: column;
    gap: 14px;
  }

  .fact-row {
    grid-template-columns: 90px 1fr;
  }

  .service-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta-strip .button {
    width: 100%;
  }
}

/* ---- End service detail page ---- */

.site-footer {
  padding: 64px 0 0;
  border-top: 1px solid rgba(147, 197, 253, 0.1);
  background: linear-gradient(180deg, rgba(6, 11, 22, 0) 0%, rgba(4, 8, 18, 0.6) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: 52px;
  padding-bottom: 52px;
}

.footer-brand img {
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-col-title {
  display: block;
  margin-bottom: 14px;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.93rem;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--text-main);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-contact p {
  margin: 0 0 20px;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.footer-cta {
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(147, 197, 253, 0.07);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.87rem;
  color: rgba(191, 219, 254, 0.42);
}

.info-card,
.pricing-card,
.metric-card,
.detail-card,
.service-area-card {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.info-card:hover,
.pricing-card:hover,
.metric-card:hover,
.detail-card:hover,
.service-area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(147, 197, 253, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(59, 130, 246, 0.1),
    0 28px 64px rgba(29, 78, 216, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
    font-size: 0.92rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-grid,
  .page-hero-grid,
  .split-section,
  .two-column-layout,
  .about-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .service-panel {
    justify-self: stretch;
    max-width: 460px;
  }

  .feature-bar,
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-area-grid,
  .blog-grid,
  .trailer-feature-grid,
  .trailer-split {
    grid-template-columns: 1fr;
  }

  .trailer-split {
    padding: 32px 28px;
    gap: 28px;
  }

  .hero-medical-art {
    top: 140px;
    right: -140px;
    width: min(500px, 60vw);
    height: 500px;
  }
}

@media (max-width: 1100px) {
  .nav-phone span:not(.nav-phone-label) {
    display: none;
  }

  .nav-phone {
    padding: 8px 10px;
    gap: 0;
  }

  .nav-phone svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 0;
  }

  .nav-shell {
    position: relative;
    padding: 14px 16px;
    border-radius: 0;
  }

  .mobile-nav-toggle {
    position: relative;
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(147, 197, 253, 0.14);
    border-radius: 24px;
    background: rgba(5, 9, 22, 0.96);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 10px;
  }

  .nav-phone {
    display: none;
  }

  .nav-item-dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(147, 197, 253, 0.09);
    border-radius: 12px;
    padding: 6px;
    margin-top: 4px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-dropdown a {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .hero-grid {
    padding-top: 48px;
  }

  .page-hero-grid {
    padding-top: 48px;
  }

  .feature-bar,
  .pricing-cards,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .portal-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-cta {
    width: 100%;
    text-align: center;
  }

  .hero-section {
    padding-bottom: 40px;
  }

  .hero-backdrop {
    height: 760px;
  }

  .hero-medical-art {
    top: 160px;
    right: -180px;
    width: 380px;
    height: 380px;
    opacity: 0.14;
  }

  .hero-copy h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-hero-copy h1 {
    font-size: clamp(1.5rem, 6vw, 1.95rem);
  }

  .hero-text,
  .section-heading p,
  .about-copy p,
  .schedule-copy p,
  .portal-copy p {
    font-size: 1rem;
  }

  .feature-bar,
  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-area-list {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 72px 0;
  }

  .service-panel,
  .process-card,
  .schedule-form,
  .portal-card,
  .info-card,
  .pricing-card,
  .metric-card {
    padding: 22px;
    border-radius: 24px;
  }

  .form-row.two-column {
    grid-template-columns: 1fr;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .trust-pills span,
  .feature-item {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
