/* ============================================================
   TruCare Medical Group — Design System
   Apple-style minimalist. Mobile-first.
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --ink:        #1D1D1F;
  --blue:       #007AFF;
  --blue-dark:  #0062CC;
  --blue-light: rgba(0, 122, 255, 0.08);
  --surface:    #F5F5F7;
  --muted:      #6E6E73;
  --border:     #D2D2D7;
  --glass-bg:   rgba(255, 255, 255, 0.72);

  /* Hero dark palette */
  --hero-dark:  #0A0A0F;
  --hero-mid:   #0D1117;
  --hero-bot:   #111827;

  /* Typography */
  --text-xs:    0.72rem;
  --text-sm:    0.82rem;
  --text-base:  0.95rem;
  --text-lg:    1.1rem;
  --text-xl:    1.35rem;
  --text-2xl:   clamp(1.6rem, 2.5vw, 2.2rem);
  --text-3xl:   clamp(2rem, 4vw, 3rem);
  --text-hero:  clamp(2.8rem, 6.5vw, 5.2rem);

  /* Spacing */
  --section-pad:   clamp(4.5rem, 9vw, 9rem);
  --container-max: 1100px;
  --container-pad: clamp(1.25rem, 4vw, 2rem);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
  --shadow-blue: 0 4px 24px rgba(0,122,255,0.28);

  /* Transitions */
  --t:      0.22s ease;
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 68px;
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
[id] { scroll-margin-top: var(--nav-h); }

/* ── 3. LAYOUT HELPERS ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: var(--section-pad); }
.section-surface { background: var(--surface); }
.section-dark {
  background: linear-gradient(135deg, var(--hero-dark) 0%, var(--hero-mid) 60%, var(--hero-bot) 100%);
  color: var(--white);
}

/* ── 4. TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.eyebrow-white { color: rgba(255,255,255,0.55); }

h1, .h1 { font-size: var(--text-hero); font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; }
h2, .h2 { font-size: var(--text-3xl); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; }
h3, .h3 { font-size: var(--text-xl);  font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; }

.lead {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.7;
}
.lead-white { color: rgba(255,255,255,0.62); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .lead { max-width: 520px; margin-inline: auto; margin-top: 0.75rem; }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 980px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1;
  font-family: inherit;
  text-decoration: none;
}
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-ghost-white { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--surface); }
.btn-lg { padding: 16px 32px; font-size: var(--text-base); }
.btn-sm { padding: 9px 18px; font-size: var(--text-xs); }

/* ── 6. NAVBAR ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t), box-shadow var(--t);
  border-bottom: 1px solid transparent;
}
#nav.scrolled,
body.page-inner #nav {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav-logo .logo-primary {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--t);
}
.nav-logo .logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--t);
}
#nav.scrolled .logo-primary,
body.page-inner .logo-primary { color: var(--ink); }
#nav.scrolled .logo-sub,
body.page-inner .logo-sub { color: var(--muted); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
#nav.scrolled .nav-links a,
body.page-inner .nav-links a { color: var(--muted); }
#nav.scrolled .nav-links a:hover,
#nav.scrolled .nav-links a.active,
body.page-inner .nav-links a:hover,
body.page-inner .nav-links a.active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: none; }
@media (min-width: 768px) { .nav-phone { display: inline-flex; } }

/* Hamburger */
.hamburger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 4px;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger .bar {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), background var(--t);
  transform-origin: center;
}
#nav.scrolled .bar,
body.page-inner .bar { background: var(--ink); }
.hamburger.open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
#mob-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--container-pad) 2rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 99;
}
#mob-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
#mob-menu a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
#mob-menu a:last-child { border-bottom: none; }
#mob-menu a:hover { color: var(--blue); }
#mob-menu .mob-cta {
  margin-top: 1rem;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 980px;
  font-weight: 600;
  font-size: var(--text-base);
  border: none;
}
#mob-menu .mob-cta:hover { background: var(--blue-dark); color: #fff; }

/* ── 7. HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--hero-dark) 0%, var(--hero-mid) 55%, var(--hero-bot) 100%);
  padding-top: var(--nav-h);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-h1 {
  font-size: var(--text-hero);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 1.5rem;
  max-width: 12ch;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s ease both;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.hero-badge svg { color: var(--blue); flex-shrink: 0; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease both;
}
.scroll-cue span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* Inner page hero (shorter) */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, var(--hero-dark) 0%, var(--hero-mid) 55%, var(--hero-bot) 100%);
  padding-top: var(--nav-h);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.page-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 540px;
  animation: fadeUp 0.7s 0.25s ease both;
}

/* ── 8. STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  display: none;
}
@media (min-width: 640px) {
  .stat + .stat::before {
    content: '';
    display: block;
    position: absolute;
    left: 0; top: 10%; height: 80%;
    width: 1px;
    background: var(--border);
  }
}
.stat-number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ── 9. CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,122,255,0.15);
}
.card-surface { background: var(--surface); border-color: transparent; }
.card-p { padding: 1.75rem; }

.icon-box {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; color: var(--blue); }
.icon-box-lg { width: 56px; height: 56px; border-radius: var(--radius-md); }
.icon-box-lg svg { width: 28px; height: 28px; }

/* ── 10. SERVICES GRID ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { padding: 1.5rem 1.25rem; }
.service-card .icon-box { margin-bottom: 1rem; }
.service-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.service-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; }

/* ── 11. PROVIDERS ─────────────────────────────────────────── */
.provider-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1b35 50%, #071424 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.provider-photo svg { width: 40%; height: 40%; color: rgba(255,255,255,0.15); }

.provider-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .provider-row { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .provider-row.reverse .provider-photo-col { order: 2; }
  .provider-row.reverse .provider-info-col { order: 1; }
}
.provider-row:last-of-type { border-bottom: none; }

.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 980px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--blue-light);
  color: var(--blue);
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ── 12. TESTIMONIALS ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  padding: 1.75rem;
  border-left: 3px solid var(--blue);
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #F5A623;
}
.stars svg { width: 14px; height: 14px; fill: currentColor; }
.testimonial-card blockquote {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-meta { font-size: var(--text-sm); font-weight: 600; color: var(--muted); }

/* ── 13. ABOUT PANEL ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-panel {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: white;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-panel-quote {
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.about-panel-detail { font-size: var(--text-sm); color: rgba(255,255,255,0.65); line-height: 1.6; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.5;
}
.check-list li svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ── 14. VALUES GRID ───────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { padding: 2rem; }
.value-card .icon-box { margin-bottom: 1.25rem; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; }

/* ── 15. CONTACT PAGE ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 4rem; } }

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.contact-info-card:last-child { margin-bottom: 0; }
.contact-info-card .icon-box { flex-shrink: 0; }
.contact-info-card h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.contact-info-card p, .contact-info-card a {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--blue); }

.contact-cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  color: white;
  gap: 1.5rem;
}
.contact-cta-box h2 { font-size: var(--text-2xl); color: #fff; letter-spacing: -0.02em; }
.contact-cta-box p { font-size: var(--text-lg); color: rgba(255,255,255,0.7); max-width: 300px; }

.emergency-notice {
  background: rgba(255, 59, 48, 0.06);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: var(--text-sm);
  color: #C0392B;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 1rem;
}
.emergency-notice svg { flex-shrink: 0; margin-top: 1px; }

/* ── 16. MAP ───────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── 17. CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  padding-block: clamp(4rem, 7vw, 7rem);
  text-align: center;
}
.cta-banner h2 { color: #fff; max-width: 14ch; margin-inline: auto; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: var(--text-lg); }
.cta-banner .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── 18. FOOTER ────────────────────────────────────────────── */
footer {
  background: #111;
  color: rgba(255,255,255,0.55);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .logo-primary { color: #fff; font-size: 1.05rem; font-weight: 700; display: block; margin-bottom: 2px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.35); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; display: block; }
.footer-tagline { font-size: var(--text-sm); line-height: 1.7; margin-top: 1rem; max-width: 240px; }
.footer-contact-line {
  display: flex; align-items: center; gap: 7px;
  font-size: var(--text-sm); margin-top: 0.6rem;
}
.footer-contact-line svg { color: var(--blue); flex-shrink: 0; }
.footer-contact-line a,
.footer-contact-line span { color: rgba(255,255,255,0.55); }
.footer-contact-line a { transition: color var(--t); }
.footer-contact-line a:hover { color: #fff; }
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: var(--text-sm); color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--text-xs);
}
.footer-disclaimer {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  max-width: 640px;
  margin-top: 0.25rem;
}

/* ── 19. SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── 20. SCROLL-TO-TOP ─────────────────────────────────────── */
#top-btn {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), background var(--t);
  pointer-events: none;
  z-index: 90;
}
#top-btn.show { opacity: 1; transform: none; pointer-events: all; }
#top-btn:hover { background: var(--blue-dark); }
#top-btn svg { width: 18px; height: 18px; }

/* ── 21. DIVIDER ───────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); }

/* ── 22. KEYFRAMES ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ── 23. QUOTE BLOCK ───────────────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--blue);
  padding: 1.25rem 1.5rem;
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  background: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ── 24. FEATURE GRID ──────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-item { text-align: center; padding: 1.5rem 1rem; }
.feature-item .icon-box { margin: 0 auto 1rem; }
.feature-item h4 { font-size: var(--text-base); font-weight: 600; margin-bottom: 0.35rem; }
.feature-item p { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; }

/* ── 25. SERVICES PAGE ─────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .services-full-grid { grid-template-columns: repeat(2, 1fr); } }
.service-full-card {
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.service-full-card h3 { margin-bottom: 0.5rem; }
.service-full-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; }
