:root {
  --paper: #f7f4ed;
  --paper-strong: #eee8dc;
  --white: #ffffff;
  --ink: #0b3732;
  --ink-soft: #42605b;
  --green: #0b4a42;
  --green-deep: #062d29;
  --red: #be352d;
  --red-deep: #8e261f;
  --gold: #d29a45;
  --line: rgba(11, 55, 50, 0.17);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 24px 70px rgba(7, 45, 41, 0.14);
  --container: min(calc(100vw - 80px), 1180px);
  --font-body: "DM Sans", Inter, "Segoe UI", Arial, sans-serif;
  --font-display: Manrope, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* The Chinese headline carries more meaning per line than the Latin version. */
html[lang="zh"] .hero-copy h1 {
  font-size: clamp(54px, 4.85vw, 70px);
  line-height: 1.02;
}

html[lang="en"] .hero-copy h1,
html[lang="ar"] .hero-copy h1 {
  font-size: clamp(54px, 5vw, 74px);
}

html[lang="en"] .hero-copy > p:not(.hero-note),
html[lang="ar"] .hero-copy > p:not(.hero-note) {
  font-size: 16px;
  line-height: 1.68;
}

@media (max-width: 1120px) {
  html[lang="zh"] .hero-copy h1 {
    font-size: clamp(50px, 5.6vw, 64px);
  }
}

@media (max-width: 760px) {
  html[lang="zh"] .hero-copy h1 {
    font-size: clamp(42px, 11vw, 52px);
  }

  html[lang="en"] .hero-copy h1,
  html[lang="ar"] .hero-copy h1 {
    font-size: clamp(42px, 11.5vw, 52px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 3px solid rgba(210, 154, 69, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.94);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.brand-mark span {
  position: absolute;
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  top: 0;
  left: 9px;
  color: var(--red);
}

.brand-mark span:nth-child(2) {
  bottom: 0;
  left: 0;
  color: var(--gold);
}

.brand-mark span:nth-child(3) {
  right: 0;
  bottom: 0;
  color: var(--green);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 31px;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 20px;
}

.language-switcher {
  gap: 4px;
}

.language-button {
  padding: 6px 5px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.language-button.is-active {
  border-color: var(--red);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.footer-cta svg,
.country-apply svg,
.mobile-apply-bar svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(190, 53, 45, 0.24);
}

.button-primary:hover {
  background: var(--red-deep);
}

.button-dark {
  background: var(--green);
  color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
}

.hero {
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0 72px;
}

.hero-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.section h2,
.site-footer > p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.99;
}

.hero-copy h1 {
  max-width: 580px;
  font-size: clamp(58px, 5.7vw, 82px);
}

.hero-copy > p:not(.hero-note) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.text-link {
  display: inline-grid;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
}

.text-link span:last-child {
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero-note {
  max-width: 560px;
  margin: 25px 0 0;
  padding-inline-start: 15px;
  border-inline-start: 1px solid var(--gold);
  color: #6f7f7b;
  font-size: 11px;
  line-height: 1.65;
}

.hero-visual {
  min-width: 0;
}

.document-stage {
  position: relative;
  min-height: 570px;
  padding: 44px 48px 46px;
  border-radius: 150px 8px 8px 8px;
  background: var(--red);
  box-shadow: var(--shadow);
}

.document-stage::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.document-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 390px;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 24px 50px rgba(68, 9, 5, 0.22);
  transform: rotate(-2.2deg);
}

.document-frame img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center top;
}

.country-stamp {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 20px;
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(7, 36, 33, 0.28);
}

.country-stamp span {
  font-size: 11px;
  font-weight: 800;
}

.country-stamp span + span::before {
  margin-inline-end: 4px;
  color: var(--gold);
  content: "·";
}

.price-card {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 30px;
  display: grid;
  width: 250px;
  gap: 4px;
  padding: 22px 24px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 20px 45px rgba(21, 28, 26, 0.2);
}

.price-card span,
.fee-amount span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-card small {
  color: #687975;
  font-size: 10px;
  line-height: 1.45;
}

.document-tag {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 27px;
  max-width: 210px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(92, 18, 13, 0.66);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.trust-rail {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border-radius: 7px;
  background: var(--green);
  box-shadow: 0 20px 45px rgba(8, 51, 46, 0.15);
  color: var(--white);
}

.trust-rail > div {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 15px;
  padding: 22px 25px;
  border-inline-end: 1px solid var(--line-light);
}

.trust-rail > div:last-child {
  border-inline-end: 0;
}

.trust-rail svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: var(--gold);
}

.trust-rail span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.fair-visuals {
  padding: 112px max(calc((100vw - 1180px) / 2), 40px);
  background: var(--green);
  color: var(--white);
}

.fair-visuals-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.fair-visuals-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.fair-visuals-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(48px, 5vw, 70px);
}

.fair-visuals-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.fair-photo-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  grid-template-rows: repeat(2, 278px);
  gap: 16px;
  margin-top: 58px;
}

.fair-photo {
  display: grid;
  min-width: 0;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.fair-photo-main {
  grid-row: 1 / 3;
}

.fair-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.fair-photo-main img {
  object-position: center 62%;
}

.fair-photo:hover img {
  transform: scale(1.025);
}

.fair-photo figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 20px 19px;
  border-top: 3px solid var(--red);
}

.fair-photo figcaption strong {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0;
}

.fair-photo figcaption span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.fair-visuals-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.65;
}

.section {
  padding: 115px max(calc((100vw - 1180px) / 2), 40px);
  scroll-margin-top: 76px;
}

.section-heading,
.process-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 90px;
}

.section-index {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-index-light {
  color: var(--gold);
}

.section h2 {
  max-width: 720px;
  font-size: clamp(48px, 5vw, 70px);
}

.section-heading > p,
.process-heading > p,
.fee-lead > p:not(.section-index),
.checklist-copy > p:not(.section-index),
.apply-intro > p:not(.section-index) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.country-list {
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.country-row {
  display: grid;
  min-height: 150px;
  grid-template-columns: 75px 1fr 1.35fr auto;
  align-items: center;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.28s var(--ease), background 0.28s ease;
}

.country-row:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.country-code {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.country-main p {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.country-main h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 29px;
  letter-spacing: 0;
}

.country-row > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.country-apply {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.country-apply svg {
  transition: transform 0.25s var(--ease);
}

.country-apply:hover svg {
  transform: translateX(5px);
}

.service-scope {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 70px;
  margin-top: 60px;
  padding: 40px;
  background: var(--paper-strong);
}

.service-scope > p {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px 35px;
}

.scope-grid span {
  position: relative;
  padding-inline-start: 20px;
  font-size: 13px;
  line-height: 1.5;
}

.scope-grid span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

[dir="rtl"] .scope-grid span::before {
  right: 0;
  left: auto;
}

.product-gallery {
  margin-top: 78px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.product-gallery-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 70px;
}

.product-gallery-heading h3 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.1vw, 43px);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-gallery-heading > p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 35px;
}

.product-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 55, 50, 0.1);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 45, 41, 0.07);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.88;
  background: var(--paper-strong);
}

.product-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.product-card figcaption {
  padding: 20px 18px 22px;
}

.product-card h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-card figcaption p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.product-gallery-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(66, 96, 91, 0.75);
  font-size: 10px;
  line-height: 1.6;
}

.process,
.apply {
  background: var(--green);
  color: var(--white);
}

.process-heading > p,
.apply-intro > p:not(.section-index) {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 74px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-light);
  content: "";
}

.timeline li {
  position: relative;
  min-height: 230px;
  padding: 0 30px 0 0;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(210, 154, 69, 0.65);
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.timeline h3 {
  margin: 29px 0 12px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0;
}

.timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.75;
}

.process-warning {
  max-width: 800px;
  margin: 42px 0 0;
  padding: 18px 22px;
  border-inline-start: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.7;
}

.cases {
  background: var(--white);
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 24px;
  margin-top: 65px;
}

.case-gallery figure {
  min-width: 0;
  margin: 0;
}

.case-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 430px;
  padding: 0;
  border: 0;
  background: #dedcd6;
  cursor: zoom-in;
}

.case-featured .case-image {
  border-radius: 110px 5px 5px 5px;
}

.case-image.portrait {
  border-radius: 5px;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease), filter 0.3s ease;
}

.case-image:hover img {
  filter: brightness(0.82);
  transform: scale(1.035);
}

.case-image > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 13px;
  background: rgba(6, 45, 41, 0.9);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[dir="rtl"] .case-image > span {
  right: auto;
  left: 14px;
}

.case-gallery figcaption {
  padding-top: 20px;
}

.case-gallery figcaption > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.case-gallery h3 {
  margin: 9px 0 7px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.3;
}

.case-gallery figcaption p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.case-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.case-disclaimer svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--red);
}

.case-disclaimer p {
  max-width: 830px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.7;
}

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

.fee-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: end;
}

.fee-lead > p:not(.section-index) {
  max-width: 650px;
  margin-top: 28px;
}

.fee-amount {
  display: grid;
  gap: 7px;
  padding: 38px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fee-amount strong {
  font-family: var(--font-display);
  font-size: clamp(62px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 1;
}

.fee-amount small {
  padding-bottom: 20px;
  color: var(--ink-soft);
  font-size: 11px;
}

.fee-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.fee-details article {
  min-height: 280px;
  padding: 34px 34px 25px 0;
  border-inline-end: 1px solid var(--line);
}

.fee-details article + article {
  padding-inline-start: 34px;
}

.fee-details article:last-child {
  border-inline-end: 0;
}

.fee-details h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 19px;
}

.fee-details ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fee-details li {
  position: relative;
  padding-inline-start: 20px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.fee-details li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

[dir="rtl"] .fee-details li::before {
  right: 0;
  left: auto;
}

.payment-safety {
  background: var(--paper-strong);
  padding-inline-end: 34px !important;
}

.payment-safety p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.refund-guarantee {
  display: grid;
  grid-template-columns: 155px 1fr;
  align-items: center;
  gap: 42px;
  margin-top: 46px;
  padding: 35px 40px;
  border: 1px solid rgba(190, 53, 45, 0.28);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(48, 38, 28, 0.08);
}

.refund-mark {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
}

.refund-guarantee h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: 0;
}

.refund-guarantee p {
  max-width: 800px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.refund-guarantee small {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}

.checklist {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  background: var(--red);
  color: var(--white);
}

.checklist-copy > p:not(.section-index) {
  max-width: 480px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.checklist-items {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.checklist-items > div {
  display: grid;
  min-height: 87px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.checklist-items span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.checklist-items p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.apply-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.apply-intro > p:not(.section-index) {
  max-width: 440px;
  margin-top: 28px;
}

.contact-note {
  display: grid;
  gap: 5px;
  margin-top: 45px;
  padding-inline-start: 17px;
  border-inline-start: 2px solid var(--gold);
}

.contact-note span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-note strong {
  font-size: 13px;
}

.contact-directory {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.contact-directory h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.15;
}

.contact-directory > p {
  max-width: 440px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.7;
}

.contact-links {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-link {
  display: grid;
  min-width: 0;
  grid-template-columns: 88px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 0.2s ease, padding 0.2s ease;
}

.contact-link:hover {
  padding-inline: 8px;
  color: var(--red);
}

.contact-link span {
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link strong {
  min-width: 0;
  direction: ltr;
  overflow-wrap: anywhere;
  font-size: 12px;
  unicode-bidi: isolate;
}

[dir="rtl"] .contact-link strong {
  text-align: right;
}

.contact-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.2s ease;
}

.contact-link:hover svg {
  transform: translateX(3px);
}

[dir="rtl"] .contact-link:hover svg {
  transform: translateX(-3px) rotate(180deg);
}

[dir="rtl"] .contact-link svg {
  transform: rotate(180deg);
}

.application-form {
  display: grid;
  gap: 20px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.application-form label:not(.consent) {
  display: grid;
  gap: 9px;
}

.application-form label > span:first-child {
  font-size: 10px;
  font-weight: 800;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font-size: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.application-form input,
.application-form select {
  min-height: 49px;
  padding: 0 14px;
}

.application-form textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.application-form option {
  color: #111;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

[dir="rtl"] .application-form input[dir="auto"]:placeholder-shown,
[dir="rtl"] .application-form textarea[dir="auto"]:placeholder-shown {
  direction: rtl;
  text-align: right;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.application-form .is-invalid {
  border-color: #ff9e8f;
}

.consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.6;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.button-submit {
  justify-self: start;
  margin-top: 4px;
}

.form-message {
  display: none;
  margin: 0;
  padding: 13px 15px;
  border-inline-start: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 11px;
  line-height: 1.5;
}

.form-message.is-visible {
  display: block;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  background: var(--white);
}

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

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

.faq-list summary {
  display: grid;
  min-height: 81px;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

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

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 8px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 0.25s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

details[open] .faq-icon::after {
  transform: rotate(0);
}

.faq-list details > p {
  margin: -2px 55px 25px 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

[dir="rtl"] .faq-list details > p {
  margin: -2px 0 25px 55px;
}

.site-footer {
  padding: 62px max(calc((100vw - 1180px) / 2), 40px) 26px;
  background: var(--green-deep);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.6;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  line-height: 1.65;
}

.footer-bottom p {
  margin: 0;
}

.mobile-apply-bar {
  display: none;
}

.case-modal {
  width: min(92vw, 940px);
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.case-modal::backdrop {
  background: rgba(4, 28, 25, 0.78);
  backdrop-filter: blur(8px);
}

.modal-header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.96);
}

.modal-header span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-header h2 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 20px;
}

.modal-close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.case-modal > img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #dedcd6;
}

.case-modal > p {
  margin: 0;
  padding: 15px 24px 20px;
  color: var(--ink-soft);
  font-size: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[dir="rtl"] .button svg,
[dir="rtl"] .footer-cta svg,
[dir="rtl"] .country-apply svg,
[dir="rtl"] .mobile-apply-bar svg {
  transform: scaleX(-1);
}

[dir="rtl"] .country-apply:hover svg {
  transform: scaleX(-1) translateX(5px);
}

[dir="rtl"] .document-stage {
  border-radius: 8px 150px 8px 8px;
}

[dir="rtl"] .country-stamp {
  right: auto;
  left: 20px;
}

[dir="rtl"] .price-card {
  right: auto;
  left: 28px;
}

[dir="rtl"] .document-tag {
  right: 27px;
  left: auto;
}

html[lang="ar"] body {
  font-family: Tahoma, Arial, sans-serif;
}

html[lang="ar"] .hero-copy h1,
html[lang="ar"] .fair-visuals-heading h2,
html[lang="ar"] .fair-photo figcaption strong,
html[lang="ar"] .section h2,
html[lang="ar"] .country-main h3,
html[lang="ar"] .timeline h3,
html[lang="ar"] .case-gallery h3,
html[lang="ar"] .fee-details h3,
html[lang="ar"] .modal-header h2 {
  font-family: Tahoma, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

html[lang="zh"] .hero-copy h1,
html[lang="zh"] .fair-visuals-heading h2,
html[lang="zh"] .fair-photo figcaption strong,
html[lang="zh"] .section h2,
html[lang="zh"] .country-main h3,
html[lang="zh"] .timeline h3,
html[lang="zh"] .case-gallery h3,
html[lang="zh"] .fee-details h3,
html[lang="zh"] .modal-header h2 {
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

html[lang="zh"] .fair-visuals-heading h2 {
  font-size: clamp(46px, 4.5vw, 64px);
  line-height: 1.13;
}

html[lang="ar"] .fair-visuals-heading h2 {
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1.18;
}

/* Unified page palette: paper is the canvas, green carries hierarchy,
   red is reserved for actions and small emphasis. */
.fair-visuals,
.process,
.cases,
.fees,
.checklist,
.apply,
.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.fair-visuals-heading h2,
.process h2,
.cases h2,
.fees h2,
.checklist h2,
.apply h2,
.faq h2 {
  color: var(--green);
}

.fair-visuals-heading > p,
.fair-visuals-note,
.process-heading > p,
.checklist-copy > p:not(.section-index),
.apply-intro > p:not(.section-index) {
  color: var(--ink-soft);
}

.process .section-index-light,
.checklist .section-index-light,
.apply .section-index-light {
  color: var(--red);
}

.fair-photo {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(6, 45, 41, 0.07);
}

.timeline::before {
  background: var(--line);
}

.timeline-number {
  border-color: var(--green);
  background: var(--green);
  color: var(--gold);
}

.timeline p {
  color: var(--ink-soft);
}

.process-warning {
  background: var(--paper-strong);
  color: var(--ink-soft);
}

.checklist-items {
  border-top-color: var(--line);
}

.checklist-items > div {
  border-bottom-color: var(--line);
}

.checklist-items span {
  color: var(--red);
}

.contact-note span,
.consent {
  color: var(--ink-soft);
}

.application-form {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 20px 54px rgba(6, 45, 41, 0.08);
}

.application-form input,
.application-form select,
.application-form textarea {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(14, 54, 49, 0.42);
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--green);
  background: var(--white);
}

.form-message {
  background: var(--paper-strong);
  color: var(--ink);
}

@media (max-width: 1120px) {
  :root {
    --container: min(calc(100vw - 48px), 980px);
  }

  .header-shell {
    grid-template-columns: auto auto 1fr;
    gap: 22px;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    justify-self: end;
    gap: 5px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 0;
  }

  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle i {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] i {
    opacity: 0;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.25s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 6vw, 68px);
  }

  .document-stage {
    min-height: 520px;
    padding-inline: 34px;
  }

  .document-frame,
  .document-frame img {
    min-height: 360px;
    height: 360px;
  }

  .price-card {
    width: 220px;
  }

  .country-row {
    grid-template-columns: 55px 0.8fr 1.4fr;
  }

  .country-apply {
    grid-column: 2 / 4;
    justify-self: start;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-gallery {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .case-gallery figure:last-child {
    grid-column: 1 / -1;
  }

  .case-gallery figure:last-child .case-image {
    height: 360px;
  }
}

@media (max-width: 780px) {
  :root {
    --container: calc(100vw - 34px);
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    height: 70px;
  }

  .header-shell {
    gap: 12px;
  }

  .site-nav {
    inset: 70px 0 auto;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-mark span {
    width: 17px;
    height: 17px;
  }

  .brand-mark span:nth-child(1) {
    left: 7px;
  }

  .brand-copy small {
    display: none;
  }

  .language-button {
    padding: 5px 4px;
    font-size: 9px;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(46px, 12.7vw, 66px);
  }

  .hero-copy > p:not(.hero-note) {
    margin-top: 23px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 27px;
  }

  .document-stage {
    min-height: 490px;
    padding: 48px 24px 55px;
    border-radius: 90px 6px 6px 6px;
  }

  [dir="rtl"] .document-stage {
    border-radius: 6px 90px 6px 6px;
  }

  .document-frame,
  .document-frame img {
    min-height: 340px;
    height: 340px;
  }

  .country-stamp {
    top: 17px;
    right: 15px;
    width: 92px;
    height: 92px;
    border-width: 4px;
  }

  [dir="rtl"] .country-stamp {
    right: auto;
    left: 15px;
  }

  .price-card,
  [dir="rtl"] .price-card {
    right: 17px;
    bottom: 18px;
    left: 17px;
    width: auto;
  }

  .price-card strong {
    font-size: 32px;
  }

  .document-tag {
    display: none;
  }

  .trust-rail {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }

  .trust-rail > div {
    min-height: 94px;
    padding: 15px;
    border-bottom: 1px solid var(--line-light);
  }

  .trust-rail > div:nth-child(2n) {
    border-inline-end: 0;
  }

  .trust-rail > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .fair-visuals {
    padding: 88px 17px;
  }

  .fair-visuals-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .fair-visuals-heading h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  html[lang="ar"] .fair-visuals-heading h2 {
    font-size: 36px;
    line-height: 1.22;
  }

  .fair-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    margin-top: 42px;
  }

  .fair-photo,
  .fair-photo-main {
    grid-row: auto;
  }

  .fair-photo img {
    height: 240px;
  }

  .fair-photo-main img {
    height: 310px;
  }

  .section {
    padding: 88px 17px;
  }

  .section-heading,
  .process-heading,
  .fee-shell,
  .checklist,
  .apply-shell,
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .country-list {
    margin-top: 48px;
  }

  .country-row {
    grid-template-columns: 45px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .country-row:hover {
    padding-inline: 9px;
  }

  .country-row > p,
  .country-apply {
    grid-column: 2;
  }

  .service-scope {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
  }

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

  .product-gallery {
    margin-top: 62px;
    padding-top: 42px;
  }

  .product-gallery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-gallery-heading h3 {
    font-size: clamp(31px, 8.8vw, 42px);
  }

  .product-grid {
    gap: 12px;
    margin-top: 30px;
  }

  .product-card figcaption {
    padding: 17px 15px 19px;
  }

  .product-card h4 {
    font-size: 15px;
  }

  .product-card figcaption p {
    font-size: 10.5px;
  }

  .timeline {
    grid-template-columns: 1fr;
    margin-top: 55px;
    padding-inline-start: 4px;
  }

  .timeline::before {
    top: 0;
    right: auto;
    left: 25px;
    width: 1px;
    height: 100%;
  }

  [dir="rtl"] .timeline::before {
    right: 25px;
    left: auto;
  }

  .timeline li {
    min-height: 180px;
    padding: 0 0 35px 76px;
  }

  [dir="rtl"] .timeline li {
    padding: 0 76px 35px 0;
  }

  .timeline-number {
    position: absolute;
    left: 3px;
  }

  [dir="rtl"] .timeline-number {
    right: 3px;
    left: auto;
  }

  .timeline h3 {
    margin-top: 0;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 48px;
  }

  .case-gallery figure:last-child {
    grid-column: auto;
  }

  .case-image,
  .case-gallery figure:last-child .case-image {
    height: 430px;
  }

  .case-featured .case-image {
    height: 300px;
    border-radius: 78px 5px 5px 5px;
  }

  .fee-details {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .refund-guarantee {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .refund-mark {
    width: 100px;
    height: 100px;
    font-size: 29px;
  }

  .fee-details article,
  .fee-details article + article {
    min-height: 0;
    padding: 30px 0;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .payment-safety {
    padding: 30px 24px !important;
  }

  .checklist {
    gap: 55px;
  }

  .apply-shell {
    gap: 58px;
  }

  .application-form {
    padding: 26px 18px;
  }

  .contact-directory {
    margin-top: 35px;
  }

  .contact-link {
    grid-template-columns: 80px minmax(0, 1fr) 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq {
    gap: 50px;
  }

  .faq-list summary {
    font-size: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .mobile-apply-bar {
    position: fixed;
    z-index: 45;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(8, 35, 31, 0.32);
  }

  .mobile-apply-bar span {
    display: grid;
    gap: 1px;
  }

  .mobile-apply-bar small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .mobile-apply-bar strong {
    font-size: 13px;
  }

  .case-modal {
    width: calc(100vw - 24px);
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    padding-inline-start: 2px;
  }

  .document-stage {
    min-height: 455px;
  }

  .document-frame,
  .document-frame img {
    min-height: 315px;
    height: 315px;
  }

  .case-featured .case-image {
    height: 250px;
  }
}

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