/* ==========================================================================
   ZenCure — shared stylesheet
   Clean, calm medical design. Teal/cyan accent, generous whitespace.
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --brand-50:  #ecfeff;
  --brand-100: #cffafe;
  --brand-200: #a5f3fc;
  --brand-500: #06b6d4;
  --brand-600: #0891b2;
  --brand-700: #0e7490;
  --brand-800: #155e75;
  --brand-900: #164e63;

  --ink:        #0f172a;
  --muted:      #475569;
  --muted-2:    #64748b;
  --line:       #e2e8f0;
  --bg:         #ffffff;
  --bg-alt:     #f8fafc;
  --bg-tint:    #ecfeff;

  --shadow-sm:  0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md:  0 6px 24px -6px rgba(15, 23, 42, .12);
  --shadow-lg:  0 20px 50px -12px rgba(15, 23, 42, .22);

  --radius:     14px;
  --radius-lg:  22px;

  --container:  1140px;
  --font-sans:  "Inter", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system,
                "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC",
                "Microsoft YaHei", sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand-700); text-decoration: none; }
a:hover { color: var(--brand-800); }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5rem; color: var(--ink); font-weight: 700; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 2px; border-radius: 4px; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint), #ffffff); }

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-700); margin-bottom: .65rem;
}
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.4rem); letter-spacing: -.02em; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: .75rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease,
    background .15s ease, color .15s ease; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-800); color: #fff; box-shadow: var(--shadow-md); }
.btn-ghost { background: #fff; color: var(--brand-700); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-800); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.brand { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-logo { width: 34px; height: 34px; }
.brand-name { letter-spacing: -.02em; }
.main-nav { margin-left: auto; }
.nav-list { display: flex; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: block; padding: .5rem .8rem; border-radius: 8px; color: var(--muted);
  font-weight: 500; font-size: .95rem;
}
.nav-link:hover { color: var(--ink); background: var(--bg-alt); }
.nav-link.active { color: var(--brand-700); background: var(--brand-50); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: .75rem; margin-left: .5rem; }
.lang-switch { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.lang-btn { padding: .4rem .7rem; font-size: .82rem; font-weight: 600; color: var(--muted); }
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: var(--brand-700); color: #fff; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; padding: 9px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg-tint) 0%, #ffffff 100%); }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(6,182,212,.18), transparent 65%); border-radius: 50%;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 72px 0; }
.hero-title { font-size: clamp(2rem, 4.6vw, 3.1rem); letter-spacing: -.03em; margin-bottom: 1rem; }
.hero-title .accent { color: var(--brand-700); }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 34rem; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.hero-points li {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; color: var(--muted);
  background: #fff; border: 1px solid var(--line); padding: .45rem .85rem; border-radius: 999px;
}
.hero-points li::before { content: "✓"; color: var(--brand-600); font-weight: 700; }
.hero-art {
  background: linear-gradient(160deg, var(--brand-700), var(--brand-600));
  border-radius: var(--radius-lg); padding: 2rem; color: #fff; box-shadow: var(--shadow-lg);
}
.hero-art h3 { color: #fff; margin-bottom: .5rem; }
.hero-art p { color: rgba(255,255,255,.85); margin-bottom: 1.2rem; }
.hero-art .art-row { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.hero-art .art-stat { background: rgba(255,255,255,.14); border-radius: var(--radius); padding: 1rem; text-align: center; }
.hero-art .art-stat strong { display: block; font-size: 1.6rem; }
.hero-art .art-stat span { font-size: .8rem; opacity: .9; }

/* ---- Stats band ---- */
.stats { background: var(--brand-800); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; }
.stat-num .plus { color: var(--brand-200); }
.stat-label { color: var(--brand-100); font-size: .92rem; }

/* ---- Service cards ---- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; background: var(--brand-50); color: var(--brand-700); margin-bottom: 1rem;
  font-size: 1.4rem;
}
.service-title { font-size: 1.1rem; margin-bottom: .4rem; }
.service-text { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---- Hospital cards ---- */
.filter-bar { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.filter-group { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; }
.filter-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); min-width: 84px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip {
  border: 1px solid var(--line); background: #fff; color: var(--muted); border-radius: 999px;
  padding: .45rem 1rem; font-size: .88rem; font-weight: 500; transition: all .15s ease;
}
.filter-chip:hover { border-color: var(--brand-500); color: var(--brand-700); }
.filter-chip.active { background: var(--brand-700); color: #fff; border-color: var(--brand-700); }
.hosp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hosp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.hosp-card.hidden { display: none; }
.hosp-name { font-size: 1.08rem; margin-bottom: .5rem; }
.hosp-meta { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: .75rem; }
.tag {
  display: inline-block; font-size: .78rem; font-weight: 600; padding: .28rem .65rem;
  border-radius: 999px; background: var(--bg-alt); color: var(--muted); border: 1px solid var(--line);
}
.tag--brand { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-100); }
.hosp-text { color: var(--muted); font-size: .93rem; margin-bottom: 1rem; flex: 1; }
.empty-msg { text-align: center; color: var(--muted-2); padding: 2rem 0; }

/* ---- Process steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand-700); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 1rem;
}
.step-title { font-size: 1.08rem; margin-bottom: .4rem; }
.step-text { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---- Entry (how to enter China) ---- */
.entry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.entry-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.entry-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.entry-list { list-style: none; margin: 0; padding: 0; }
.entry-list li { position: relative; padding: .45rem 0 .45rem 1.5rem; color: var(--muted); font-size: .95rem; }
.entry-list li::before { content: "•"; position: absolute; left: 0; color: var(--brand-600); font-weight: 700; }
.entry-note { margin-top: 1rem; padding: .8rem 1rem; background: var(--bg-tint); border-radius: 10px; font-size: .86rem; color: var(--muted); }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.quote { color: var(--muted); font-size: .97rem; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: .7rem; }
.testimonial-author .avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author span { font-size: .82rem; color: var(--muted-2); }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600)); color: #fff;
  border-radius: var(--radius-lg); padding: 3rem 2.5rem; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: .6rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 1.6rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; }
.cta-band .btn-primary { background: #fff; color: var(--brand-800); }
.cta-band .btn-primary:hover { background: var(--brand-50); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---- FAQ ---- */
.faq-group { margin-bottom: 2rem; }
.faq-group-title { font-size: 1.3rem; margin-bottom: .9rem; padding-bottom: .5rem; border-bottom: 2px solid var(--brand-100); }
.faq-list { list-style: none; margin: 0; padding: 0; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: .7rem; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; padding: 1.1rem 1.3rem; text-align: left; font-size: 1rem;
  font-weight: 600; color: var(--ink);
}
.faq-question:hover { color: var(--brand-700); }
.faq-icon { flex: none; width: 22px; height: 22px; color: var(--brand-600); transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer-inner { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .95rem; }
.faq-answer-inner p { margin-bottom: .6rem; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.6rem; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-sm);
}
.price-card.featured { border-color: var(--brand-500); box-shadow: var(--shadow-lg); }
.badge-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand-700);
  color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .05em; padding: .3rem .9rem; border-radius: 999px;
}
.price-name { font-size: 1.2rem; margin-bottom: .4rem; }
.price-desc { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; }
.price-amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .2rem; }
.price-amount .cur { font-size: 1.2rem; color: var(--muted-2); }
.price-note { font-size: .8rem; color: var(--muted-2); margin-bottom: 1.4rem; }
.price-features { list-style: none; margin: 0 0 1.6rem; padding: 0; flex: 1; }
.price-features li { position: relative; padding: .4rem 0 .4rem 1.5rem; color: var(--muted); font-size: .93rem; }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-600); font-weight: 700; }
.cost-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cost-table th, .cost-table td { padding: .9rem 1.1rem; text-align: left; font-size: .93rem; border-bottom: 1px solid var(--line); }
.cost-table th { background: var(--brand-50); color: var(--brand-800); font-weight: 700; }
.cost-table tr:last-child td { border-bottom: 0; }
.cost-table .note { color: var(--muted-2); font-size: .85rem; }

/* ---- Articles ---- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-cover { height: 150px; background: linear-gradient(135deg, var(--brand-600), var(--brand-800)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2.4rem; }
.article-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.article-meta { font-size: .8rem; color: var(--muted-2); margin-bottom: .5rem; }
.article-title { font-size: 1.12rem; margin-bottom: .5rem; }
.article-excerpt { color: var(--muted); font-size: .93rem; flex: 1; margin-bottom: 1rem; }
.article-link { font-weight: 600; font-size: .92rem; }

/* ---- Article page ---- */
.article-hero { background: linear-gradient(135deg, var(--brand-800), var(--brand-600)); color: #fff; padding: 56px 0; }
.article-hero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); max-width: 820px; }
.article-hero .article-meta { color: rgba(255,255,255,.8); }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.prose h3 { font-size: 1.2rem; margin: 1.6rem 0 .6rem; }
.prose p, .prose li { color: var(--muted); }
.prose .callout { background: var(--bg-tint); border-left: 4px solid var(--brand-500); padding: 1rem 1.2rem; border-radius: 0 10px 10px 0; margin: 1.4rem 0; }

/* ---- Contact form ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h3 { margin-bottom: .6rem; }
.contact-info p { color: var(--muted); }
.contact-methods { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.contact-methods li { display: flex; gap: .7rem; padding: .6rem 0; color: var(--muted); align-items: flex-start; }
.contact-methods .ico { color: var(--brand-600); font-weight: 700; width: 20px; text-align: center; flex: none; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: .75rem .9rem; font-size: .98rem;
  font-family: inherit; color: var(--ink); background: #fff; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-500); outline: 3px solid var(--brand-100); }
.field .is-invalid { border-color: #e11d48; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--muted-2); }
.consent input { margin-top: .2rem; }
.form-status { display: none; margin-top: 1rem; padding: .9rem 1rem; border-radius: 10px; font-size: .93rem; }
.form-status.success { display: block; background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.form-status.error { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: #cbd5e1; padding: 56px 0 0; margin-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand .brand { color: #fff; margin-bottom: .9rem; }
.footer-brand p { font-size: .92rem; color: #94a3b8; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: #94a3b8; font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 22px 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .85rem; color: #64748b; }
.footer-bottom p { margin: 0; }
.disclaimer { max-width: 560px; font-size: .78rem; color: #64748b; }

/* ---- Language chooser (root) ---- */
.chooser { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand-800), var(--brand-600)); padding: 24px; }
.chooser-card { background: #fff; border-radius: var(--radius-lg); padding: 3rem 2.5rem; text-align: center; max-width: 480px; width: 100%; box-shadow: var(--shadow-lg); }
.chooser-card .brand { justify-content: center; font-size: 1.6rem; margin-bottom: .5rem; }
.chooser-card p { color: var(--muted); margin-bottom: 1.8rem; }
.chooser-actions { display: flex; gap: 1rem; justify-content: center; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .hosp-grid, .testimonials-grid, .article-grid, .pricing-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .contact-grid, .entry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 52px 0; }
  .main-nav {
    position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .main-nav.is-open { max-height: 420px; }
  .nav-list { flex-direction: column; padding: .75rem 1rem; gap: .25rem; }
  .nav-link { padding: .75rem .8rem; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .grid-3, .grid-4, .grid-2, .hosp-grid, .testimonials-grid, .article-grid, .pricing-grid, .steps, .stats-grid, .entry-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 48px 0; }
  .chooser-actions { flex-direction: column; }
}

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