/* Lakshya Imaging & Diagnostics — Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Instrument+Serif:ital@0;1&display=swap');

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

:root {
  --primary: #0a7ea4;
  --primary-dark: #065f7d;
  --primary-light: #e6f6fc;
  --secondary: #3d9e4a;
  --secondary-light: #e8f7ea;
  --accent-warm: #f59e0b;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --bg: #fafcfd;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow: 0 8px 32px rgba(10, 126, 164, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 126, 164, 0.12);
  --shadow-glow: 0 0 80px rgba(10, 126, 164, 0.15);
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --header-h: 76px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 14px;
}

.section-header p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 17px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 126, 164, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 126, 164, 0.45);
}

.btn-outline {
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(61, 158, 74, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-lg { padding: 16px 32px; font-size: 15px; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 252, 253, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo-text span {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.main-nav .btn { margin-left: 8px; padding: 10px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-card);
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
}

.mobile-nav a:hover { background: var(--primary-light); color: var(--primary); }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(10, 126, 164, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(61, 158, 74, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-inner {
  position: relative;
}

.hero-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(10, 126, 164, 0.2);
  animation: spin 30s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.doctor-portrait {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--bg-card);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  z-index: 1;
}

.doctor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 2;
}

.floating-badge.hero-exp {
  bottom: 20px;
  right: -10px;
}

.floating-badge .num {
  font-size: 28px;
  font-weight: 800;
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
}

.floating-badge .label {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

.floating-badge.trust {
  top: 30px;
  left: -30px;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-light);
  padding: 14px 18px;
}

.floating-badge.trust strong {
  display: block;
  font-size: 13px;
  color: var(--primary);
}

.floating-badge.trust span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Stats bar */
.stats-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.stat-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child { border-right: none; }

.stat-item .value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-item .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 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(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 126, 164, 0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.about-photo-wrap img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.about-photo-wrap .floating-badge {
  bottom: -16px;
  right: -16px;
}

.about-content h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 14px 0 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.highlight:hover {
  border-color: rgba(10, 126, 164, 0.25);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.highlight span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 126, 164, 0.2);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars span { color: #fbbf24; font-size: 15px; }
.stars span.empty { color: var(--border); }

.quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.5;
  color: rgba(10, 126, 164, 0.15);
  margin-bottom: 8px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-dark);
}

.author-info p { font-size: 14px; font-weight: 700; }
.author-info small { font-size: 12px; color: var(--primary); font-weight: 600; }

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-card) 40%);
  box-shadow: var(--shadow);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary), #2d7a38);
  color: #fff;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.package-card .package-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.package-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0 24px;
  letter-spacing: -0.03em;
}

.package-card ul {
  margin-bottom: 28px;
  flex: 1;
}

.package-card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-card ul li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 800;
  flex-shrink: 0;
}

.package-card .btn { width: 100%; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: rgba(10, 126, 164, 0.3);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-card a:hover { color: var(--primary); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 64px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-top: 14px;
}

.page-hero p {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 20px;
}

.breadcrumb a:hover { color: var(--primary); }

.breadcrumb span { color: var(--text-muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0d8fb8 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-band h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
  position: relative;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 16px;
  position: relative;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 0;
  position: relative;
}

.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
}

.cta-band .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.site-footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  font-size: 14px;
  line-height: 2;
}

.site-footer a:hover { color: #fff; }

.footer-brand p { margin-bottom: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform var(--transition);
}

.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Preview cards on home */
.preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  margin-top: 32px;
}

.preview-link:hover { gap: 12px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { order: -1; }
  .doctor-portrait { width: 220px; height: 220px; }
  .floating-badge.trust { left: 10px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-bottom: 72px; }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
    margin-top: 24px;
  }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); padding-bottom: 16px; }
  .highlights { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
}

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