/* En Yakın Oto Kurtarma */

:root {
  --bg: #111827;
  --bg-2: #1f2937;
  --surface: #ffffff;
  --muted: #f3f4f6;
  --text: #111827;
  --text-2: #6b7280;
  --text-inv: #9ca3af;
  --accent: #e85d04;
  --accent-h: #dc2f02;
  --accent-soft: rgba(232, 93, 4, 0.12);
  --wa: #128c7e;
  --wa-h: #075e54;
  --border: #e5e7eb;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --r: 10px;
  --r-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);
  --header: 64px;
  --top: 36px;
  --ease: .22s ease;
  --safe-b: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + var(--top) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(68px + var(--safe-b));
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container { padding: 0 24px; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .9375rem;
  border: 2px solid transparent;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.98); }

.btn--call {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 93, 4, .35);
}
.btn--call:hover { background: var(--accent-h); }

.btn--wa {
  background: var(--wa);
  color: #fff;
}
.btn--wa:hover { background: var(--wa-h); }

.btn--outline {
  background: transparent;
  border-color: var(--wa);
  color: var(--wa);
}
.btn--outline:hover { background: rgba(18, 140, 126, .08); }

.btn--xl { padding: 13px 24px; font-size: .9375rem; border-radius: 10px; white-space: normal; text-align: center; }
.btn--sm { padding: 8px 16px; font-size: .875rem; }
.btn--block { width: 100%; }
.btn--header { padding: 9px 18px; font-size: .875rem; }
.btn__text-short { display: none; }

/* Top bar */
.top-bar {
  background: var(--bg);
  color: #fff;
  font-size: .8125rem;
  min-height: var(--top);
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}
.top-bar__start {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1;
}
.top-bar__live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-inv);
  min-width: 0;
  flex-shrink: 1;
}
.top-bar__live-short { display: none; }
.top-bar__dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: live 2s ease infinite;
  flex-shrink: 0;
}
@keyframes live {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.top-bar__loc {
  font-size: .75rem;
  color: var(--text-inv);
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .top-bar__live-full { display: none; }
  .top-bar__live-short { display: inline; }
  .top-bar__loc { display: none; }
}
.top-bar__phone {
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  flex-shrink: 0;
  font-size: .8125rem;
}
@media (min-width: 481px) {
  .top-bar__phone { font-size: .875rem; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  line-height: 1.25;
}
.logo__name em {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--text-2);
  font-size: .8125rem;
}

.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--ease);
}
.nav a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--bg);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(380px, 65vh, 520px);
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(232, 93, 4, .18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(232, 93, 4, .08) 0%, transparent 50%),
    linear-gradient(160deg, #111827 0%, #1f2937 50%, #111827 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h1v40H0zM20 0h1v40h-1z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__body {
  position: relative;
  width: 100%;
  padding: 56px 0 64px;
}
.hero__label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1.45;
  overflow-wrap: break-word;
}
.hero h1 {
  font-size: clamp(1.75rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero h1 span { color: #fbbf24; }
.hero__lead {
  font-size: clamp(.9375rem, 2.5vw, 1.0625rem);
  color: #d1d5db;
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__phone {
  display: none;
}
.hero__phone a {
  color: #fbbf24;
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .02em;
}
.hero__phone a:hover { text-decoration: underline; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: #9ca3af;
  font-weight: 500;
}
.hero__trust svg { color: var(--accent); flex-shrink: 0; }

/* Strip */
.strip {
  background: var(--accent);
  color: #fff;
  padding: 14px 0;
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.strip p { font-size: .9375rem; font-weight: 500; }
.strip__num {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.strip__num:hover { text-decoration: underline; }

/* Sections */
.section { padding: 64px 0; }
.section--dark { background: var(--bg); color: #fff; }
.section--muted { background: var(--muted); }

.section-head {
  margin-bottom: 40px;
  max-width: 520px;
}
.section-head--light h2 { color: #fff; }
.section-head--light p { color: var(--text-inv); }
.section-head h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.section-head p { color: var(--text-2); font-size: 1rem; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: #d1d5db;
}
.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  margin-bottom: 16px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.card p { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

/* About */
.about {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .about { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}
.about h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.about > .about__text > p {
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: .9375rem;
  color: var(--text);
}
.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.about__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--muted);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.about-step__n {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: .9375rem;
  border-radius: 50%;
}
.about-step strong { display: block; font-size: .9375rem; margin-bottom: 2px; }
.about-step p { font-size: .8125rem; color: var(--text-2); }
.about-step a { color: var(--accent); font-weight: 600; }

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  -webkit-tap-highlight-color: transparent;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq p {
  padding: 0 20px 18px;
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Contact */
.contact {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .contact { grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
}
.contact h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.contact > .contact__info > p {
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.65;
}
.contact__rows { display: flex; flex-direction: column; gap: 0; }
.contact__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact__label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-2);
}
.contact__value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--accent);
}
.contact__value--plain { color: var(--text); font-weight: 600; }

.contact__card {
  background: var(--bg);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.contact__card-label {
  font-size: .8125rem;
  color: var(--text-inv);
  margin-bottom: 8px;
}
.contact__card-phone {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.contact__card .btn { margin-bottom: 10px; }
.contact__card .btn:last-child { margin-bottom: 0; }

/* Footer */
.footer {
  background: var(--bg);
  color: #fff;
  padding: 48px 0 0;
}
.footer__grid {
  display: grid;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 600px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
}
.footer__title {
  display: block;
  font-size: 1.0625rem;
  margin-bottom: 8px;
}
.footer__col > p {
  font-size: .875rem;
  color: var(--text-inv);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer__loc {
  font-size: .8125rem;
  color: var(--text-inv);
  margin-bottom: 10px;
}
.footer__phone {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
}
.footer__heading {
  display: block;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-inv);
  margin-bottom: 14px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul a {
  font-size: .875rem;
  color: #d1d5db;
  transition: color var(--ease);
}
.footer__col ul a:hover { color: var(--accent); }
.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: .75rem;
  color: var(--text-inv);
}

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + var(--safe-b));
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
@media (min-width: 769px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .9375rem;
  min-height: 48px;
}
.mobile-bar__btn--call {
  background: var(--accent);
  color: #fff;
}
.mobile-bar__btn--wa {
  background: var(--wa);
  color: #fff;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Legal pages */
.legal-page { padding-bottom: 0; }
.legal-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.legal-header__back {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-2);
}
.legal-header__back:hover { color: var(--accent); }

.legal-content { padding: 40px 0 64px; }
.legal-content__inner { max-width: 720px; }
.legal-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.legal-meta {
  font-size: .875rem;
  color: var(--text-2);
  margin-bottom: 28px;
}
.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 28px 0 10px;
}
.legal-content p,
.legal-content li {
  font-size: .9375rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.legal-content a { color: var(--accent); font-weight: 500; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: .875rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.legal-table thead,
.legal-table tbody {
  display: table;
  width: 100%;
  min-width: 280px;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}
.legal-table th {
  background: var(--muted);
  font-weight: 600;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-nav a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
}
.legal-footer {
  background: var(--muted);
  padding: 20px 0;
  text-align: center;
  font-size: .8125rem;
  color: var(--text-2);
}

/* Responsive */
@media (max-width: 768px) {
  :root { --header: 56px; --top: 34px; }

  .container { padding: 0 14px; }

  .nav {
    position: fixed;
    top: calc(var(--top) + var(--header));
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
    gap: 0;
    max-height: calc(100vh - var(--top) - var(--header));
    overflow-y: auto;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav a:last-child { border-bottom: none; }

  .btn--header { display: none; }
  .menu-toggle { display: flex; flex-shrink: 0; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .logo { flex: 1; min-width: 0; max-width: calc(100% - 48px); }
  .logo__name {
    white-space: normal;
    font-size: .875rem;
    line-height: 1.2;
  }
  .logo__name em { font-size: .75rem; }

  .hero { min-height: auto; }
  .hero .container { padding: 0 22px; }
  .hero__body { padding: 48px 0 44px; }
  .hero__content {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__label {
    font-size: .6875rem;
    margin-bottom: 12px;
    margin-top: 8px;
    line-height: 1.5;
  }
  .hero h1 {
    font-size: 1.375rem;
    margin-bottom: 14px;
    line-height: 1.3;
  }
  .hero__lead {
    font-size: .8125rem;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  .hero__cta .btn {
    width: 100%;
    max-width: 260px;
    min-width: 0;
    padding: 11px 16px;
    font-size: .8125rem;
    border-radius: 9px;
  }
  .hero__cta .btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }
  .hero__cta .btn__text-full { display: none; }
  .hero__cta .btn__text-short { display: inline; }
  .hero__phone {
    display: block;
    margin: -4px 0 6px;
  }
  .hero__phone a { font-size: .875rem; }
  .hero__trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    margin-top: 2px;
    padding-bottom: 4px;
  }
  .hero__trust li {
    font-size: .6875rem;
    gap: 5px;
  }
  .hero__trust svg {
    width: 14px;
    height: 14px;
  }

  .strip { display: none; }

  .section { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 1.375rem; }
  .section-head p { font-size: .9375rem; }

  .card { padding: 20px; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: .8125rem; }

  .about h2 { font-size: 1.375rem; }
  .about-step { padding: 14px; }

  .faq summary { padding: 16px; font-size: .875rem; }
  .faq p { padding: 0 16px 16px; font-size: .8125rem; }

  .contact h2 { font-size: 1.375rem; }
  .contact__card { padding: 24px 18px; }
  .contact__card-phone {
    font-size: 1.375rem;
    display: block;
    overflow-wrap: anywhere;
  }
  .contact__value { font-size: 1rem; overflow-wrap: break-word; }

  .footer { padding-top: 36px; }
  .footer__grid { gap: 24px; }
  .footer__bottom p {
    font-size: .6875rem;
    line-height: 1.5;
    padding: 0 8px;
  }

  .legal-header__inner { gap: 8px; }
  .legal-header__back { font-size: .8125rem; min-width: 0; }
  .legal-content { padding: 28px 0 48px; }
  .legal-content h1 { font-size: 1.375rem; }
  .legal-content h2 { font-size: 1rem; }
  .legal-content p,
  .legal-content li { font-size: .875rem; }
  .legal-nav { gap: 10px 16px; }
  .legal-nav a { font-size: .8125rem; }

  .mobile-bar__btn {
    font-size: .8125rem;
    padding: 12px 10px;
    min-height: 44px;
  }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero .container { padding: 0 18px; }
  .hero__content { max-width: 100%; }
  .hero h1 { font-size: 1.25rem; }
  .hero__lead { font-size: .78125rem; }
  .hero__cta .btn { max-width: 240px; padding: 10px 14px; }
  .mobile-bar__btn { font-size: .8125rem; padding: 12px 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
