@font-face {
  font-family: "Liberation Sans Narrow";
  src: url("../fonts/LiberationSansNarrow-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../fonts/NotoSerif-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../fonts/NotoSerif-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #061d49;
  --navy-deep: #031329;
  --orange: #e84a00;
  --orange-dark: #b93608;
  --blue: #0f69a8;
  --ivory: #f5f1e8;
  --paper: #fffdf7;
  --ink: #12213a;
  --muted: #637083;
  --line: rgba(6, 29, 73, 0.16);
  --light-line: rgba(245, 241, 232, 0.18);
  --shadow: 0 30px 80px rgba(3, 19, 41, 0.18);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--navy);
  background: white;
  transform: translateY(-160%);
}

.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip-path: none;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #ffb17b;
  outline-offset: 4px;
}

.announcement {
  min-height: 38px;
  padding: 8px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: var(--ivory);
  background: var(--orange-dark);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.announcement > strong {
  text-align: center;
}

.announcement > a {
  justify-self: end;
}

.promo-clock {
  min-height: 44px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: white;
  background: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  letter-spacing: 0.08em;
}

.promo-clock span {
  font-size: 12px;
}

.promo-clock strong {
  padding: 2px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.site-header {
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: var(--ivory);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Liberation Sans Narrow", sans-serif;
  letter-spacing: 0.05em;
}

.site-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 241, 232, 0.55);
  border-radius: 50%;
  color: #f2bb8f;
  font-size: 14px;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  color: rgba(245, 241, 232, 0.78);
  text-decoration: none;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: white;
}

.header-order {
  justify-self: end;
  padding: 12px 22px;
  border: 1px solid rgba(245, 241, 232, 0.5);
  text-decoration: none;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 42%, rgba(15, 105, 168, 0.22), transparent 34%),
    linear-gradient(135deg, #07152c 0%, #071b39 52%, #041226 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero__grid {
  position: relative;
  min-height: 650px;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 40px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__eyebrow,
.section-title > p,
.closing__eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__eyebrow {
  max-width: 620px;
  color: #f2bc8f;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: clamp(50px, 4.7vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  color: var(--orange);
  font-family: "Noto Serif", serif;
  font-size: 0.66em;
  line-height: 1.05;
  text-transform: none;
}

.hero__lead {
  max-width: 660px;
  margin: 18px 0;
  color: rgba(245, 241, 232, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

.hero__lead strong {
  color: white;
}

.price-block {
  max-width: 560px;
}

.price-block__line {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: "Liberation Sans Narrow", sans-serif;
}

.price-block__line span {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.price-block__line s {
  opacity: 0.58;
  font-size: 22px;
}

.price-block__line strong {
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}

.button {
  min-height: 58px;
  padding: 17px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button--primary {
  width: 100%;
  color: white;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(232, 74, 0, 0.24);
}

.button--primary:hover {
  background: #fb5a0e;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(232, 74, 0, 0.34);
}

.price-block > p {
  margin: 10px 0 0;
  color: rgba(245, 241, 232, 0.7);
  font-size: 12px;
  text-align: center;
}

.hero__trust {
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  color: rgba(245, 241, 232, 0.78);
  font-size: 13px;
}

.hero__trust li::before {
  content: "✓";
  margin-right: 7px;
  color: #6fd4a2;
  font-family: sans-serif;
}

.hero__visual {
  position: relative;
  margin: 0;
  min-width: 0;
}

.hero__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(245, 241, 232, 0.18);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48);
}

.hero__visual figcaption {
  position: absolute;
  left: -18px;
  bottom: 24px;
  min-width: 180px;
  padding: 16px 18px;
  display: grid;
  gap: 2px;
  background: rgba(3, 19, 41, 0.94);
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
  font-family: "Liberation Sans Narrow", sans-serif;
}

.hero__visual figcaption span,
.hero__visual figcaption small {
  color: rgba(245, 241, 232, 0.66);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero__visual figcaption strong {
  font-size: 24px;
}

.fact-strip {
  color: white;
  background: var(--blue);
}

.fact-strip .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-strip .shell > div {
  min-height: 102px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.fact-strip .shell > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.fact-strip strong {
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 40px;
}

.fact-strip span {
  font-size: 13px;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section--ivory {
  background: var(--ivory);
}

.section--paper {
  background: var(--paper);
}

.section--navy {
  color: var(--ivory);
  background: var(--navy);
}

.section--orange {
  color: white;
  background: var(--orange-dark);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 82px;
  align-items: center;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title h2,
.closing h2 {
  margin: 0;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-title__lead {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.section--navy .section-title__lead,
.section--orange .section-title__lead,
.outcome .section-title__lead,
.resale .section-title__lead {
  color: rgba(245, 241, 232, 0.75);
}

.prose {
  max-width: 720px;
}

.prose p {
  margin: 0 0 22px;
}

.prose strong {
  color: var(--navy);
}

.prose--light {
  color: rgba(245, 241, 232, 0.8);
}

.prose--light strong,
.section--orange .prose strong {
  color: white;
}

.client-files {
  position: relative;
  min-height: 510px;
  padding: 34px;
  display: grid;
  gap: 14px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.client-files::before {
  content: "DOSSIERS CLIENTS";
  color: rgba(245, 241, 232, 0.42);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.client-files article {
  position: relative;
  padding: 18px 20px 18px 68px;
  color: var(--ink);
  background: var(--ivory);
  border-top: 5px solid var(--orange);
  transform: rotate(-1deg);
}

.client-files article:nth-of-type(2) {
  transform: translateX(12px) rotate(0.8deg);
}

.client-files article:nth-of-type(3) {
  transform: translateX(-6px) rotate(-0.4deg);
}

.client-files article > span {
  position: absolute;
  top: 19px;
  left: 18px;
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
}

.client-files article strong {
  display: block;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 22px;
}

.client-files ul {
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  gap: 14px;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}

.client-files > p {
  margin: 8px 0 0;
  color: #f2bc8f;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.split--calculator {
  align-items: start;
}

.calculator {
  padding: 34px;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.calculator label {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.calculator label span {
  font-size: 14px;
}

.calculator label strong {
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 30px;
}

.calculator input {
  width: 100%;
  height: 34px;
  grid-column: 1 / -1;
  accent-color: var(--orange);
}

.calculator__result {
  padding: 28px;
  color: white;
  background: var(--orange);
  text-align: center;
}

.calculator__result > span {
  display: block;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.calculator__result > strong {
  display: block;
  margin: 10px 0 0;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 76px;
  line-height: 0.9;
}

.calculator__result p {
  margin: 12px 0 0;
  font-size: 13px;
}

.japan {
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 42%, rgba(232, 74, 0, 0.18), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(15, 105, 168, 0.24), transparent 32%),
    linear-gradient(135deg, #041226 0%, #071c3b 54%, #031329 100%);
}

.japan::before {
  content: "JAPON";
  position: absolute;
  right: -22px;
  bottom: -54px;
  color: rgba(245, 241, 232, 0.035);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 290px;
  line-height: 1;
}

.japan::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 48%, black);
}

.japan > .shell {
  position: relative;
  z-index: 1;
}

.japan .section-title > p {
  color: #f2bc8f;
}

.japan .section-title__lead {
  color: rgba(245, 241, 232, 0.72);
}

.japan .prose {
  color: rgba(245, 241, 232, 0.82);
}

.japan .prose strong {
  color: white;
}

.japan-route {
  position: relative;
  margin: 0;
  padding: 30px;
  color: white;
  background:
    linear-gradient(rgba(3, 19, 41, 0.76), rgba(3, 19, 41, 0.94)),
    url("../assets/mockup-3d-premium.webp") center / cover;
  border: 1px solid rgba(245, 241, 232, 0.18);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.5),
    inset 0 0 0 8px rgba(245, 241, 232, 0.025);
}

.japan-route::before,
.japan-route::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.japan-route::before {
  top: 14px;
  left: 14px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.japan-route::after {
  right: 14px;
  bottom: 14px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.japan-route__map {
  position: relative;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 20% 54%, rgba(232, 74, 0, 0.9) 0 7px, transparent 8px),
    radial-gradient(circle at 82% 48%, rgba(232, 74, 0, 0.9) 0 7px, transparent 8px),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(255, 255, 255, 0.05) 37px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(255, 255, 255, 0.05) 49px);
}

.japan-route__map i {
  position: absolute;
  left: 21%;
  top: 50%;
  width: 60%;
  height: 70px;
  border-top: 3px dashed #f2bc8f;
  border-radius: 50% 50% 0 0;
  transform: translateY(-25px) rotate(-3deg);
}

.japan-route__map i::after {
  content: "✈";
  position: absolute;
  top: -18px;
  left: 54%;
  color: white;
  font-size: 26px;
  transform: rotate(8deg);
}

.japan-route__origin,
.japan-route__destination {
  position: absolute;
  top: 58%;
  padding: 5px 8px;
  background: rgba(3, 19, 41, 0.76);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 15px;
  letter-spacing: 0.13em;
}

.japan-route__origin {
  left: 8%;
}

.japan-route__destination {
  right: 7%;
}

.japan-route__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
}

.japan-route__results > div {
  min-height: 116px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.japan-route__results > div:last-child {
  border-right: 0;
}

.japan-route__results span {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.japan-route__results strong {
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.three-years__visual {
  position: relative;
  padding: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 32px 70px rgba(71, 20, 0, 0.28);
}

.three-years__visual > span {
  padding-bottom: 14px;
  border-bottom: 4px solid var(--orange);
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 13px;
  text-align: center;
}

.three-years__visual > strong {
  min-height: 96px;
  padding: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 19px;
  line-height: 1.1;
  text-align: center;
}

.three-years__visual > p {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding: 16px;
  color: white;
  background: var(--navy);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-align: center;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.method-steps article {
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.method-steps article:last-child {
  border-right: 0;
}

.method-steps article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.method-steps article > div span {
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 13px;
}

.method-steps article > div strong {
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.method-steps h3 {
  min-height: 90px;
  margin: 24px 0 16px;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

blockquote {
  max-width: 860px;
  margin: 48px auto 0;
  padding: 22px 30px;
  border-left: 6px solid var(--orange);
  color: var(--navy);
  background: rgba(232, 74, 0, 0.07);
  font-size: 22px;
  font-weight: 700;
}

.dossier-card {
  padding: 22px;
  color: var(--ink);
  background: #e8ddc8;
  border-radius: 2px 16px 2px 2px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(1deg);
}

.dossier-card header {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  color: white;
  background: var(--orange);
}

.dossier-card header span,
.dossier-card header small {
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.dossier-card header strong {
  grid-column: 1 / -1;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.dossier-card ol {
  margin: 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  background: var(--paper);
  list-style: none;
}

.dossier-card li {
  min-height: 44px;
  padding: 9px 0;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.dossier-card li span {
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.transformation-grid article {
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 45px rgba(6, 29, 73, 0.08);
}

.transformation-grid article > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.transformation-grid article > div strong {
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 32px;
}

.transformation-grid article > div span {
  color: var(--muted);
  font-size: 10px;
}

.transformation-grid h3 {
  min-height: 56px;
  margin: 20px 0 14px;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.transformation-grid p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.transformation-grid footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 3px solid var(--orange);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.five-p-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
}

.five-p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.five-p-card {
  position: relative;
  min-height: 280px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  text-align: left;
  cursor: default;
}

.five-p-card > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 22px;
}

.five-p-card > strong {
  margin: 16px 0 12px;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 24px;
}

.five-p-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
}

.five-p-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.five-p-card b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.five-p-verdict {
  position: sticky;
  top: 24px;
  padding: 30px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.five-p-verdict > span,
.five-p-verdict > small {
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.five-p-verdict > strong {
  margin: 20px 0 16px;
  display: block;
  color: #f2bc8f;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.five-p-verdict p {
  font-size: 14px;
}

.five-p-verdict__scale {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--light-line);
}

.five-p-verdict__scale li {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--light-line);
  font-size: 12px;
}

.five-p-verdict__scale b {
  color: #f2bc8f;
}

.five-p-verdict__scale span {
  text-align: right;
}

.five-p-verdict .button {
  margin-top: 18px;
  text-align: center;
}

.outcome__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.outcome-board {
  position: relative;
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(245, 241, 232, 0.48);
  box-shadow: 24px 28px 0 rgba(232, 74, 0, 0.32), 0 32px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(0.5deg);
}

.outcome-board::before {
  content: "DÉCISION";
  position: absolute;
  top: -15px;
  right: 24px;
  padding: 7px 12px;
  color: white;
  background: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.outcome-board header {
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  border-bottom: 4px solid var(--navy);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.outcome-board header span:last-child {
  color: var(--orange);
}

.outcome-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-board li {
  min-height: 78px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.outcome-board li > span {
  color: var(--muted);
}

.outcome-board li > i {
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 22px;
  font-style: normal;
  text-align: center;
}

.outcome-board li > strong {
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 20px;
  line-height: 1.05;
}

.outcome-board > p {
  margin: 22px 0 0;
  color: var(--navy);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
}

.qualification__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.qualification__grid article {
  padding: 38px;
  border: 1px solid var(--line);
  background: white;
}

.qualification__grid article:last-child {
  color: white;
  background: var(--navy-deep);
}

.qualification__grid article > span {
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.qualification__grid h3 {
  margin: 18px 0 24px;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.qualification__grid ul,
.resale__rules ul,
.offer__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.qualification__grid li,
.resale__rules li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.qualification__grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c9a66;
  font-family: sans-serif;
}

.qualification__grid article:last-child li::before {
  content: "×";
  color: var(--orange);
}

.authority {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(232, 74, 0, 0.1), transparent 24%),
    linear-gradient(110deg, #eee7da 0 38%, var(--ivory) 38% 100%);
}

.authority::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 29, 73, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 29, 73, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.authority__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  border: 1px solid rgba(6, 29, 73, 0.12);
  background: var(--paper);
  box-shadow:
    0 42px 100px rgba(3, 19, 41, 0.2),
    16px 16px 0 rgba(6, 29, 73, 0.06);
}

.authority__portrait {
  position: relative;
  align-self: center;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.authority__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset -22px 0 44px rgba(3, 19, 41, 0.2);
  background:
    linear-gradient(180deg, transparent 58%, rgba(3, 19, 41, 0.48)),
    linear-gradient(90deg, transparent 72%, rgba(3, 19, 41, 0.16));
}

.authority figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.85) contrast(1.05);
}

.authority figcaption {
  z-index: 1;
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 15px 18px;
  color: white;
  background: rgba(3, 19, 41, 0.9);
  border-left: 5px solid var(--orange);
  backdrop-filter: blur(8px);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.authority__panel {
  padding: clamp(44px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.authority__panel .section-title {
  margin-bottom: 28px;
}

.authority__dates {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(6, 29, 73, 0.025);
}

.authority__dates span {
  min-height: 112px;
  padding: 18px;
  display: grid;
  align-content: center;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.authority__dates span:last-child {
  border-right: 0;
}

.authority__dates strong {
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.resale__rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.resale__rules article {
  padding: 24px;
  border: 1px solid var(--light-line);
}

.resale__rules h3 {
  margin: 0 0 18px;
  color: #f2bc8f;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
}

.resale__rules li {
  color: rgba(245, 241, 232, 0.78);
}

.resale__rules li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.resale__flow {
  padding: 36px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 9px 16px;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.resale__flow > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
}

.resale__flow > strong {
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 20px;
}

.resale__flow > i {
  grid-column: 1 / -1;
  width: 2px;
  height: 16px;
  margin-left: 20px;
  background: var(--orange);
}

.resale__flow > p {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding: 14px;
  color: white;
  background: var(--navy);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 13px;
  text-align: center;
}

.section--offer {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 105, 168, 0.35), transparent 32%),
    var(--navy-deep);
}

.offer {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.offer__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  filter: drop-shadow(0 32px 55px rgba(0, 0, 0, 0.42));
}

.offer__copy .section-title__lead {
  color: #f2bc8f;
}

.offer__list {
  margin-bottom: 28px;
}

.offer__list li {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--light-line);
}

.offer__list strong {
  font-size: 14px;
}

.offer__list span {
  color: rgba(245, 241, 232, 0.7);
  font-size: 13px;
}

.delivery-note {
  margin: 16px 0 0;
  color: #f2bc8f;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

.guarantee {
  grid-column: 1 / -1;
  padding: 30px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  align-items: center;
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.04);
}

.guarantee > div:first-child {
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  text-align: center;
}

.guarantee > div:first-child strong {
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 50px;
  line-height: 0.8;
}

.guarantee > div:first-child span {
  color: #f2bc8f;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 12px;
}

.guarantee h3 {
  margin: 0 0 8px;
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.guarantee p {
  margin: 0;
  color: rgba(245, 241, 232, 0.75);
  font-size: 14px;
}

.guarantee a {
  color: white;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 72px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  color: var(--orange);
  font-family: "Liberation Sans Narrow", sans-serif;
}

.faq details p {
  max-width: 860px;
  margin: 0 0 26px 42px;
  color: var(--muted);
}

.closing {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 24% 48%, rgba(232, 74, 0, 0.22), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(15, 105, 168, 0.3), transparent 30%),
    linear-gradient(135deg, #020c19 0%, #061d49 58%, #031329 100%);
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.closing::after {
  content: "ACTIF MAÎTRE";
  position: absolute;
  right: -22px;
  bottom: -34px;
  color: rgba(245, 241, 232, 0.028);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: clamp(110px, 17vw, 250px);
  line-height: 0.8;
  white-space: nowrap;
}

.closing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.closing__visual {
  position: relative;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(245, 241, 232, 0.2);
  background: rgba(2, 12, 25, 0.56);
  box-shadow:
    0 46px 110px rgba(0, 0, 0, 0.52),
    inset 0 0 0 8px rgba(245, 241, 232, 0.025);
  transform: rotate(-1.25deg);
}

.closing__visual::before,
.closing__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  pointer-events: none;
}

.closing__visual::before {
  top: 10px;
  left: 10px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}

.closing__visual::after {
  right: 10px;
  bottom: 10px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.closing__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(245, 241, 232, 0.12);
}

.closing__visual figcaption {
  padding: 15px 6px 3px;
  color: rgba(245, 241, 232, 0.72);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
}

.closing__stamp {
  position: absolute;
  z-index: 3;
  top: -18px;
  right: 26px;
  padding: 10px 14px;
  color: white;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  font-family: "Liberation Sans Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  transform: rotate(1.25deg);
}

.closing__copy {
  max-width: 620px;
}

.closing__eyebrow {
  color: #f2bc8f;
}

.closing h2 {
  margin-bottom: 24px;
  font-size: clamp(54px, 6vw, 84px);
}

.closing__copy > p:not(.closing__eyebrow) {
  max-width: 600px;
  margin: 0 0 20px;
  color: rgba(245, 241, 232, 0.82);
}

.closing .price-block {
  margin: 34px 0 0;
}

.closing .price-block__line strong {
  color: white;
}

.closing__copy > small {
  margin-top: 14px;
  display: block;
  color: rgba(245, 241, 232, 0.62);
}

.footer {
  padding: 38px 0 100px;
  color: rgba(245, 241, 232, 0.72);
  background: #020c19;
}

.footer .shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 30px;
  align-items: center;
}

.footer strong {
  color: white;
  font-family: "Liberation Sans Narrow", sans-serif;
}

.footer p {
  margin: 0;
  font-size: 12px;
}

.footer nav {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  gap: 20px;
  font-size: 12px;
}

.mobile-order {
  display: none;
}

@media (max-width: 1050px) {
  .site-header nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .split {
    gap: 48px;
  }

  .method-steps,
  .transformation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-steps article:nth-child(2n) {
    border-right: 0;
  }

  .method-steps article {
    border-bottom: 1px solid var(--line);
  }

  .five-p-layout {
    grid-template-columns: 1fr;
  }

  .five-p-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .five-p-verdict {
    position: static;
  }

  .authority__layout {
    grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
  }

  .authority__panel {
    padding: 44px;
  }

  .authority__dates {
    grid-template-columns: 1fr;
  }

  .authority__dates span {
    min-height: 72px;
    grid-template-columns: 112px 1fr;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .authority__dates span:last-child {
    border-bottom: 0;
  }

  .closing__grid {
    gap: 46px;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__visual {
    max-width: 680px;
  }

  .authority__layout {
    display: flex;
    flex-direction: column-reverse;
  }

  .authority__portrait {
    min-height: 0;
  }

  .closing__grid {
    grid-template-columns: 1fr;
  }

  .closing__visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .closing__copy {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 620px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    font-size: 16px;
  }

  .announcement {
    min-height: 34px;
    padding: 6px 14px;
    grid-template-columns: 1fr auto;
    font-size: 10px;
  }

  .announcement > strong {
    display: none;
  }

  .promo-clock {
    min-height: 40px;
    padding: 7px 12px;
    gap: 10px;
  }

  .promo-clock span {
    font-size: 9px;
  }

  .promo-clock strong {
    padding: 2px 7px;
    font-size: 13px;
  }

  .site-header {
    min-height: 62px;
    padding: 0 14px;
    gap: 12px;
  }

  .site-brand {
    gap: 8px;
    font-size: 13px;
  }

  .site-brand span {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .header-order {
    padding: 9px 12px;
    font-size: 10px;
  }

  .hero__grid {
    min-height: auto;
    padding: 24px 0 38px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.8vw, 52px);
  }

  .hero h1 em {
    margin-top: 8px;
  }

  .hero__lead {
    margin: 18px 0;
    font-size: 16px;
  }

  .price-block__line strong {
    font-size: 36px;
  }

  .button {
    min-height: 56px;
    padding: 15px 14px;
    font-size: 13px;
  }

  .hero__trust {
    gap: 6px 14px;
    font-size: 11px;
  }

  .hero__visual {
    margin-inline: -16px;
  }

  .hero__visual figcaption {
    left: 12px;
    bottom: 12px;
    min-width: 148px;
    padding: 12px;
  }

  .hero__visual figcaption strong {
    font-size: 20px;
  }

  .fact-strip .shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip .shell > div {
    min-height: 76px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .fact-strip strong {
    font-size: 32px;
  }

  .section {
    padding: 74px 0;
  }

  .split,
  .offer {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .section-title h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .section-title__lead {
    font-size: 16px;
  }

  .client-files {
    min-height: 440px;
    padding: 24px 18px;
  }

  .client-files article {
    padding-left: 58px;
  }

  .client-files ul {
    flex-wrap: wrap;
  }

  .japan::before {
    display: none;
  }

  .japan-route {
    padding: 14px;
  }

  .japan-route__map {
    height: 210px;
  }

  .japan-route__results {
    grid-template-columns: 1fr;
  }

  .japan-route__results > div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .three-years__visual {
    padding: 24px 18px;
  }

  .three-years__visual > strong {
    padding: 8px;
    font-size: 15px;
  }

  .method-steps,
  .transformation-grid,
  .five-p-grid {
    grid-template-columns: 1fr;
  }

  .method-steps article {
    border-right: 0;
  }

  .method-steps h3 {
    min-height: 0;
  }

  blockquote {
    margin-top: 34px;
    padding: 18px 20px;
    font-size: 18px;
  }

  .dossier-card {
    padding: 14px;
  }

  .dossier-card header strong {
    font-size: 34px;
  }

  .dossier-card ol {
    grid-template-columns: 1fr;
  }

  .transformation-grid h3 {
    min-height: 0;
  }

  .five-p-card {
    min-height: 250px;
  }

  .outcome__layout,
  .qualification__grid,
  .resale__rules {
    grid-template-columns: 1fr;
  }

  .outcome-board {
    padding: 24px 18px;
    box-shadow: 12px 14px 0 rgba(232, 74, 0, 0.28);
    transform: none;
  }

  .qualification__grid article {
    padding: 28px 22px;
  }

  .authority {
    background: var(--ivory);
  }

  .authority__layout {
    width: min(100% - 20px, 620px);
    box-shadow:
      0 28px 64px rgba(3, 19, 41, 0.18),
      8px 8px 0 rgba(6, 29, 73, 0.06);
  }

  .authority__panel {
    padding: 36px 24px;
  }

  .authority__portrait {
    min-height: 0;
  }

  .authority__dates {
    grid-template-columns: 1fr;
  }

  .authority__dates span {
    min-height: 66px;
    padding: 14px;
    grid-template-columns: 102px 1fr;
    align-items: baseline;
  }

  .offer {
    gap: 28px;
  }

  .offer__visual {
    margin-inline: -14px;
  }

  .offer__list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .guarantee {
    padding: 24px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee > div:first-child {
    margin-inline: auto;
  }

  .faq details p {
    margin-left: 0;
  }

  .closing {
    padding-bottom: 110px;
  }

  .closing__grid {
    gap: 54px;
  }

  .closing__visual {
    padding: 10px;
    transform: none;
  }

  .closing__stamp {
    top: -15px;
    right: 18px;
    transform: none;
  }

  .closing h2 {
    font-size: clamp(44px, 12vw, 54px);
  }

  .footer {
    padding-bottom: 110px;
  }

  .footer .shell {
    grid-template-columns: 1fr;
  }

  .footer nav {
    grid-row: auto;
    grid-column: auto;
    flex-wrap: wrap;
  }

  .mobile-order {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 68px;
    padding: 9px 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    color: white;
    background: rgba(3, 19, 41, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    transform: translateY(110%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .mobile-order--visible {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-order > div {
    display: grid;
    font-family: "Liberation Sans Narrow", sans-serif;
    line-height: 1;
  }

  .mobile-order span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .mobile-order strong {
    color: #f2bc8f;
    font-size: 26px;
  }

  .mobile-order > a {
    min-height: 46px;
    padding: 11px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--orange);
    text-decoration: none;
    font-family: "Liberation Sans Narrow", sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
