/*
Theme Name: Dr Shoaib Waqas Rehab
Theme URI: https://example.com/
Author: Custom
Author URI: https://example.com/
Description: Custom theme for Prof. Dr. Shoaib Waqas — neurological physiotherapy specialist landing experience. Zip this folder and upload via Appearance > Themes.
Version: 1.2.1
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dr-waqas-rehab
*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --navy-900: #080f1f;
  --navy-800: #0f2035;
  --navy-600: #1e3a5f;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-400: #2dd4bf;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --white: #ffffff;
  --max: 80rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.text-gradient {
  background: linear-gradient(135deg, #1e3a5f 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: max(1.125rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.125rem, env(safe-area-inset-right, 0px));
  }
}

/* â€”â€”â€” Header â€”â€”â€” */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 32px rgba(15, 32, 53, 0.07);
}

/* Grid: brand | centered nav | actions (fixes uneven gaps from flex space-between) */
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.625rem;
  row-gap: 0.5rem;
  padding: 0.65rem 0;
  min-height: 3.85rem;
}

@media (min-width: 768px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 1.25rem;
    padding: 0.85rem 0;
    min-height: 4.35rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    column-gap: 0.75rem;
    padding: 0.6rem 0;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-aside {
    gap: 0.4rem;
  }

  .social-row--header .social-btn {
    width: 2.25rem;
    height: 2.25rem;
  }

  .social-row--header .social-btn .icon {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    width: 2.45rem;
    height: 2.45rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  border-radius: 1rem;
  padding: 0.2rem 0.35rem 0.2rem 0.2rem;
  margin: -0.2rem;
  transition: background 0.25s ease;
}

.brand:hover {
  background: rgba(15, 32, 53, 0.04);
}

a.brand:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
}

.brand-logo-wrap {
  flex-shrink: 0;
  padding: 3px;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.9));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 14px rgba(30, 58, 95, 0.12),
    0 0 0 1px rgba(226, 232, 240, 0.9);
  line-height: 0;
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.brand:hover .brand-logo-wrap {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 8px 22px rgba(20, 184, 166, 0.15),
    0 0 0 1px rgba(20, 184, 166, 0.25);
  transform: translateY(-1px);
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
}

/* Neural logo (SVG file; img avoids object-tag rendering bugs) */
.brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .brand-logo {
    width: 3rem;
    height: 3rem;
    border-radius: 0.7rem;
  }
}

.brand-logo--footer {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Base: pill shape, soft depth, smooth springy hover */
.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  flex-shrink: 0;
  color: #fff;
  border: 1px solid transparent;
  box-shadow:
    0 2px 8px rgba(15, 32, 53, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease,
    border-color 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 10px 28px rgba(15, 32, 53, 0.18),
    0 4px 12px rgba(15, 32, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.05);
}

.social-btn:active {
  transform: translateY(-1px) scale(1.02);
  transition-duration: 0.12s;
}

.social-btn:focus-visible {
  outline: 2px solid var(--teal-400);
  outline-offset: 3px;
}

.social-btn .icon {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.social-btn:hover .icon {
  transform: scale(1.08);
}

.social-btn--facebook {
  background: linear-gradient(165deg, #3d8ef7 0%, #1877f2 45%, #0d5dbf 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-btn--facebook:hover {
  box-shadow:
    0 12px 32px rgba(24, 119, 242, 0.38),
    0 4px 12px rgba(24, 119, 242, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-btn--facebook .icon {
  fill: currentColor;
}

.social-btn--instagram {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 38%, #6228d7 72%, #4b299d 100%);
  border-color: rgba(255, 255, 255, 0.22);
}

.social-btn--instagram:hover {
  box-shadow:
    0 12px 32px rgba(221, 42, 123, 0.32),
    0 4px 14px rgba(98, 40, 215, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.social-btn--instagram .icon {
  stroke: currentColor;
}

.social-btn--wide {
  width: auto;
  flex: 1;
  min-height: 2.875rem;
  padding: 0 1rem;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
}

.social-row--drawer {
  display: flex;
  flex-direction: row;
  gap: 0.625rem;
  width: 100%;
  margin: 0.5rem 0 0.25rem;
}

.social-row--footer {
  margin-top: 1.35rem;
  gap: 0.625rem;
}

/* Footer: glass pills on dark â€” softer glow, no harsh flat blocks */
.social-row--footer .social-btn {
  width: 2.625rem;
  height: 2.625rem;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.social-row--footer .social-btn--facebook {
  background: linear-gradient(165deg, rgba(61, 142, 247, 0.95) 0%, rgba(24, 119, 242, 0.92) 50%, rgba(13, 93, 191, 0.95) 100%);
}

.social-row--footer .social-btn--instagram {
  background: linear-gradient(135deg, rgba(249, 206, 52, 0.95) 0%, rgba(238, 42, 123, 0.92) 45%, rgba(98, 40, 215, 0.95) 100%);
}

.social-row--footer .social-btn:hover {
  filter: brightness(1.12) saturate(1.05);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-name {
  display: block;
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand-tag {
  display: block;
  font-size: 0.625rem;
  color: var(--teal-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .brand {
    gap: 0.5rem;
    padding: 0.15rem 0.2rem 0.15rem 0.1rem;
    min-width: 0;
  }

  .brand-logo-wrap {
    padding: 2px;
    border-radius: 0.75rem;
  }

  .brand-logo {
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 0.55rem;
  }

  .brand-name {
    font-size: 0.8125rem;
    letter-spacing: -0.015em;
  }

  .brand-tag {
    font-size: 0.5625rem;
    letter-spacing: 0.08em;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-self: center;
    max-width: 100%;
  }
}

/* Pill nav â€” clear tap targets, even spacing */
.nav-pill {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.nav-pill:hover {
  color: var(--navy-800);
  background: rgba(15, 32, 53, 0.05);
  border-color: rgba(226, 232, 240, 0.95);
}

.nav-pill:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .nav-pill:hover {
    background: rgba(20, 184, 166, 0.08);
    border-color: rgba(20, 184, 166, 0.2);
    color: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.12);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  justify-self: end;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 0.65rem;
  }
}

.header-aside {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call {
  display: none;
  position: relative;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #14b8a6, #0d9488);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.35), 0 4px 14px rgba(20, 184, 166, 0.2);
  overflow: visible;
  transition: box-shadow 0.3s, transform 0.2s;
}

.btn-call:hover {
  box-shadow: 0 0 28px rgba(20, 184, 166, 0.45), 0 6px 20px rgba(20, 184, 166, 0.25);
}

.btn-call .icon {
  width: 15px;
  height: 15px;
}

@media (min-width: 768px) {
  .btn-call {
    display: inline-flex;
  }
}

.btn-call-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: rgba(20, 184, 166, 0.35);
  z-index: -1;
  animation: ping-ring 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-ring {
  75%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.menu-toggle {
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0.75rem;
  color: var(--navy-800);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 2px 10px rgba(15, 32, 53, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
  background: #fff;
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.12);
  color: var(--teal-700);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px rgba(15, 32, 53, 0.12);
  padding: 1.5rem;
}

.mobile-drawer.is-open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-drawer {
    display: none !important;
  }
}

.mobile-drawer a,
.mobile-drawer button {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 0;
}

.mobile-drawer .social-row--drawer a.social-btn--wide {
  display: inline-flex;
  width: auto;
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0.65rem;
  font-weight: 800;
}

.mobile-drawer a:hover,
.mobile-drawer button:hover {
  color: var(--teal-500);
}

.mobile-drawer a.social-btn:hover,
.mobile-drawer a.social-btn:focus {
  color: #fff;
}

.mobile-drawer .btn-call-mobile {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #14b8a6, #0d9488);
  color: #fff;
  font-weight: 800;
  padding: 0.875rem;
  border-radius: 1rem;
  text-align: center;
}

/* â€”â€”â€” Hero â€”â€”â€” */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 45%, rgba(240, 253, 250, 0.5) 100%);
  padding-top: 5rem;
}

@media (max-width: 1023px) {
  .hero {
    min-height: 0;
    align-items: flex-start;
    padding-top: max(4.25rem, calc(env(safe-area-inset-top, 0px) + 3.5rem));
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  top: -10rem;
  right: -10rem;
  background: linear-gradient(135deg, #ccfbf1, #dbeafe);
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -5rem;
  left: -5rem;
  background: linear-gradient(135deg, #e0e7ff, #ccfbf1);
}

@media (max-width: 639px) {
  .hero-blob-1 {
    width: min(220px, 72vw);
    height: min(220px, 72vw);
    top: -3.5rem;
    right: -4rem;
    opacity: 0.45;
  }

  .hero-blob-2 {
    width: min(160px, 50vw);
    height: min(160px, 50vw);
    bottom: -2rem;
    left: -3rem;
    opacity: 0.4;
  }
}

.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, #1e3a5f 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

@media (max-width: 1023px) {
  .hero-grid {
    gap: 1.5rem;
    padding: 0.75rem 0 2.5rem;
    align-items: stretch;
  }

  /* Portrait first on tablet/phone — clearer focal point before copy */
  .hero-grid .hero-visual {
    order: 1;
  }

  .hero-grid .hero-text {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .hero-text {
    gap: 1.1rem;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 1rem;
  border-radius: 999px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  50% {
    opacity: 0.5;
  }
}

.hero-kicker {
  color: var(--teal-500);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 639px) {
  .hero-kicker {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    line-height: 1.4;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

  .badge-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid {
    padding: 0.5rem 0 2.75rem;
    gap: 1.25rem;
  }
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (max-width: 639px) {
  .hero h1 {
    font-size: clamp(1.6rem, 7.5vw, 2.05rem);
    line-height: 1.18;
    letter-spacing: -0.025em;
  }
}

.hero-desc {
  margin: 0;
  color: var(--slate-500);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 32rem;
}

@media (max-width: 639px) {
  .hero-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

.hero-desc strong {
  color: #334155;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

@media (max-width: 639px) {
  .hero-cta {
    gap: 0.65rem;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    min-height: 3.1rem;
    padding: 0.9rem 1.25rem;
    border-radius: 0.875rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #1e3a5f, #14b8a6);
  color: #fff;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.2);
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(20, 184, 166, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid rgba(30, 58, 95, 0.15);
  color: var(--navy-600);
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: var(--navy-600);
  color: #fff;
  border-color: var(--navy-600);
  transform: translateY(-2px);
}

.btn-secondary--light {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary--light:hover {
  background: #fff;
  color: var(--navy-800);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

@media (max-width: 639px) {
  .hero-stats {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.75rem 0.875rem;
    margin-top: 0.25rem;
    border-top: none;
    border-radius: 1rem;
    background: rgba(240, 253, 250, 0.72);
    border: 1px solid rgba(153, 246, 232, 0.65);
    box-shadow: 0 4px 20px rgba(15, 32, 53, 0.04);
  }

  .hero-stats .stat {
    gap: 0.875rem;
    padding: 0.65rem 0.25rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  }

  .hero-stats .stat:last-child {
    border-bottom: none;
    padding-bottom: 0.35rem;
  }

  .hero-stats .stat:first-child {
    padding-top: 0.35rem;
  }

  .hero-stats .stat-ico {
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 0.85rem;
  }

  .hero-stats .stat-ico .icon {
    width: 20px;
    height: 20px;
  }

  .hero-stats .stat-val {
    font-size: 1.1875rem;
  }

  .hero-stats .stat-lbl {
    font-size: 0.8125rem;
    margin-top: 0.2rem;
    color: #64748b;
  }
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-500);
}

.stat-ico .icon {
  width: 18px;
  height: 18px;
}

.stat-val {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--navy-800);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 600;
  margin-top: 0.125rem;
}

/* Hero portrait â€” DOM order: copy first, photo second (no CSS order swap on phone) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  width: min(380px, 90vw);
  height: min(380px, 90vw);
  border: 2px dashed rgba(20, 184, 166, 0.35);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite;
}

@media (max-width: 639px) {
  .hero-ring {
    width: min(260px, 72vw);
    height: min(260px, 72vw);
    opacity: 0.75;
  }
}

@media (min-width: 640px) {
  .hero-ring {
    width: 440px;
    height: 440px;
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.hero-glow-behind {
  position: absolute;
  width: min(320px, 85vw);
  height: min(320px, 85vw);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.6), rgba(219, 234, 254, 0.4));
  filter: blur(40px);
}

@media (max-width: 639px) {
  .hero-glow-behind {
    width: min(220px, 65vw);
    height: min(220px, 65vw);
    filter: blur(28px);
  }
}

.portrait-wrap {
  position: relative;
  width: min(300px, 85vw);
  height: min(380px, 110vw);
}

/* Mobile: photo unobstructed; info cards sit in a row below the portrait */
@media (max-width: 639px) {
  .portrait-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0.5rem 0.45rem;
    width: min(300px, 92vw);
    height: auto;
    margin: 0 auto;
    align-items: stretch;
  }

  .portrait-photo {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: min(340px, 52vh);
    margin: 0 auto;
  }
}

@media (min-width: 640px) {
  .portrait-wrap {
    width: 360px;
    height: 450px;
    display: block;
  }

  .portrait-photo {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .portrait-wrap {
    width: 400px;
    height: 500px;
  }
}

.portrait-shadow {
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, #1e3a5f, #14b8a6);
  transform: rotate(3deg);
  opacity: 0.2;
  filter: blur(6px);
}

.portrait-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 25px 60px rgba(15, 32, 53, 0.22);
}

@media (max-width: 639px) {
  .portrait-frame {
    border-radius: 1.5rem;
    border-width: 3px;
    box-shadow: 0 16px 40px rgba(15, 32, 53, 0.16);
  }

  .portrait-shadow {
    border-radius: 1.5rem;
  }
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portrait-shade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, rgba(15, 32, 53, 0.28), transparent);
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 40px rgba(15, 32, 53, 0.12);
  z-index: 2;
}

.float-card small {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
  font-weight: 700;
}

.float-card strong {
  display: block;
  margin-top: 0.125rem;
  color: var(--navy-800);
  font-size: 0.875rem;
}

.float-card span {
  font-size: 0.75rem;
  color: var(--teal-500);
  font-weight: 600;
}

.float-card--bl {
  bottom: -1.25rem;
  left: -1.5rem;
}

.float-card--tr {
  top: -1rem;
  right: -1rem;
}

@media (max-width: 639px) {
  .float-card {
    position: static;
    max-width: none;
    width: 100%;
    min-width: 0;
    align-self: stretch;
    padding: 0.5rem 0.65rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(15, 32, 53, 0.1);
  }

  .float-card small {
    font-size: 0.5625rem;
    letter-spacing: 0.08em;
  }

  .float-card strong {
    font-size: 0.75rem;
  }

  .float-card span {
    font-size: 0.6875rem;
  }

  .float-card--bl {
    grid-column: 1;
    grid-row: 2;
    bottom: auto;
    left: auto;
  }

  .float-card--tr {
    grid-column: 2;
    grid-row: 2;
    top: auto;
    right: auto;
  }
}

/* â€”â€”â€” Reveal on scroll â€”â€”â€” */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* â€”â€”â€” About / Bento â€”â€”â€” */
.section-about {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section-about .dots-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, #1e3a5f 1px, transparent 0);
  background-size: 28px 28px;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  color: var(--teal-500);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 1rem auto 0;
  color: var(--slate-500);
  font-size: 1.125rem;
  max-width: 42rem;
  line-height: 1.65;
}

.section-about .section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

/* Long-form bio + portrait (home #about, above bento) */
.about-bio-showcase {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.about-bio-panel {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc 0%, #fff 38%, rgba(240, 253, 250, 0.55) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 60px rgba(15, 32, 53, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.about-bio-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about-bio-grid {
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(2rem, 4vw, 2.75rem) clamp(2rem, 4vw, 3rem);
  }
}

.about-bio-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 300px);
}

@media (min-width: 900px) {
  .about-bio-visual {
    justify-self: start;
    width: 100%;
  }
}

.about-bio-visual-ring {
  position: absolute;
  inset: -6%;
  border: 2px dashed rgba(20, 184, 166, 0.28);
  border-radius: 1.75rem;
  animation: spin-slow 36s linear infinite;
  pointer-events: none;
}

.about-bio-figure {
  position: relative;
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 50px rgba(15, 32, 53, 0.14), 0 0 0 1px rgba(30, 58, 95, 0.06);
}

.about-bio-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.about-bio-badge {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  max-width: calc(100% - 1.5rem);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 32, 53, 0.1);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-600);
  text-align: center;
}

@media (min-width: 900px) {
  .about-bio-badge {
    left: 1rem;
    bottom: 1rem;
    transform: none;
    text-align: left;
  }
}

.about-bio-copy {
  color: var(--slate-500);
  font-size: 1rem;
  line-height: 1.75;
}

.about-bio-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.about-bio-copy > p:not(.about-bio-eyebrow):not(.about-bio-closing):not(.about-bio-cta-line) {
  margin: 0 0 1.1rem;
}

.about-bio-closing {
  margin: 0 0 1rem;
  color: #475569;
  font-weight: 600;
}

.about-bio-cta-line {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.5;
}

.about-bio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-primary--compact,
.btn-secondary--compact {
  padding: 0.75rem 1.35rem;
  border-radius: 0.875rem;
  font-size: 0.875rem;
}

.bento {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-span-2 {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .bento-span-2 {
    grid-column: span 2;
  }
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(8, 15, 31, 0.12);
}

.bento-dark {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2rem;
  background: linear-gradient(135deg, #0f2035 0%, #1e3a5f 50%, #14b8a6 100%);
  color: #fff;
}

.bento-dark .ico-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bento-dark .ico-box .icon {
  width: 28px;
  height: 28px;
  color: #fff;
}

.bento-dark .tagline {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #99f6e4;
}

.bento-dark h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  line-height: 1.2;
}

.bento-dark p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.bento-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bento-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.bento-teal {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
  border: 1px solid #ccfbf1;
  overflow: hidden;
}

.bento-teal .ico-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

.bento-teal .ico-box .icon {
  width: 24px;
  height: 24px;
  color: #fff;
}

.bento-teal .tagline {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0d9488;
}

.bento-teal h3 {
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-800);
}

.bento-teal .sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  margin-top: 0.25rem;
}

.bento-teal p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.bento-teal .loc {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
}

.bento-quote {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.bento-quote .quote-mark {
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-size: 7rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: #f1f5f9;
  pointer-events: none;
}

.bento-quote .ico-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.2);
}

.bento-quote .ico-box .icon {
  width: 22px;
  height: 22px;
  color: #fff;
}

.bento-quote blockquote {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: #334155;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.bento-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-style: normal;
  color: var(--slate-400);
  font-weight: 600;
}

.bento-list-dark {
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(15, 32, 53, 0.97), #1e3a5f);
  color: #fff;
}

.bento-list-dark .ico-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bento-list-dark .ico-box .icon {
  width: 22px;
  height: 22px;
  color: var(--teal-400);
}

.bento-list-dark ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.bento-list-dark li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.bento-list-dark li:last-child {
  margin-bottom: 0;
}

.bento-list-dark .li-ico {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(20, 184, 166, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bento-list-dark .li-ico .icon {
  width: 13px;
  height: 13px;
  color: var(--teal-400);
}

.bento-stats {
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(90deg, #14b8a6, #0d9488);
  position: relative;
  overflow: hidden;
}

.bento-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 20px 20px;
}

.bento-stats-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bento-stat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bento-stat-row strong {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.bento-stat-row span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

/* â€”â€”â€” Specialties â€”â€”â€” */
.section-spec {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #f8fafc, #fff);
  position: relative;
  overflow: hidden;
}

.spec-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spec-card {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 32, 53, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 32, 53, 0.1);
}

.spec-bar {
  height: 6px;
  width: 100%;
}

.spec-bar--indigo {
  background: linear-gradient(90deg, #6366f1, #1e3a5f);
}

.spec-bar--teal {
  background: linear-gradient(90deg, #14b8a6, #0f766e);
}

.spec-bar--slate {
  background: linear-gradient(90deg, #475569, #1e3a5f);
}

.spec-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spec-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.spec-ico {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 32, 53, 0.15);
  transition: transform 0.3s;
}

.spec-card:hover .spec-ico {
  transform: scale(1.08);
}

.spec-ico .icon {
  width: 26px;
  height: 26px;
  color: #fff;
}

.spec-ico--indigo {
  background: #6366f1;
}

.spec-ico--teal {
  background: var(--teal-500);
}

.spec-ico--slate {
  background: #475569;
}

.spec-badge {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid;
}

.spec-badge--indigo {
  color: #4338ca;
  background: #eef2ff;
  border-color: #e0e7ff;
}

.spec-badge--teal {
  color: #0f766e;
  background: #f0fdfa;
  border-color: #ccfbf1;
}

.spec-badge--slate {
  color: #334155;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.spec-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.25;
}

.spec-card > .spec-body > p {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.spec-focus-title {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
  margin-bottom: 0.75rem;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

.spec-list li .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.spec-list--indigo .icon {
  color: #4f46e5;
}

.spec-list--teal .icon {
  color: var(--teal-600);
}

.spec-list--slate .icon {
  color: #475569;
}

.spec-foot {
  margin-top: auto;
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.spec-foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 800;
  transition: gap 0.25s;
}

.spec-foot a:hover {
  gap: 0.75rem;
}

.spec-foot--indigo a {
  color: #4338ca;
}

.spec-foot--teal a {
  color: #0f766e;
}

.spec-foot--slate a {
  color: #334155;
}

/* â€”â€”â€” Location / Map (above footer) â€”â€”â€” */
.section-location {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
}

.location-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.35fr);
    gap: 2.5rem;
  }
}

.location-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 4px 24px rgba(15, 32, 53, 0.06);
}

.location-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.25;
}

.location-sub {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-address {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  font-weight: 500;
}

.location-meta {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.location-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 0.625rem;
}

.location-meta li:last-child {
  margin-bottom: 0;
}

.location-meta a {
  color: var(--teal-600);
  font-weight: 700;
}

.location-meta a:hover {
  color: var(--teal-500);
}

.location-meta .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--teal-500);
}

.location-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #1e3a5f, #14b8a6);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.875rem;
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-maps:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20, 184, 166, 0.25);
}

.btn-maps .icon {
  width: 16px;
  height: 16px;
}

.location-map-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(15, 32, 53, 0.1);
  background: #e2e8f0;
  min-height: 280px;
  aspect-ratio: 16 / 11;
}

@media (min-width: 900px) {
  .location-map-wrap {
    min-height: 360px;
  }
}

.location-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-map-caption {
  margin: 0.75rem 0 0;
  font-size: 0.6875rem;
  color: var(--slate-400);
  line-height: 1.45;
}

/* â€”â€”â€” Footer â€”â€”â€” */
.site-footer {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.4), transparent);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 2fr;
  }
}

.footer-brand p {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.6;
}

.footer-links h4,
.footer-clinics h4 {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1.25rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--slate-400);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-links a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-500);
  transition: width 0.25s, border-radius 0.25s;
}

.footer-links a:hover::before {
  width: 12px;
  border-radius: 2px;
}

.btn-footer-call {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-500);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
}

.btn-footer-call:hover {
  background: var(--teal-400);
}

.clinic-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .clinic-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.clinic-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: background 0.2s;
}

.clinic-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.clinic-card .name {
  color: var(--teal-400);
  font-weight: 800;
  font-size: 0.875rem;
}

.clinic-card .place {
  margin-top: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.clinic-card .row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--slate-400);
}

.clinic-card .row .icon {
  width: 12px;
  height: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #64748b;
}

.clinic-card a.tel {
  color: var(--teal-400);
  font-weight: 600;
}

.clinic-card a.tel:hover {
  color: #99f6e4;
}

.footer-mail {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: color 0.2s;
}

.footer-mail:hover {
  color: var(--teal-400);
}

.seo-strip {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-strip > p {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #64748b;
  margin: 0 0 1rem;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.seo-tags span {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--slate-400);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}

/* ——— Full About page (page-about-us) ——— */
.site-main--about {
  padding-top: 4.75rem;
}

.page-about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  background: linear-gradient(155deg, #0a1628 0%, #1e3a5f 42%, #0d4f4a 100%);
  color: #f1f5f9;
}

.page-about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle at 20% 30%, rgba(45, 212, 191, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(96, 165, 250, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: auto, auto, 24px 24px;
}

.page-about-hero-inner {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .page-about-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.page-about-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(45, 212, 191, 0.95);
}

.page-about-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.page-about-hero-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
  max-width: 36rem;
}

.page-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-about-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.page-about-hero-ring {
  position: absolute;
  width: min(320px, 78vw);
  height: min(320px, 78vw);
  border: 2px dashed rgba(45, 212, 191, 0.35);
  border-radius: 50%;
  animation: spin-slow 32s linear infinite;
}

.page-about-figure {
  position: relative;
  margin: 0;
  width: min(280px, 72vw);
  border-radius: 1.75rem;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .page-about-figure {
    width: min(380px, 100%);
    border-radius: 2rem;
  }

  .page-about-hero-ring {
    width: min(400px, 42vw);
    height: min(400px, 42vw);
  }
}

.page-about-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.page-about-hero-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 2rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.875rem;
  padding: 0.65rem 1rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

@media (min-width: 900px) {
  .page-about-hero-badge {
    left: auto;
    right: -0.5rem;
    bottom: 2rem;
    transform: none;
    text-align: left;
  }
}

.page-about-hero-badge small {
  display: block;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.page-about-hero-badge strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.875rem;
  color: var(--navy-800);
}

.page-about-hero-badge span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-600);
}

@media (max-width: 899px) {
  .page-about-hero-copy {
    text-align: center;
  }

  .page-about-hero-actions {
    justify-content: center;
  }

  .page-about-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-about-strip {
  background: #fff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 30px rgba(15, 32, 53, 0.04);
}

.page-about-strip-inner {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
}

@media (min-width: 768px) {
  .page-about-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem 0;
  }
}

@media (min-width: 1100px) {
  .page-about-strip-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.page-about-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-600);
  line-height: 1.45;
}

.page-about-strip-item .icon {
  flex-shrink: 0;
  color: var(--teal-500);
  margin-top: 0.1rem;
}

.page-about-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 35%);
}

.page-about-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .page-about-layout {
    grid-template-columns: 1fr min(320px, 32%);
    gap: 2.5rem;
  }
}

.page-about-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.65rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 24px rgba(15, 32, 53, 0.05);
  position: relative;
  overflow: hidden;
}

.page-about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal-500), var(--navy-600));
  opacity: 0.85;
  border-radius: 4px 0 0 4px;
}

.page-about-card--pediatric::before {
  background: linear-gradient(180deg, #2dd4bf, #0d9488);
}

.page-about-card--lubas::before {
  background: linear-gradient(180deg, #6366f1, #1e3a5f);
}

.page-about-card-ico {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(240, 253, 250, 1), rgba(224, 231, 255, 0.5));
  color: var(--teal-600);
  margin-bottom: 1rem;
}

.page-about-card-ico .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.page-about-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}

.page-about-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 1.02rem;
  line-height: 1.72;
}

.page-about-editor {
  background: #fff;
  border: 1px dashed rgba(20, 184, 166, 0.35);
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.65rem;
  margin-bottom: 1.25rem;
}

.page-about-editor p:last-child {
  margin-bottom: 0;
}

.page-about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-about-aside-card {
  background: linear-gradient(145deg, #1e3a5f 0%, #0f2035 100%);
  color: #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.65rem;
  box-shadow: 0 20px 50px rgba(15, 32, 53, 0.2);
}

.page-about-aside-label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(45, 212, 191, 0.9);
}

.page-about-aside-text {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.9);
}

.page-about-aside-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.875rem;
  color: #5eead4;
  transition: color 0.2s, gap 0.2s;
}

.page-about-aside-link:hover {
  color: #fff;
  gap: 0.55rem;
}

.page-about-aside-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.page-about-aside-stats > div {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 32, 53, 0.04);
}

.page-about-aside-stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.1;
}

.page-about-aside-stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
}

.page-about-quote {
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  max-width: 44rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.65), rgba(219, 234, 254, 0.45));
  border-radius: 1.5rem;
  border: 1px solid rgba(153, 246, 232, 0.5);
}

.page-about-quote p {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy-600);
  line-height: 1.55;
}

.page-about-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.page-about-cta {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(90deg, #1e3a5f, #0d9488);
  box-shadow: 0 20px 50px rgba(20, 184, 166, 0.22);
}

.page-about-cta-inner {
  padding: clamp(2rem, 5vw, 2.75rem) 1.5rem;
  text-align: center;
  color: #fff;
}

.page-about-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
}

.page-about-cta p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.page-about-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.page-about-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.page-about-cta .btn-secondary:hover {
  background: #fff;
  color: var(--navy-800);
  border-color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--teal-500);
  border-radius: 3px;
}

