/* ============================================================
   Divine Light Psychiatry Services — Premium Stylesheet v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --teal-deep:    #1a5f6e;
  --teal-mid:     #2a8095;
  --teal-light:   #4db8cc;
  --sage:         #7aab8f;
  --sage-light:   #a8c5b5;
  --cream:        #f8f6f2;
  --warm-white:   #fdfcfa;
  --charcoal:     #2c3e42;
  --body-text:    #4a5c61;
  --muted:        #7a9097;
  --gold:         #c9a96e;
  --card-bg:      #ffffff;
  --border:       #e2ede9;
  --shadow-sm:    0 2px 12px rgba(26,95,110,0.08);
  --shadow-md:    0 8px 32px rgba(26,95,110,0.12);
  --shadow-lg:    0 16px 56px rgba(26,95,110,0.16);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-height:   72px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--body-text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3 { font-family: 'Playfair Display', serif; color: var(--charcoal); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--charcoal); }
p { font-size: 1rem; line-height: 1.8; color: var(--body-text); }
.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-mid); margin-bottom: 0.75rem; display: block;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 100px 0; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius-xl);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); letter-spacing: 0.02em; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  color: #fff; box-shadow: 0 4px 20px rgba(26,95,110,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,95,110,0.45); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6); color: #fff;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-teal-outline { border: 2px solid var(--teal-mid); color: var(--teal-mid); background: transparent; }
.btn-teal-outline:hover { background: var(--teal-mid); color: #fff; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ─── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); display: flex; align-items: center;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%;
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: #fff; transition: color var(--transition); line-height: 1.1;
}
.nav-logo-tag {
  font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); transition: color var(--transition);
}
#navbar.scrolled .nav-logo-name { color: var(--teal-deep); }
#navbar.scrolled .nav-logo-tag { color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
  font-family: 'Poppins', sans-serif; font-size: 0.83rem; font-weight: 500;
  padding: 0.45rem 0.8rem; border-radius: 6px;
  color: rgba(255,255,255,0.9); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }
#navbar.scrolled .nav-links a { color: var(--body-text); }
#navbar.scrolled .nav-links a:hover, #navbar.scrolled .nav-links a.active { color: var(--teal-deep); background: rgba(26,95,110,0.07); }

.nav-cta { margin-left: 0.75rem; }
.nav-cta .btn { padding: 0.55rem 1.3rem; font-size: 0.82rem; }

/* ─── HAMBURGER ──────────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  border-radius: 8px; cursor: pointer;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.2); }
#navbar.scrolled .nav-hamburger { background: rgba(26,95,110,0.08); }
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: #fff; transition: var(--transition); border-radius: 2px;
}
#navbar.scrolled .nav-hamburger span { background: var(--charcoal); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(10,30,36,0.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 999;
  width: min(340px, 90vw);
  background: linear-gradient(160deg, #0d3540 0%, #092830 100%);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.35);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-nav-brand { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; }
.mobile-nav-brand span { display: block; font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); font-weight: 400; margin-top: 2px; }
.mobile-nav-close {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  color: rgba(255,255,255,0.8); transition: var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
.mobile-nav-close svg { width: 18px; height: 18px; }

.mobile-nav-links { padding: 1rem 1rem; flex: 1; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 500;
  color: rgba(255,255,255,0.82); transition: var(--transition);
  margin-bottom: 0.25rem;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  background: rgba(255,255,255,0.08); color: #fff;
}
.mobile-nav-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(77,184,204,0.15);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-icon svg { width: 16px; height: 16px; color: var(--teal-light); }
.mobile-nav-links a:hover .mobile-nav-icon,
.mobile-nav-links a.active .mobile-nav-icon { background: rgba(77,184,204,0.28); }

.mobile-nav-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.5rem 0; }

.mobile-nav-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-nav-footer .btn { width: 100%; justify-content: center; font-size: 0.88rem; }
.mobile-nav-contact {
  margin-top: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.mobile-nav-contact svg { width: 14px; height: 14px; color: var(--teal-light); }
.mobile-nav-contact a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.mobile-nav-contact a:hover { color: var(--teal-light); }

/* ─── LOADING SCREEN ─────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(160deg, #0d3540 0%, #092830 60%, #061e26 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-logo {
  text-align: center; margin-bottom: 2.5rem;
  animation: loaderFadeIn 0.8s ease 0.2s both;
}
.loader-logo-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(77,184,204,0.4);
  animation: loaderPulse 2s ease infinite;
}
.loader-logo-icon svg { width: 38px; height: 38px; color: #fff; }
.loader-logo h2 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  font-weight: 700; color: #fff; margin-bottom: 0.3rem;
}
.loader-logo p {
  font-family: 'Poppins', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light);
}
.loader-bar-wrap {
  width: 220px; height: 3px; background: rgba(255,255,255,0.1);
  border-radius: 3px; overflow: hidden;
  animation: loaderFadeIn 0.8s ease 0.5s both;
}
.loader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-light));
  border-radius: 3px;
  animation: loaderProgress 2.4s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
}
.loader-tagline {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  animation: loaderFadeIn 0.8s ease 0.9s both;
}
@keyframes loaderFadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@keyframes loaderPulse { 0%,100%{box-shadow:0 8px 32px rgba(77,184,204,0.4);} 50%{box-shadow:0 8px 48px rgba(77,184,204,0.7);} }
@keyframes loaderProgress { 0%{width:0%} 30%{width:35%} 60%{width:65%} 80%{width:82%} 100%{width:100%} }

/* Page hero (non-home pages) */
.page-hero {
  position: relative; padding: 160px 0 90px; text-align: center;
  overflow: hidden; background: linear-gradient(160deg, var(--teal-deep) 0%, #0e4a57 100%);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(10,40,50,0.82) 0%, rgba(14,60,74,0.75) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; line-height: 1.7; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem;
  color: rgba(255,255,255,0.55); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--teal-light); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ─── HERO (index) ───────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,40,48,0.82) 0%, rgba(22,70,82,0.72) 50%, rgba(12,50,58,0.80) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px; padding: 0 2rem;
  animation: heroFadeUp 1.2s ease both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 1.5rem;
  background: rgba(77,184,204,0.12); border: 1px solid rgba(77,184,204,0.3);
  padding: 0.4rem 1.2rem; border-radius: 30px;
}
.hero-content h1 { color: #fff; margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content h1 span { color: var(--teal-light); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-quote {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.75rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.72);
}
.hero-quote cite { display: block; font-style: normal; font-size: 0.8rem; margin-top: 0.4rem; font-family: 'Inter', sans-serif; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-scroll svg { color: rgba(255,255,255,0.5); width: 20px; height: 20px; }

/* ─── ABOUT ──────────────────────────────────────────── */
#about { background: var(--warm-white); }
.about-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image-wrap img { width: 100%; height: 520px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 2rem; right: -1.5rem;
  background: #fff; border-radius: var(--radius-md); padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-md); text-align: center; min-width: 150px;
}
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--teal-deep); line-height: 1; }
.about-badge-label { font-size: 0.78rem; color: var(--muted); font-family: 'Poppins', sans-serif; margin-top: 0.3rem; }
.about-content { padding-left: 1rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.3rem; background: var(--cream);
  border-radius: var(--radius-sm); border-left: 3px solid var(--sage);
}
.about-pillar svg { color: var(--teal-mid); flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; }
.about-pillar h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.about-pillar p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ─── SERVICES PAGE ──────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: 2rem; cursor: pointer; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(42,128,149,0.1), rgba(77,184,204,0.15)); margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; color: var(--teal-mid); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.65rem; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600; color: var(--teal-mid);
  font-family: 'Poppins', sans-serif; margin-top: 1rem; transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 0.7rem; }

/* ─── MODALS ─────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(12,40,46,0.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 560px; width: 100%; padding: 2.5rem;
  box-shadow: var(--shadow-lg); animation: modalIn 0.3s ease;
  max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; color: var(--body-text); cursor: pointer; transition: var(--transition);
}
.modal-close:hover { background: var(--teal-mid); color: #fff; }
.modal-box h3 { font-size: 1.4rem; margin-bottom: 0.75rem; margin-top: 0.5rem; }
.modal-box p { color: var(--body-text); line-height: 1.8; margin-bottom: 1rem; }

/* ─── CONDITIONS PAGE ────────────────────────────────── */
.conditions-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; justify-content: center;
}
.cond-tab {
  padding: 0.55rem 1.2rem; border-radius: 30px;
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500;
  border: 1.5px solid var(--border); background: #fff;
  color: var(--body-text); cursor: pointer; transition: var(--transition);
}
.cond-tab.active, .cond-tab:hover { background: var(--teal-mid); border-color: var(--teal-mid); color: #fff; }
.cond-panel { display: none; }
.cond-panel.active { display: block; animation: fadeIn 0.4s ease; }

/* Conditions grid with images — centered */
.cond-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  justify-items: center;
}
.cond-item {
  width: 100%;
  background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.cond-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-light); }
.cond-item-img {
  width: 100%; height: 130px; object-fit: cover;
  background: linear-gradient(135deg, var(--sage-light), var(--teal-light));
  display: block;
}
.cond-item-img-placeholder {
  width: 100%; height: 130px;
  background: linear-gradient(135deg, rgba(42,128,149,0.12), rgba(77,184,204,0.2));
  display: flex; align-items: center; justify-content: center;
}
.cond-item-img-placeholder svg { width: 40px; height: 40px; color: var(--teal-mid); opacity: 0.6; }
.cond-item-label {
  padding: 0.75rem 0.75rem;
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.3;
}
.cond-item-sub { font-size: 0.75rem; color: var(--muted); padding: 0 0.75rem 0.75rem; line-height: 1.4; }

/* ─── WHY US ─────────────────────────────────────────── */
#why-us {
  background: linear-gradient(160deg, var(--teal-deep) 0%, #0e4a57 100%);
  position: relative; overflow: hidden;
}
#why-us::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
#why-us .section-eyebrow { color: var(--teal-light); }
#why-us h2 { color: rgba(255,255,255,0.95); }
#why-us .section-subtitle { color: rgba(255,255,255,0.68); max-width: 580px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card {
  padding: 2rem; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
  backdrop-filter: blur(4px); transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.why-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(77,184,204,0.2); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.why-card-icon svg { color: var(--teal-light); width: 22px; height: 22px; }
.why-card h4 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* ─── TEAM PAGE ──────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 2rem; margin-top: 3rem;
  justify-items: center;
}
.team-card {
  background: var(--card-bg); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
  width: 100%;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-photo {
  height: 280px; background: linear-gradient(135deg, var(--sage-light), var(--teal-light));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.team-info { padding: 1.5rem; text-align: center; }
.team-info h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.78rem; font-weight: 600; color: var(--teal-mid);
  font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.5rem;
}
.team-specialty { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.75rem; font-style: italic; }
.team-info p { font-size: 0.85rem; color: var(--body-text); line-height: 1.65; }

/* Commitment */
.commitment-wrap {
  background: #fff; border-radius: var(--radius-lg); padding: 3rem;
  margin-top: 4rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  text-align: center;
}
.commitment-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 0.85rem; margin-top: 1.5rem; text-align: left;
}
.commitment-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; font-weight: 500; color: var(--charcoal); }
.commitment-item svg { color: var(--sage); width: 18px; height: 18px; flex-shrink: 0; }
.commitment-quote { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: var(--teal-deep); }

/* ─── INSURANCE ──────────────────────────────────────── */
.insurance-cards { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin: 2.5rem 0; }
.insurance-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.5rem 2.5rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition); min-width: 180px;
}
.insurance-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--sage-light); }
.insurance-card-name { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); }
.insurance-card-sub { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border);
  margin-bottom: 0.75rem; overflow: hidden; transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; text-align: left;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--charcoal); cursor: pointer; transition: color var(--transition); background: none;
}
.faq-question:hover { color: var(--teal-mid); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--cream);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--teal-mid); }
.faq-icon svg { width: 12px; height: 12px; color: var(--teal-mid); transition: color var(--transition); }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-answer {
  display: none; padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem; line-height: 1.8; color: var(--body-text);
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.faq-item.open .faq-answer { display: block; animation: fadeIn 0.3s ease; }

/* ─── RESOURCES ──────────────────────────────────────── */
.resources-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.res-tab {
  padding: 0.55rem 1.2rem; border-radius: 30px;
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500;
  border: 1.5px solid var(--border); background: #fff;
  color: var(--body-text); cursor: pointer; transition: var(--transition);
}
.res-tab.active, .res-tab:hover { background: var(--teal-mid); border-color: var(--teal-mid); color: #fff; }
.res-panel { display: none; }
.res-panel.active { display: block; animation: fadeIn 0.4s ease; }
.res-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.res-card {
  background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.res-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--sage-light); }
.res-card-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-mid); margin-bottom: 0.5rem; font-family: 'Poppins', sans-serif; }
.res-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.res-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.res-card-link { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; font-weight: 600; color: var(--teal-mid); font-family: 'Poppins', sans-serif; }
.crisis-banner {
  background: linear-gradient(135deg, #1a3f3f, #0a2a2a); border-radius: var(--radius-md);
  padding: 2rem 2.5rem; margin-bottom: 2rem;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.crisis-banner h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.3rem; }
.crisis-banner p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.crisis-numbers { display: flex; gap: 1rem; flex-wrap: wrap; }
.crisis-num { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border-radius: 8px; padding: 0.6rem 1rem; }
.crisis-num span { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--teal-light); font-size: 1.05rem; }
.crisis-num small { color: rgba(255,255,255,0.65); font-size: 0.75rem; display: block; }

/* ─── CONTACT ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.25rem; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: linear-gradient(135deg, rgba(42,128,149,0.1), rgba(77,184,204,0.15));
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--teal-mid); }
.contact-detail h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-family: 'Poppins', sans-serif; margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.92rem; color: var(--charcoal); font-weight: 500; margin: 0; }
.hours-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.4rem; margin-top: 1rem; }
.hour-row { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0.75rem; background: #fff; border-radius: 6px; font-size: 0.85rem; }
.hour-row .day { font-weight: 600; color: var(--charcoal); }
.hour-row .time { color: var(--muted); }
.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; font-family: 'Poppins', sans-serif; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif;
  font-size: 0.92rem; color: var(--charcoal); background: var(--warm-white);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal-mid); background: #fff; box-shadow: 0 0 0 3px rgba(42,128,149,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.5; }
.form-success { display: none; padding: 1rem; background: rgba(122,171,143,0.15); border: 1px solid var(--sage); border-radius: var(--radius-sm); text-align: center; color: #2d6a4f; font-size: 0.9rem; font-weight: 500; margin-top: 1rem; }
.map-placeholder { margin-top: 2rem; border-radius: var(--radius-md); overflow: hidden; height: 300px; background: var(--border); display: flex; align-items: center; justify-content: center; }

/* ─── FOOTER ─────────────────────────────────────────── */
#footer { background: linear-gradient(160deg, #0e2e36 0%, #0a2028 100%); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.82rem; color: var(--teal-light); margin-bottom: 1.25rem; font-family: 'Poppins', sans-serif; }
.footer-about { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 320px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-social a:hover { background: var(--teal-mid); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 { font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-bottom { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* Cookie bar */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(12,34,40,0.97); backdrop-filter: blur(8px);
  padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%); transition: transform 0.5s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 0.84rem; color: rgba(255,255,255,0.75); }
.cookie-bar .btn { padding: 0.5rem 1.4rem; font-size: 0.82rem; flex-shrink: 0; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── KEYFRAMES ──────────────────────────────────────── */
@keyframes heroFadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes modalIn { from { opacity:0; transform:scale(0.94) translateY(12px); } to { opacity:1; transform:scale(1) translateY(0); } }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ─── RESPONSIVE ─────────────────────────────────────── */
/* ─── ABOUT GRID (used on index + about page) ────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { right: 0; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  /* spacing */
  section { padding: 60px 0; }
  .container { padding: 0 1.25rem; }

  /* typography */
  h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* navbar */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* hero */
  .hero-content { padding: 0 1.25rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-subtitle { font-size: 1rem; }
  .hero-quote { font-size: 0.88rem; }

  /* about section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image-wrap { order: -1; }
  .about-image-wrap img { height: 260px; }
  .about-badge {
    position: relative;
    right: auto; bottom: auto;
    margin-top: 1rem;
    display: inline-block;
  }
  .about-content { padding-left: 0; }

  /* services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* why-us */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* team */
  .team-grid { grid-template-columns: 1fr; }

  /* conditions */
  .cond-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .conditions-tabs { justify-content: flex-start; gap: 0.4rem; }
  .cond-tab { font-size: 0.75rem; padding: 0.45rem 0.85rem; }

  /* insurance */
  .insurance-cards { gap: 0.75rem; }
  .insurance-card { min-width: 140px; padding: 1rem 1.25rem; }

  /* faq */
  .faq-question { font-size: 0.88rem; padding: 1rem 1.25rem; }

  /* resources */
  .res-grid { grid-template-columns: 1fr; }
  .resources-tabs { justify-content: flex-start; }
  .res-tab { font-size: 0.75rem; padding: 0.45rem 0.85rem; }
  .crisis-banner { flex-direction: column; gap: 1.25rem; padding: 1.5rem; }
  .crisis-numbers { flex-direction: column; gap: 0.75rem; }

  /* contact */
  .form-row { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-about { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-legal { flex-wrap: wrap; gap: 0.75rem; }

  /* commitment */
  .commitment-wrap { padding: 2rem 1.25rem; }
  .commitment-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* hero badges - 2 per row */
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .hero-badge { justify-content: center; font-size: 0.72rem; }

  /* conditions - keep 2 col */
  .cond-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }

  /* page hero */
  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: 1.7rem; }

  /* service cards full width */
  .services-grid { grid-template-columns: 1fr; }

  /* team cards */
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { height: 220px; }

  /* why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* footer legal */
  .footer-legal { flex-direction: column; gap: 0.5rem; }

  /* buttons */
  .btn { font-size: 0.85rem; padding: 0.75rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── WHATSAPP FAB ───────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  display: flex; align-items: center; gap: 0.65rem;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  color: #fff;
  padding: 0.8rem 1.4rem 0.8rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(26,95,110,0.45);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  animation: wapulse 3s ease infinite;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(26,95,110,0.55);
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
}
.whatsapp-fab svg { flex-shrink: 0; width: 26px; height: 26px; }
.whatsapp-fab-label { display: inline; letter-spacing: 0.01em; }

/* Mobile: pill collapses to round icon */
@media (max-width: 600px) {
  .whatsapp-fab {
    padding: 1rem;
    border-radius: 50%;
    bottom: 1.5rem; right: 1.25rem;
    box-shadow: 0 4px 16px rgba(26,95,110,0.4);
  }
  .whatsapp-fab-label { display: none; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

@keyframes wapulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(26,95,110,0.4); }
  50%       { box-shadow: 0 6px 30px rgba(26,95,110,0.65); }
}

/* ─── RATES SECTION ──────────────────────────────────── */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.rate-card {
  background: var(--teal-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.rate-card-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.rate-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.rate-card:hover .rate-card-img img { transform: scale(1.06); }
.rate-card-body {
  padding: 2rem 1.75rem 2.25rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rate-card-body h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.rate-card-body p {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.rate-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--teal-deep);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: auto;
}
.rate-card-btn:hover {
  background: var(--teal-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .rates-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .rate-card-body { padding: 1.75rem 1.5rem 2rem; }
}
