:root {
  --bg: #090a10;
  --surface: #121422;
  --surface-2: #181b2b;
  --line: #303548;
  --text: #f4f6fb;
  --muted: #b2bacb;
  --red: #e52521;
  --blue: #009fe3;
  --yellow: #fecb00;
  --green: #43b047;
  --display: "Sora", sans-serif;
  --body: "Inter", sans-serif;
  --pixel: "Sora", sans-serif;
  --radius: 18px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--bg);
  background-size: 40px 40px;
  font: 400 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
::selection { color: var(--bg); background: var(--yellow); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #000;
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section--surface { background: rgba(18,20,34,.72); border-block: 1px solid rgba(255,255,255,.08); }
.eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--yellow);
  font: 800 .78rem/1.55 var(--pixel);
  letter-spacing: .12em;
}
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  margin-bottom: 15px;
  font: 700 clamp(2.2rem, 5.2vw, 4rem)/1.03 var(--display);
  letter-spacing: -.035em;
}
.section-lead { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(9,10,16,.95);
  border-bottom: 1px solid #1f2937;
  backdrop-filter: blur(12px);
}
body { padding-top: 80px; }
.nav { width: min(100%, 1280px); height: 100%; padding-inline: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: auto; height: 48px; transition: transform .2s; }
.brand:hover img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a:not(.btn) {
  color: #e5e7eb;
  font: 600 1rem/1 var(--display);
  text-decoration: none;
}
.nav-links > a:nth-of-type(1):hover, .nav-links > a:nth-of-type(1):focus-visible { color: var(--green); }
.nav-links > a:nth-of-type(2):hover, .nav-links > a:nth-of-type(2):focus-visible { color: var(--red); }
.nav-links > a:nth-of-type(3):hover, .nav-links > a:nth-of-type(3):focus-visible { color: var(--yellow); }
.nav-links > a:nth-of-type(4):hover, .nav-links > a:nth-of-type(4):focus-visible { color: var(--blue); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-weight: 700 !important; }
.nav-phone svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: white;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.menu-button span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .2s; }
.menu-button span:nth-child(1) { background: var(--blue); }
.menu-button span:nth-child(2) { background: var(--yellow); }
.menu-button span:nth-child(3) { background: var(--red); }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 48px;
  padding: 12px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: white;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 9px;
  box-shadow: 0 10px 28px rgba(229,37,33,.22);
  font: 700 .92rem/1.2 var(--display);
  letter-spacing: .01em;
  text-align: center;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.btn:hover { background: #f0443f; transform: translateY(-2px); }
.btn--small { min-height: 40px; padding: 8px 20px; border-radius: 4px; font-size: 1rem; letter-spacing: .05em; box-shadow: 0 10px 28px rgba(229,37,33,.3); }
.site-header .btn--small:hover { background: #dc2626; transform: none; }
.btn--ghost { background: rgba(18,20,34,.75); border-color: #626a7f; box-shadow: none; }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--blue); }
.nav-social { padding-left: 24px; display: flex; align-items: center; gap: 16px; border-left: 1px solid #374151; }
.nav-social__link { display: inline-flex; color: #9ca3af; transition: color .2s; }
.nav-social__link svg { width: 20px; height: 20px; fill: currentColor; }
.nav-social__link--facebook:hover, .nav-social__link--facebook:focus-visible { color: var(--blue); }
.nav-social__link--instagram:hover, .nav-social__link--instagram:focus-visible { color: var(--red); }
.nav-social__link--tiktok:hover, .nav-social__link--tiktok:focus-visible { color: var(--green); }

.subhero {
  min-height: 480px;
  padding: 86px 0 74px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.subhero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 82% 40%, rgba(0,159,227,.2), transparent 34%),
    radial-gradient(circle at 72% 52%, rgba(229,37,33,.15), transparent 22%),
    linear-gradient(120deg, #090a10 15%, #111525 100%);
}
.subhero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .18;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.06) 3px 4px);
}
.breadcrumbs { margin-bottom: 22px; color: #a7afc0; font-size: .84rem; }
.breadcrumbs a { color: #dce1eb; text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); }
.subhero h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font: 700 clamp(3rem, 7.4vw, 6rem)/.96 var(--display);
  letter-spacing: -.045em;
}
.subhero p { max-width: 760px; margin-bottom: 30px; color: #cbd1df; font-size: clamp(1.05rem, 2vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.module-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.module-card {
  --accent: var(--blue);
  min-height: 330px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(24,27,43,.98), rgba(14,16,26,.98));
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
}
.module-card[data-color="red"] { --accent: var(--red); }
.module-card[data-color="green"] { --accent: var(--green); }
.module-card[data-color="yellow"] { --accent: var(--yellow); }
.module-card__label { margin-bottom: 25px; color: var(--accent); font: 800 .72rem/1.7 var(--pixel); letter-spacing: .08em; }
.module-card h2, .module-card h3 { margin-bottom: 13px; font: 700 1.8rem/1.08 var(--display); }
.module-card p { color: var(--muted); }
.module-card ul { margin: 4px 0 25px; padding: 0; list-style: none; color: #dce1eb; font-size: .9rem; }
.module-card li { margin-top: 7px; }
.module-card li::before { content: "+"; margin-right: 9px; color: var(--accent); font-weight: 800; }
.module-card .text-link { margin-top: auto; align-self: flex-start; }
.module-card .service-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px 20px; }
.text-link { color: var(--blue); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 15px;
  padding: 7px 10px;
  color: #fff5c2;
  background: rgba(254,203,0,.1);
  border: 1px solid rgba(254,203,0,.35);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; counter-increment: step; }
.step::before { content: "0" counter(step); display: block; margin-bottom: 18px; color: var(--yellow); font: 800 .78rem/1 var(--pixel); }
.step h3 { margin-bottom: 8px; font: 700 1.55rem/1 var(--display); }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

.arena-hero { min-height: auto; padding: 66px 0 78px; }
.arena-hero-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(430px,1.12fr); gap: 55px; align-items: center; }
.arena-hero h1 { font-size: clamp(3.2rem, 7vw, 6.25rem); }
.hero-visual { margin: 0; position: relative; }
.hero-visual img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border: 8px solid #050608; outline: 1px solid #50586d; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.48); }
.hero-visual figcaption { margin-top: 12px; color: #9ca5b6; font-size: .76rem; text-align: right; }
.service-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,.8fr); gap: 56px; align-items: center; }
.service-hero h1 { font-size: clamp(3.1rem,7vw,6rem); }
.service-photo { margin: 0; position: relative; }
.service-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 8px solid #050608; outline: 1px solid #50586d; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.48); }
.service-photo figcaption { margin-top: 11px; color: #9ca5b6; font-size: .76rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { padding: 27px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
.feature-card b { display: block; margin-bottom: 12px; color: var(--yellow); font: 800 .72rem/1.5 var(--pixel); letter-spacing: .06em; }
.feature-card h3 { margin-bottom: 9px; font: 700 1.55rem/1 var(--display); }
.feature-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.spec-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 28px; }
.spec { padding: 17px 14px; background: rgba(18,20,34,.92); border: 1px solid var(--line); border-radius: 11px; text-align: center; }
.spec strong { display: block; color: var(--yellow); font: 700 1.65rem/1 var(--display); }
.spec span { display: block; margin-top: 5px; color: var(--muted); font-size: .77rem; }

.split-layout { display: grid; grid-template-columns: 1fr minmax(300px,.82fr); gap: 58px; align-items: center; }
.split-layout--reverse { grid-template-columns: minmax(300px,.82fr) 1fr; }
.split-copy h2 { margin-bottom: 16px; font: 700 clamp(2.25rem, 5vw, 4rem)/.96 var(--display); }
.split-copy p { color: var(--muted); }
.check-list { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 10px; }
.check-list li { padding: 12px 14px; color: #e1e5ee; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--green); font-weight: 900; }
.test-photo { margin: 0; }
.test-photo img { width: 100%; max-height: 620px; object-fit: cover; object-position: center 42%; border: 1px solid #596276; border-radius: 16px; }
.test-photo figcaption { margin-top: 10px; color: #99a2b4; font-size: .76rem; }

.use-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.use-card { padding: 23px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 13px; }
.use-card span { display: block; margin-bottom: 13px; color: var(--yellow); font: 800 .7rem/1.35 var(--pixel); letter-spacing: .06em; }
.use-card h3 { margin-bottom: 8px; font: 700 1.45rem/1 var(--display); }
.use-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.faq { max-width: 850px; margin-inline: auto; display: grid; gap: 11px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 11px; }
.faq summary { padding: 18px 20px; font-weight: 700; cursor: pointer; }
.faq details p { padding: 0 20px 20px; margin: 0; color: var(--muted); }

.cta-panel {
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: linear-gradient(100deg, rgba(229,37,33,.17), rgba(0,159,227,.13));
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
}
.cta-panel h2 { margin-bottom: 8px; font: 700 2.2rem/1 var(--display); }
.cta-panel p { margin: 0; color: var(--muted); }
.cta-panel .btn { flex: 0 0 auto; }

.site-footer { padding: 55px 0 28px; color: #929bad; background: #05060a; border-top: 1px solid rgba(255,255,255,.09); font-size: .82rem; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.site-footer a { color: #cbd1dc; text-decoration: none; }
.site-footer a:hover { color: var(--blue); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3,1fr); gap: 40px; padding-bottom: 38px; }
.footer-brand img { width: auto; height: 48px; margin-bottom: 17px; }
.footer-brand p { max-width: 330px; color: #aab2c1; }
.footer-col h2 { margin: 0 0 16px; color: #fff; font: 700 .95rem/1.2 var(--display); }
.footer-col a { display: block; margin-top: 10px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.cookie-panel { position: fixed; z-index: 160; right: 24px; bottom: 24px; width: min(430px,calc(100% - 32px)); padding: 21px; color: #dce1eb; background: rgba(18,20,34,.98); border: 1px solid rgba(0,159,227,.45); border-radius: 14px; box-shadow: 0 24px 70px rgba(0,0,0,.62); }
.cookie-panel strong { display: block; margin-bottom: 7px; color: #fff; font-family: var(--display); }
.cookie-panel p { margin-bottom: 16px; color: var(--muted); font-size: .85rem; }
.cookie-actions { display: flex; justify-content: flex-end; gap: 9px; }
.cookie-actions button { padding: 9px 12px; color: #fff; background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.cookie-actions .cookie-accept { color: #07121a; background: var(--blue); border-color: var(--blue); font-weight: 700; }

.inquiry-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.inquiry-form { padding: clamp(24px, 4vw, 42px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { margin-bottom: 21px; }
.field label, .field-label { display: block; margin-bottom: 8px; color: #dce1eb; font: 700 .84rem/1.4 var(--display); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--text); background: var(--bg); border: 1px solid #3b4155; border-radius: 9px; }
.field textarea { min-height: 126px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(0,159,227,.24); border-color: var(--blue); }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice { display: flex !important; align-items: flex-start; gap: 10px; min-height: 48px; padding: 12px; color: var(--muted) !important; background: var(--bg); border: 1px solid #303548; border-radius: 9px; cursor: pointer; }
.choice:has(input:checked) { color: var(--text) !important; border-color: var(--yellow); background: rgba(254,203,0,.06); }
.choice input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--red); }
.consent { font-size: .8rem; line-height: 1.55; }
.consent a { color: var(--blue); }
.submit-btn { width: 100%; margin-top: 4px; border: 0; cursor: pointer; }
.inquiry-aside { position: sticky; top: 106px; padding: 26px; background: rgba(18,20,34,.78); border: 1px solid var(--line); border-radius: var(--radius); }
.inquiry-aside h2 { margin-bottom: 12px; font: 700 1.4rem/1.2 var(--display); }
.inquiry-aside p { color: var(--muted); }
.contact-link { display: block; margin-top: 10px; color: var(--text); font-weight: 700; text-decoration: none; }
.contact-link:hover { color: var(--yellow); }
.included-list { margin: 24px 0 0; padding: 22px 0 0 20px; border-top: 1px solid var(--line); }
.included-list li { margin: 9px 0; color: var(--muted); }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: .82rem; text-align: center; }
.selected-module { display: none; width: fit-content; margin: 24px 0 0; padding: 10px 14px; color: var(--yellow); background: rgba(254,203,0,.08); border: 1px solid rgba(254,203,0,.42); border-radius: 999px; font: 800 .8rem/1.35 var(--display); letter-spacing: .03em; }
.selected-module.is-visible { display: block; }

#scrollToTopBtn {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: color .3s, background-color .3s, box-shadow .3s, opacity .3s, transform .3s;
  cursor: pointer;
}
#scrollToTopBtn svg { width: 24px; height: 24px; }
#scrollToTopBtn.opacity-100 { opacity: 1; }
#scrollToTopBtn.pointer-events-auto { pointer-events: auto; }
#scrollToTopBtn.translate-y-0 { transform: translateY(0); }
#scrollToTopBtn:hover {
  color: #000;
  background: var(--blue);
  box-shadow: 0 0 15px rgba(0,159,227,.6);
}

@media (min-width: 768px) {
  #scrollToTopBtn { right: 40px; bottom: 40px; }
}

@media (max-width: 1023px) {
  body { padding-top: 70px; }
  .site-header { height: 70px; }
  .site-header .nav { width: 100%; padding-inline: 16px; }
  .brand img { height: 48px; }
  .nav-links {
    position: fixed;
    inset: 70px 0 auto;
    padding: 24px 20px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(18,20,34,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0,0,0,.42);
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a:not(.btn) { padding: 12px; text-align: center; border-bottom: 1px solid rgba(48,53,72,.6); }
  .nav-links > a:nth-of-type(1):hover, .nav-links > a:nth-of-type(1):focus-visible { color: var(--green); }
  .nav-links > a:nth-of-type(2):hover, .nav-links > a:nth-of-type(2):focus-visible { color: var(--red); }
  .nav-links > a:nth-of-type(3):hover, .nav-links > a:nth-of-type(3):focus-visible { color: var(--yellow); }
  .nav-links > a:nth-of-type(4):hover, .nav-links > a:nth-of-type(4):focus-visible { color: var(--blue); }
  .nav-phone { display: none; }
  .menu-button { display: block; }
  .nav-links .btn { width: 100%; min-height: 50px; margin-top: 16px; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; }
  .nav-social { margin-top: 16px; padding: 20px 0 0; display: flex; justify-content: center; gap: 24px; border-top: 1px solid rgba(48,53,72,.6); border-left: 0; }
  .nav-social__link { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: #9ca5b6; border: 1px solid var(--line); border-radius: 50%; transition: color .2s, border-color .2s, transform .2s; }
  .nav-social__link svg { width: 27px; height: 27px; fill: currentColor; }
  .nav-social__link:hover, .nav-social__link:focus-visible { transform: translateY(-2px); }
  .nav-social__link--facebook:hover, .nav-social__link--facebook:focus-visible { color: var(--blue); border-color: var(--blue); }
  .nav-social__link--instagram:hover, .nav-social__link--instagram:focus-visible { color: var(--red); border-color: var(--red); }
  .nav-social__link--tiktok:hover, .nav-social__link--tiktok:focus-visible { color: var(--green); border-color: var(--green); }
  .arena-hero-grid, .service-hero-grid, .split-layout, .split-layout--reverse { grid-template-columns: 1fr; }
  .hero-visual { width: min(760px,100%); }
  .split-layout--reverse .test-photo { order: 2; }
  .use-grid, .feature-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .brand img { height: 40px; }
  .nav-links { inset-block-start: 70px; }
  .subhero { min-height: 520px; padding: 65px 0 60px; }
  .subhero h1, .arena-hero h1 { font-size: clamp(3rem,14vw,4.7rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .module-grid, .steps, .use-grid, .feature-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 0; padding: 25px 22px; }
  .spec-row { grid-template-columns: 1fr 1fr; }
  .cta-panel { padding: 26px 22px; flex-direction: column; align-items: flex-start; }
  .cta-panel .btn { width: 100%; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .cookie-panel { right: 16px; bottom: 16px; }
  .inquiry-layout { grid-template-columns: 1fr; }
  .form-grid, .form-grid--three, .choice-grid { grid-template-columns: 1fr; }
  .inquiry-aside { position: static; }
}

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