@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --c: #1bbcd4;
  --c-dark: #0f9ab0;
  --c-light: #e0f8fc;
  --c-light2: #f0fcfe;
  --black: #0a0a0a;
  --gray: #f6f5f2;
  --gray2: #e8e8e5;
  --gray3: #d4d4d0;
  --text: #111;
  --muted: #666;
  --white: #fff;
  --border: rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.14);

  /* Oblast accent colors */
  --prava: #7c3aed;
  --prava-light: #f5f3ff;
  --prava-mid: #ede9fe;
  --eia: #16a34a;
  --eia-light: #f0fdf4;
  --eia-mid: #dcfce7;
  --petice: #ea580c;
  --petice-light: #fff7ed;
  --petice-mid: #fed7aa;

  --radius: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); background: rgba(255,255,255,.98); }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em;
  text-decoration: none; color: var(--black);
  transition: opacity .15s;
}
.nav-logo:hover { opacity: .75; }
.nav-logo .re { color: var(--c); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none; padding: 7px 12px; border-radius: 10px;
  transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); background: var(--gray); }

.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  border-radius: 100px !important; font-weight: 700 !important;
  margin-left: 8px !important; padding: 8px 18px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.2) !important;
  transition: all .18s !important;
}
.nav-cta:hover {
  background: var(--c) !important; color: var(--black) !important;
  box-shadow: 0 6px 20px rgba(27,188,212,.4) !important;
  transform: translateY(-1px) !important;
}

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; width: 40px; height: 40px; border-radius: 8px;
  transition: background .15s;
}
.nav-hamburger:hover { background: var(--gray); }
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--black); border-radius: 1px;
  transition: all .25s cubic-bezier(.22,.68,0,1.2); transform-origin: center;
}
.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-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--white);
  flex-direction: column; padding: 1.5rem; gap: 4px;
  border-top: 1px solid var(--border); overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: slideDown .2s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu a {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  text-decoration: none; padding: 14px 16px; border-radius: 14px;
  transition: all .15s; display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a::after { content: '→'; opacity: .3; font-size: .9rem; transition: all .15s; }
.mobile-menu a:hover { background: var(--gray); color: var(--black); }
.mobile-menu a:hover::after { opacity: 1; transform: translateX(3px); }
.mobile-menu .m-cta { background: var(--black); color: var(--white); margin-top: 8px; }
.mobile-menu .m-cta:hover { background: var(--c); color: var(--black); }
.mobile-menu .m-cta::after { color: rgba(255,255,255,.5); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (dark, for inner pages)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  background: var(--black); padding: 8rem 2rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(27,188,212,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { color: rgba(27,188,212,.65); }
.page-hero .eyebrow::before { background: rgba(27,188,212,.35); }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800;
  letter-spacing: -.03em; color: var(--white);
  line-height: .95; margin-bottom: 1.5rem;
}
.page-hero h1 .re { color: var(--c); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.45); max-width: 580px; line-height: 1.75; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container { max-width: 1040px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--c); border-radius: 1px; flex-shrink: 0; }

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  letter-spacing: -.02em; color: var(--black);
  margin-bottom: 1rem; line-height: 1.05;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 580px; line-height: 1.75; margin-bottom: 2.5rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .95rem; font-weight: 700; padding: 12px 24px;
  border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: all .18s; font-family: inherit;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:active { transform: scale(.97) !important; }

.btn-dark { background: var(--black); color: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.28); }

.btn-cyan { background: var(--c); color: var(--black); box-shadow: 0 2px 16px rgba(27,188,212,.3); }
.btn-cyan:hover { background: var(--c-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,188,212,.45); }

.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--border2); }
.btn-outline:hover { border-color: var(--black); background: var(--gray); transform: translateY(-1px); }

.btn-ghost { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15); }
.btn-ghost:hover { background: rgba(255,255,255,.15); color: var(--white); }

.btn-lg { font-size: 1rem; padding: 14px 30px; }
.btn-sm { font-size: .85rem; padding: 8px 18px; }

/* Ripple */
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.3); transform: scale(0);
  animation: rippleAnim .55s linear; pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.card {
  background: var(--white); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INFO BOXES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ibox {
  border-radius: 12px; padding: 1rem 1.25rem;
  font-size: .875rem; line-height: 1.7;
  display: flex; gap: 12px; align-items: flex-start;
}
.ibox.warn { background: #fffbeb; border: 1px solid rgba(217,119,6,.2); color: #78350f; }
.ibox.ok { background: #f0fdf4; border: 1px solid rgba(22,163,74,.2); color: #14532d; }
.ibox.info { background: #eff6ff; border: 1px solid rgba(37,99,235,.15); color: #1e3a8a; }
.ibox.cyan { background: var(--c-light2); border: 1px solid rgba(27,188,212,.25); color: #0c6b7d; }
.ibox strong { display: block; margin-bottom: 2px; font-weight: 700; }
.iicon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OBLAST CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.oblasti-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 2.5rem;
}
.oblast {
  display: flex; flex-direction: column; gap: .85rem;
  background: var(--white); padding: 2rem;
  border-radius: var(--radius); border: 2px solid var(--border);
  text-decoration: none; color: inherit;
  -webkit-tap-highlight-color: transparent;
  position: relative; overflow: hidden;
  transition: all .3s cubic-bezier(.22,.68,0,1.2);
}
.oblast::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.22,.68,0,1.4);
}
.oblast-prava::after { background: linear-gradient(90deg, var(--prava), #a78bfa); }
.oblast-eia::after { background: linear-gradient(90deg, var(--eia), #4ade80); }
.oblast-petice::after { background: linear-gradient(90deg, var(--petice), #fb923c); }
.oblast:hover::after { transform: scaleX(1); }

.oblast-prava:hover { background: var(--prava-light); border-color: var(--prava); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(124,58,237,.14); }
.oblast-eia:hover { background: var(--eia-light); border-color: var(--eia); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(22,163,74,.14); }
.oblast-petice:hover { background: var(--petice-light); border-color: var(--petice); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(234,88,12,.14); }

.oblast-prava:hover .oblast-title { color: var(--prava); }
.oblast-eia:hover .oblast-title { color: var(--eia); }
.oblast-petice:hover .oblast-title { color: var(--petice); }
.oblast-prava:hover .oblast-link { color: var(--prava); }
.oblast-eia:hover .oblast-link { color: var(--eia); }
.oblast-petice:hover .oblast-link { color: var(--petice); }

.oblast-icon { font-size: 2.5rem; line-height: 1; transition: transform .35s cubic-bezier(.22,.68,0,1.4); }
.oblast:hover .oblast-icon { transform: scale(1.15) rotate(-8deg); }
.oblast-chip {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  background: var(--gray2); color: var(--muted);
  padding: 3px 10px; border-radius: 100px; align-self: flex-start;
  transition: all .2s;
}
.oblast-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--black); transition: color .2s; }
.oblast-desc { font-size: .875rem; color: var(--muted); line-height: 1.65; flex: 1; }
.oblast-link {
  font-size: 13px; font-weight: 700; color: var(--c);
  display: flex; align-items: center; gap: 8px; margin-top: .5rem; transition: all .2s;
}
.oblast-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: currentColor; font-size: 10px;
  transition: transform .2s;
}
.oblast-arrow::after { content: '→'; color: var(--white); }
.oblast:hover .oblast-arrow { transform: translateX(4px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.form-label .req { color: var(--c); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: var(--gray); border: 1.5px solid transparent;
  border-radius: 12px; font-family: inherit; font-size: .95rem;
  color: var(--text); transition: all .15s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c); background: var(--white);
  box-shadow: 0 0 0 4px rgba(27,188,212,.1);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: var(--gray); padding-right: 40px; cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: var(--black); color: var(--white);
  border: none; border-radius: 100px; padding: 14px;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: all .18s; margin-top: .5rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--c); color: var(--black); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,188,212,.35); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-list { display: grid; gap: 4px; }
.faq-item { border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; transition: border-color .15s; }
.faq-item.open { border-color: var(--c); }
.faq-q {
  width: 100%; padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: .92rem; font-weight: 700; color: var(--black);
  transition: background .15s;
}
.faq-q:hover { background: var(--gray); }
.faq-item.open .faq-q { background: var(--c-light2); color: var(--c-dark); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gray2); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
  transition: all .25s; color: var(--muted);
}
.faq-item.open .faq-icon { background: var(--c); color: var(--black); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .2s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.4rem 1.2rem; }
.faq-a p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.faq-a a { color: var(--c); font-weight: 600; text-decoration: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--black); padding: 4rem 2rem 2.5rem; margin-top: 6rem;
}
#footer-ph[style*="margin-top:0"] > footer {
  margin-top: 0 !important;
}
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--white); margin-bottom: .75rem;
  text-decoration: none; display: inline-block; transition: opacity .15s;
}
.footer-logo:hover { opacity: .7; }
.footer-logo .re { color: var(--c); }
.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.35); max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 1rem; }
.footer-col a {
  display: block; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.45); text-decoration: none;
  padding: 4px 0; transition: color .15s, transform .15s;
}
.footer-col a:hover { color: var(--white); transform: translateX(3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,.18); line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOAST
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black); color: var(--white);
  padding: 10px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600; opacity: 0;
  transition: all .3s; z-index: 9999;
  white-space: nowrap; pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVEAL ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MISC
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
hr { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — TABLET ≤960px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 960px) {
  .container { padding: 0 1.5rem; }
  .nav { padding: 0 1.5rem; }
  .oblasti-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — MOBILE ≤768px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  .nav { padding: 0 1rem; height: 60px; }
  .mobile-menu { top: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .oblasti-grid { grid-template-columns: 1fr; gap: 10px; }
  .oblast:hover { transform: none; box-shadow: none; }
  .oblast:active { opacity: .92; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .page-hero { padding: 6rem 1.25rem 3rem; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  footer { padding: 3rem 1.25rem 2rem; margin-top: 4rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .reveal { opacity: 1; transform: none; } /* disable on mobile for perf */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — SMALL ≤480px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
  .nav { height: 56px; }
  .mobile-menu { top: 56px; }
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .page-hero { padding: 5rem 1rem 2.5rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .footer-top { grid-template-columns: 1fr; }
  .btn-lg { font-size: .95rem; padding: 13px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
