:root {
  --ink: #0f1720;
  --ink-2: #1b2835;
  --muted: #66727f;
  --surface: #f5f7f8;
  --surface-2: #edf1f3;
  --white: #ffffff;
  --accent: #ff6a1a;
  --accent-dark: #d94e00;
  --line: #dfe5e8;
  --success: #16835b;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(15, 23, 32, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.practice-notice {
  background: #101820;
  color: #cfd7dd;
  text-align: center;
  font-size: 12px;
  letter-spacing: .015em;
  padding: 8px 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(15,23,32,.08);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 30px; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 42px; height: 42px; flex: 0 0 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--accent);
}
.brand-mark svg { width: 22px; height: 22px; fill: currentColor; }
.brand-copy { display: flex; flex-direction: column; min-width: 0; }
.brand-copy strong { font-size: 16px; line-height: 1.1; letter-spacing: -.02em; white-space: nowrap; }
.brand-copy small { color: var(--muted); margin-top: 4px; font-size: 12px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { font-size: 14px; font-weight: 700; color: #3b4753; }
.desktop-nav a:hover { color: var(--accent-dark); }
.header-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: #fff;
  min-height: 46px; padding: 0 17px; border-radius: 12px;
  font-size: 14px; font-weight: 800;
}
.header-call svg { width: 18px; height: 18px; fill: var(--accent); }

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #18222b;
  color: #fff;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -3;
  background-image: url('https://images.pexels.com/photos/3441895/pexels-photo-3441895.jpeg?auto=compress&cs=tinysrgb&w=1800');
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(90deg, rgba(7,14,21,.92) 0%, rgba(7,14,21,.78) 43%, rgba(7,14,21,.35) 72%, rgba(7,14,21,.25) 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(7,14,21,.25));
}
.hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 70px;
  padding-top: 110px;
  padding-bottom: 80px;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
  color: #ffc5a4;
  font-size: 13px; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.eyebrow.dark { color: var(--accent-dark); }
.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.1vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 820px;
}
.hero-lead { max-width: 680px; margin: 26px 0 0; font-size: 19px; line-height: 1.7; color: #dce3e8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 850;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button svg { width: 18px; height: 18px; fill: currentColor; }
.button-primary { background: var(--accent); color: #151515; }
.button-primary:hover { background: #ff7a31; }
.button-ghost { border-color: rgba(255,255,255,.38); color: #fff; background: rgba(255,255,255,.08); }
.button-ghost:hover { background: rgba(255,255,255,.13); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: #1c2b38; }
.button-outline { border-color: #bcc6cc; background: transparent; color: var(--ink); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.trust-chip { display: flex; align-items: center; gap: 12px; }
.trust-chip svg { width: 24px; height: 24px; fill: var(--accent); flex: 0 0 auto; }
.trust-icon { color: var(--accent); font-size: 24px; line-height: 1; }
.trust-chip > span:last-child { display: flex; flex-direction: column; }
.trust-chip strong { font-size: 15px; }
.trust-chip small { color: #b9c4cc; font-size: 12px; margin-top: 2px; }

.hero-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-card-top { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13px; font-weight: 750; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(22,131,91,.1); }
.hero-card h2 { margin: 18px 0 10px; font-size: 30px; line-height: 1.08; letter-spacing: -.035em; }
.hero-card p { margin: 0 0 22px; color: var(--muted); }
.hero-card .button { width: 100%; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 19px; color: #42505d; font-weight: 800; font-size: 14px; }
.text-link:hover { color: var(--accent-dark); }
.dark-link { color: var(--ink); margin-top: 0; }

.quick-info { border-bottom: 1px solid var(--line); background: #fff; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.info-item { display: flex; gap: 14px; padding: 27px 24px; border-right: 1px solid var(--line); }
.info-item:first-child { padding-left: 0; }
.info-item:last-child { border-right: 0; }
.info-icon { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; display: grid; place-items: center; background: #fff1e8; color: var(--accent-dark); }
.info-icon svg { width: 18px; height: 18px; fill: currentColor; }
.info-item > div:last-child { display: flex; flex-direction: column; }
.info-item span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 800; }
.info-item strong { margin-top: 3px; font-size: 15px; }
.info-item small { color: var(--muted); margin-top: 2px; }

.section { padding: 105px 0; }
.section-head { margin-bottom: 44px; }
.split-head { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; }
.section h2 { margin: 0; font-size: clamp(38px, 5vw, 58px); line-height: 1.03; letter-spacing: -.045em; }
.split-head > p { color: var(--muted); font-size: 17px; margin: 0; max-width: 550px; }

.services { background: var(--surface); }
.service-grid { display: grid; grid-template-columns: 1.45fr .775fr .775fr; gap: 18px; align-items: stretch; }
.service-card { background: #fff; border: 1px solid #e5e9eb; border-radius: var(--radius); overflow: hidden; }
.service-card.featured { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 370px; }
.service-visual { background-size: cover; background-position: center; min-height: 270px; }
.service-visual-main { background-image: url('https://images.pexels.com/photos/4116195/pexels-photo-4116195.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.service-content { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.service-number { color: var(--accent-dark); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.service-content h3, .service-info-card h3 { margin: 12px 0 10px; font-size: 28px; letter-spacing: -.03em; }
.service-content p, .service-info-card p { color: var(--muted); margin: 0; }
.service-content a { margin-top: 22px; font-size: 14px; font-weight: 850; }
.service-content a:hover { color: var(--accent-dark); }
.service-info-card { padding: 32px; display: flex; flex-direction: column; justify-content: flex-start; }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: #eff3f5; color: var(--ink); }
.service-icon svg { width: 23px; height: 23px; fill: currentColor; }
.accent-card { background: var(--ink); color: #fff; border-color: var(--ink); }
.accent-card p { color: #b8c4cc; }
.accent-card .service-icon { background: rgba(255,106,26,.13); color: var(--accent); }

.about-grid { display: grid; grid-template-columns: .95fr 1fr; gap: 78px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image {
  min-height: 580px;
  border-radius: var(--radius-lg);
  background-image: url('https://images.pexels.com/photos/8986040/pexels-photo-8986040.jpeg?auto=compress&cs=tinysrgb&w=1400');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.image-caption { position: absolute; left: 18px; bottom: 18px; padding: 8px 11px; border-radius: 8px; background: rgba(10,16,22,.78); color: #dce4e9; font-size: 11px; backdrop-filter: blur(6px); }
.about-lead { margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.fact-list { margin-top: 30px; border-top: 1px solid var(--line); }
.fact-row { display: flex; gap: 15px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.fact-check { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 27px; border-radius: 50%; background: #e8f5ef; color: var(--success); font-weight: 900; }
.fact-row > div { display: flex; flex-direction: column; }
.fact-row strong { font-size: 15px; }
.fact-row span:last-child { color: var(--muted); margin-top: 3px; }
.about-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }

.review-section { background: #fff7f2; }
.review-grid { display: grid; grid-template-columns: .72fr 1.25fr; gap: 75px; align-items: center; }
.rating-panel { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 46px; }
.rating-panel .eyebrow { margin-bottom: 20px; }
.rating-score { font-size: 76px; line-height: .9; letter-spacing: -.06em; font-weight: 900; }
.rating-score span { font-size: 24px; color: #9eabb4; margin-left: 6px; letter-spacing: -.03em; }
.stars { margin-top: 20px; color: var(--accent); letter-spacing: 7px; font-size: 22px; width: fit-content; clip-path: inset(0 16% 0 0); }
.rating-panel p:last-child { margin: 18px 0 0; color: #b7c1c9; max-width: 330px; }
.review-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.75; margin: 22px 0 0; }
.review-placeholder { margin-top: 28px; display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid #eadfd7; border-radius: 16px; }
.review-placeholder svg { width: 28px; height: 28px; fill: var(--accent-dark); flex: 0 0 auto; }
.review-placeholder div { display: flex; flex-direction: column; }
.review-placeholder strong { font-size: 15px; }
.review-placeholder span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.location { background: var(--surface); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.location-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.75; margin: 22px 0; }
.location-copy address { margin-top: 25px; font-style: normal; font-size: 18px; line-height: 1.65; }
.location-copy address strong { font-size: 20px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.location-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 25px 60px rgba(15,23,32,.08); }
.map-pattern { position: relative; min-height: 390px; overflow: hidden; background: #dde4e8; }
.map-pattern::before,
.map-pattern::after { content:""; position:absolute; inset:0; }
.map-pattern::before { background-image: linear-gradient(27deg, transparent 47%, rgba(255,255,255,.65) 48%, rgba(255,255,255,.65) 52%, transparent 53%), linear-gradient(-31deg, transparent 47%, rgba(255,255,255,.7) 48%, rgba(255,255,255,.7) 52%, transparent 53%); background-size: 160px 130px, 190px 150px; opacity: .85; }
.map-pattern::after { background: radial-gradient(circle at 72% 30%, rgba(91,142,103,.26), transparent 20%), radial-gradient(circle at 25% 72%, rgba(91,142,103,.2), transparent 23%); }
.map-road { position: absolute; background: #f7f9fa; box-shadow: 0 0 0 1px rgba(136,149,158,.22); z-index: 2; }
.road-one { width: 145%; height: 21px; left: -20%; top: 44%; transform: rotate(-16deg); }
.road-two { width: 21px; height: 140%; left: 56%; top: -20%; transform: rotate(7deg); }
.road-three { width: 125%; height: 12px; left: -10%; top: 72%; transform: rotate(8deg); }
.map-pin { position: absolute; z-index: 4; left: 55%; top: 43%; transform: translate(-50%, -50%); width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--accent); box-shadow: 0 15px 35px rgba(15,23,32,.28), 0 0 0 10px rgba(255,106,26,.18); }
.map-pin svg { width: 28px; height: 28px; fill: currentColor; }
.location-card-footer { padding: 23px 26px; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.location-card-footer span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.location-card-footer strong { text-align: right; font-size: 15px; }

.contact-section { background: var(--ink); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: start; }
.contact-copy h2 { max-width: 520px; }
.contact-copy > p:not(.eyebrow) { margin: 24px 0 0; color: #b7c2ca; font-size: 17px; line-height: 1.75; max-width: 520px; }
.contact-direct { margin-top: 34px; display: flex; flex-direction: column; }
.contact-direct span { color: #9aa7b1; font-size: 13px; }
.contact-direct a { margin-top: 7px; font-size: 28px; letter-spacing: -.03em; font-weight: 900; color: var(--accent); }
.demo-form { position: relative; background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.demo-badge { position: absolute; top: 16px; right: 16px; padding: 6px 9px; border-radius: 999px; background: #fff0e6; color: var(--accent-dark); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.field:first-child, .form-row .field { margin-top: 0; }
.field label { font-size: 13px; font-weight: 800; color: #33404c; }
.field input, .field textarea { width: 100%; border: 1px solid #cfd7dc; border-radius: 11px; padding: 13px 14px; color: var(--ink); background: #fff; outline: 0; min-height: 49px; }
.field textarea { resize: vertical; min-height: 126px; }
.field input:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,106,26,.11); }
.form-submit { width: 100%; margin-top: 20px; }
.form-note { text-align: center; color: var(--muted); font-size: 12px; margin: 10px 0 0; }
.form-status { min-height: 22px; margin-top: 10px; text-align: center; color: var(--success); font-size: 13px; font-weight: 750; }

.site-footer { background: #0b1117; color: #fff; padding: 62px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .65fr; gap: 70px; }
.footer-logo .brand-mark { background: #17222c; }
.footer-logo .brand-copy small { color: #82909b; }
.footer-brand > p { color: #82909b; margin: 18px 0 0; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { color: #fff; margin-bottom: 6px; }
.footer-col a, .footer-col span { color: #92a0aa; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 48px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 30px; color: #74818b; font-size: 12px; }
.footer-bottom p { margin: 0; }

.mobile-cta { display: none; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 30px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: 1 / -1; }
  .about-grid, .review-grid, .location-grid, .contact-grid { gap: 48px; }
  .about-image { min-height: 510px; }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header-call { display: none; }
  .nav-wrap { min-height: 68px; }
  .brand-copy strong { font-size: 15px; }

  .hero { min-height: auto; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(7,14,21,.82) 0%, rgba(7,14,21,.82) 58%, rgba(7,14,21,.97) 100%); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; align-items: start; gap: 30px; padding-top: 82px; padding-bottom: 48px; }
  .hero-copy { max-width: 700px; }
  .hero h1 { max-width: 660px; }
  .hero-lead { font-size: 17px; max-width: 620px; }
  .hero-card { max-width: 530px; }

  .info-grid { grid-template-columns: 1fr; }
  .info-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .info-item:last-child { border-bottom: 0; }

  .section { padding: 78px 0; }
  .split-head { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .service-card.featured { grid-template-columns: 1fr; }
  .service-visual { min-height: 330px; }
  .about-grid, .review-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 42px; }
  .about-image { min-height: 520px; }
  .review-grid { gap: 28px; }
  .rating-panel { max-width: 520px; }
  .location-grid { gap: 32px; }
  .contact-grid { gap: 35px; }
  .contact-copy h2 { max-width: 650px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.98);
    border-top: 1px solid #dfe5e8;
    box-shadow: 0 -10px 35px rgba(15,23,32,.12);
    backdrop-filter: blur(10px);
  }
  .mobile-call, .mobile-request { min-height: 55px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 900; }
  .mobile-call { background: var(--ink); color: #fff; gap: 9px; }
  .mobile-call svg { width: 19px; height: 19px; fill: var(--accent); }
  .mobile-call span { display: flex; flex-direction: column; line-height: 1.05; font-size: 14px; }
  .mobile-call small { font-size: 10px; color: #9ba8b2; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
  .mobile-request { background: var(--accent); color: #151515; font-size: 13px; padding: 0 10px; }
}

@media (max-width: 560px) {
  .practice-notice { font-size: 10px; padding: 7px 12px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .brand-copy strong { max-width: 240px; overflow: hidden; text-overflow: ellipsis; }

  .hero-grid { padding-top: 62px; padding-bottom: 35px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-lead { line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 18px; flex-direction: column; }
  .hero-card { padding: 24px; }
  .hero-card h2 { font-size: 27px; }

  .section { padding: 64px 0; }
  .section h2 { font-size: clamp(34px, 10vw, 46px); }
  .section-head { margin-bottom: 30px; }

  .service-visual { min-height: 250px; }
  .service-content, .service-info-card { padding: 25px; }
  .service-content h3, .service-info-card h3 { font-size: 25px; }
  .about-image { min-height: 390px; border-radius: 22px; }
  .about-lead { font-size: 16px; }
  .about-actions { flex-direction: column; align-items: stretch; }
  .about-actions .button { width: 100%; }
  .dark-link { justify-content: center; }

  .rating-panel { padding: 30px; border-radius: 22px; }
  .rating-score { font-size: 64px; }
  .review-placeholder { padding: 18px; }

  .map-pattern { min-height: 300px; }
  .location-card-footer { flex-direction: column; align-items: flex-start; }
  .location-card-footer strong { text-align: left; }
  .location-actions { display: grid; grid-template-columns: 1fr; }

  .demo-form { padding: 28px 20px 22px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .form-row .field + .field { margin-top: 0; }
  .demo-badge { top: 12px; right: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .site-footer { padding-bottom: 34px; }
}

@media (max-width: 390px) {
  .brand-copy small { display: none; }
  .brand-copy strong { max-width: 225px; font-size: 14px; }
  .hero h1 { font-size: 42px; }
  .hero-card { padding: 22px; }
  .mobile-cta { grid-template-columns: 1.35fr .65fr; }
  .mobile-call span { font-size: 13px; }
  .mobile-request { font-size: 12px; }
}

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