:root {
  --ink: #231f1c;
  --ink-soft: #5f5750;
  --paper: #fffaf6;
  --surface: #ffffff;
  --surface-soft: #fff4ec;
  --line: #eadfd6;
  --brand: #fb6a14;
  --brand-dark: #321f16;
  --brand-light: #ffe9d8;
  --accent: #e14e00;
  --accent-soft: #fff0e6;
  --focus: #1268d3;
  --danger: #a2342c;
  --success: #166b4e;
  --shadow-sm: 0 8px 24px rgba(35, 31, 28, 0.08);
  --shadow-lg: 0 30px 80px rgba(35, 31, 28, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max-width: 1200px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--surface);
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

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

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

.section {
  padding-block: clamp(76px, 9vw, 126px);
}

.section-compact {
  padding-block: clamp(56px, 7vw, 92px);
}

.section-light {
  background: var(--surface);
}

.section-dark {
  background: var(--brand-dark);
  color: #fffaf7;
}

.section-mint {
  background: var(--surface-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: #ffbd8d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.03em;
}

.section-lead {
  max-width: 700px;
  margin-bottom: 46px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.availability-note {
  max-width: 630px;
  margin-top: -12px;
  color: #6a5e55;
  font-size: 0.88rem;
  line-height: 1.55;
}

.section-dark .section-lead,
.section-dark .muted {
  color: #d8c6ba;
}

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

.microcopy {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 246, 0.88);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(35, 31, 28, 0.09);
  background: rgba(255, 250, 246, 0.96);
  box-shadow: 0 8px 30px rgba(35, 31, 28, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--brand-dark);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #ff8a3d 0%, #fb6a14 48%, #e14e00 100%);
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.08em;
}

.brand-mark::after {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(35, 31, 28, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 3px;
}

.language-switcher a {
  display: grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #655a52;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.language-switcher a:hover {
  background: rgba(251, 106, 20, 0.1);
  color: var(--brand-dark);
}

.language-switcher a[aria-current="true"] {
  background: var(--brand);
  color: var(--ink);
}

.language-switcher a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.language-switcher-standalone {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 100;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.desktop-nav a,
.header-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 10px 13px;
  color: #4f443d;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover,
.header-link:hover {
  background: rgba(251, 106, 20, 0.1);
  color: var(--brand-dark);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(225, 78, 0, 0.22);
}

.button-primary:hover {
  background: #ff8a3d;
  box-shadow: 0 14px 30px rgba(225, 78, 0, 0.28);
}

.button-secondary {
  border-color: #d5c5ba;
  background: rgba(255, 255, 255, 0.46);
  color: var(--brand-dark);
}

.button-secondary:hover {
  border-color: var(--brand);
  background: #fff;
}

.button-light {
  background: #fff;
  color: var(--brand-dark);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  transform: translateY(0) rotate(45deg);
}

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

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 99;
  max-height: calc(100dvh - var(--header-height));
  overflow: auto;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: grid;
  gap: 4px;
  padding-block: 18px 26px;
}

.mobile-menu a:not(.button) {
  display: flex;
  min-height: 50px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  align-items: center;
  padding-top: calc(var(--header-height) + 58px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  pointer-events: none;
}

.hero::before {
  top: 8%;
  right: -10%;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  background: rgba(255, 233, 216, 0.9);
}

.hero::after {
  bottom: 8%;
  left: -9%;
  width: min(25vw, 330px);
  aspect-ratio: 1;
  background: rgba(255, 194, 150, 0.45);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 6.7vw, 6.5rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.concept-wrap {
  position: relative;
}

.concept-label,
.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(35, 31, 28, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 7px 11px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concept-label {
  position: absolute;
  top: -15px;
  right: 22px;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.concept-label::before,
.preview-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.product-concept {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35, 31, 28, 0.12);
  border-radius: 42px;
  background: #fff4ec;
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow-lg);
}

.app-window {
  overflow: hidden;
  border: 1px solid #eaded5;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(35, 31, 28, 0.1);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f1e8e1;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 800;
}

.app-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #8b390f;
  font-size: 0.74rem;
  font-weight: 800;
}

.app-content {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.country-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  background: var(--brand-dark);
  padding: 16px 18px;
  color: #fff;
}

.country-select span:first-child {
  color: #d8c6ba;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.country-select strong {
  display: block;
  margin-top: 2px;
  font-size: 1.18rem;
}

.flag-dot {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.deadline-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #f1cec1;
  border-radius: 16px;
  background: #fff5f1;
  padding: 13px 14px;
}

.deadline-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #a23d0b;
  font-weight: 900;
}

.deadline-card strong,
.deadline-card span {
  display: block;
}

.deadline-card span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 12px;
}

.checklist-card,
.mini-card {
  border: 1px solid #eee2d9;
  border-radius: 18px;
  background: #fff;
  padding: 15px;
}

.checklist-card > strong,
.mini-card > strong {
  display: block;
  margin-bottom: 11px;
  font-size: 0.86rem;
}

.check-list,
.simple-list,
.service-list,
.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 9px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.check {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 900;
}

.specialist-stack {
  display: grid;
  gap: 8px;
}

.specialist-chip {
  border-radius: 10px;
  background: var(--surface-soft);
  padding: 8px 10px;
  color: #5f4a3e;
  font-size: 0.7rem;
  font-weight: 700;
}

.active-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  background: #eef5ff;
  padding: 13px 14px;
}

.active-task span,
.active-task strong {
  display: block;
}

.active-task span {
  color: #536579;
  font-size: 0.72rem;
}

.status-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #d8e8ff;
  padding: 5px 8px;
  color: #174a91;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.category-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #d7b9a4;
  box-shadow: var(--shadow-sm);
}

.category-icon,
.step-number,
.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 15px;
  background: var(--surface-soft);
  color: var(--brand);
  font-weight: 850;
}

.category-card:nth-child(2) .category-icon,
.category-card:nth-child(5) .category-icon {
  background: var(--accent-soft);
  color: #a23d0b;
}

.simple-list {
  display: grid;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(24px, 3vw, 36px);
}

.step-number {
  margin-bottom: 56px;
  background: var(--brand-dark);
  color: #fff;
}

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

.step-visual {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  min-height: 118px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  padding: 18px;
}

.destination-row,
.need-row,
.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-line {
  height: 2px;
  flex: 1;
  background: repeating-linear-gradient(
    90deg,
    var(--brand) 0 5px,
    transparent 5px 10px
  );
}

.destination-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 4px solid var(--brand-light);
  border-radius: 50%;
  background: var(--brand);
}

.need-row {
  flex-wrap: wrap;
}

.need-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.need-chip.is-active {
  border-color: var(--brand);
  background: var(--brand-light);
  color: var(--brand-dark);
}

.action-row {
  justify-content: space-between;
}

.action-copy span,
.action-copy strong {
  display: block;
}

.action-copy span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.action-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
}

.compass-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(52px, 8vw, 108px);
}

.compass-copy .section-lead {
  margin-bottom: 26px;
}

.disclaimer {
  max-width: 600px;
  border-left: 2px solid #b9a79b;
  padding-left: 16px;
  color: #74665c;
  font-size: 0.82rem;
}

.section-dark .disclaimer {
  border-color: #b9a79b;
  color: #d8c6ba;
}

.compass-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: #3b2115;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.prompt-bubble {
  max-width: 84%;
  margin-bottom: 24px;
  margin-left: auto;
  border-radius: 22px 22px 6px;
  background: #fff;
  padding: 16px 18px;
  color: var(--brand-dark);
  font-weight: 650;
}

.plan-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
}

.plan-card > span {
  display: block;
  margin-bottom: 13px;
  color: #cbb6a9;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plan-card .check-list {
  gap: 12px;
}

.plan-card .check-list li {
  color: #fff5ee;
  font-size: 0.92rem;
}

.plan-card .check {
  background: #c85a19;
  color: #ffe0ca;
}

.trust-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  margin: 0 0 24px;
  border-radius: 38px;
  background: var(--brand-dark);
}

.trust-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 34%,
    rgba(35, 31, 28, 0.12) 55%,
    rgba(35, 17, 8, 0.88) 100%
  );
  content: "";
}

.trust-visual img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.trust-visual figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 5vw, 68px);
  bottom: clamp(28px, 5vw, 62px);
  width: min(38%, 420px);
  color: #fff;
}

.trust-visual figcaption > span {
  color: #ffbd8d;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-visual h3 {
  margin: 12px 0;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.trust-visual p {
  margin: 0;
  color: #f1dfd3;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.provider-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 24px;
  color: var(--ink);
}

.provider-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.provider-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--brand);
  font-weight: 850;
}

.provider-card:nth-child(2) .provider-avatar {
  background: #eef1ff;
  color: #4658a4;
}

.provider-card:nth-child(3) .provider-avatar {
  background: var(--accent-soft);
  color: #a23d0b;
}

.provider-card h3 {
  margin-bottom: 8px;
}

.provider-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.provider-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.tag {
  border-radius: 999px;
  background: var(--paper);
  padding: 6px 9px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 40px;
  padding: 0;
  list-style: none;
}

.catalog-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 13px;
  color: #5e4b40;
  font-size: 0.84rem;
  font-weight: 650;
}

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

.country-card {
  position: relative;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: #3b2115;
  padding: 30px;
}

.country-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(255, 255, 255, 0.035),
    0 0 0 60px rgba(255, 255, 255, 0.025);
  content: "";
}

.country-card:nth-child(2) {
  background: #49372f;
}

.country-card.is-next {
  border-color: #d8c6ba;
  background: transparent;
}

.country-card.is-next::after {
  border-color: rgba(255, 255, 255, 0.18);
}

.country-code {
  color: #ffc296;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.country-card:nth-child(2) .country-code {
  color: #f0ba9f;
}

.country-card h3 {
  position: relative;
  z-index: 1;
  max-width: 250px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.country-card p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0;
  color: #d8c6ba;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 28px 0 30px;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.benefit-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.partner-types {
  max-width: 560px;
  color: #74665c;
  font-size: 0.82rem;
}

.partner-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-sm);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.form-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8c8bd;
  border-radius: 12px;
  background: #fffdfb;
  color: var(--ink);
  padding: 12px 13px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.field input,
.field select {
  min-height: 48px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--focus);
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 104, 211, 0.14);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.form-footer .microcopy {
  max-width: 300px;
  margin: 0;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-status a {
  font-weight: 800;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.clipboard-helper {
  position: fixed;
  top: -9999px;
  left: -9999px;
}

.intelligence-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(28px, 6vw, 68px);
}

.intelligence-card h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.intel-visual {
  position: relative;
  min-height: 240px;
}

.intel-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border: 1px solid #d4b8a5;
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255, 233, 216, 0.58),
    0 0 0 68px rgba(255, 233, 216, 0.3);
}

.intel-ring::before,
.intel-ring::after {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: var(--shadow-sm);
  content: "";
}

.intel-ring::before {
  top: 9px;
  right: 18px;
}

.intel-ring::after {
  bottom: 23px;
  left: -7px;
  background: var(--accent);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  background: var(--brand-dark);
  padding: clamp(44px, 8vw, 96px);
  color: #fff;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -170px;
  left: -110px;
  width: 400px;
  height: 400px;
}

.final-cta::after {
  right: -150px;
  bottom: -260px;
  width: 520px;
  height: 520px;
}

.final-cta h2,
.final-cta p,
.final-cta .cta-row {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.final-cta h2 {
  max-width: 860px;
}

.final-cta p {
  max-width: 620px;
  color: #e1cbbd;
  font-size: 1.1rem;
}

.final-cta .cta-row {
  justify-content: center;
  margin-top: 30px;
}

.final-cta .button-light {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(225, 78, 0, 0.22);
}

.final-cta .button-light:hover {
  background: #ff8a3d;
}

.site-footer {
  padding-block: 64px 34px;
  background: #231a16;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 20px;
  color: #c9b6a8;
  font-size: 0.9rem;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  background: #fff;
  color: var(--ink);
}

.site-footer .brand-mark::after {
  border-color: #231a16;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #bfa99a;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #fff4ec;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bca99c;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  padding-top: calc(var(--header-height) + 96px);
  padding-bottom: clamp(64px, 8vw, 110px);
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(3.1rem, 7vw, 6rem);
}

.page-hero .section-lead {
  margin-bottom: 0;
}

.page-section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
}

.page-section-grid > h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: clamp(22px, 3.5vw, 34px);
}

.content-card p:last-child,
.content-card ul:last-child {
  margin-bottom: 0;
}

.content-card ul {
  padding-left: 20px;
  color: var(--ink-soft);
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-page-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 28px;
}

.service-icon {
  margin-bottom: 46px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 52px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.notice {
  border: 1px solid #d5bf83;
  border-radius: var(--radius-sm);
  background: #fff8df;
  padding: 18px 20px;
  color: #594a1f;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-weight: 800;
}

/* The public homepage uses a campaign-led composition: one promise, one
   original image and one clear action per viewport. */
.hero {
  min-height: auto;
  padding: calc(var(--header-height) + 22px) 0 34px;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-stage {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100svh - var(--header-height) - 42px));
  overflow: hidden;
  align-items: center;
  border-radius: 38px;
  background:
    linear-gradient(
      90deg,
      rgba(83, 25, 2, 0.96) 0%,
      rgba(198, 57, 0, 0.88) 38%,
      rgba(225, 78, 0, 0.2) 62%,
      rgba(35, 31, 28, 0.06) 100%
    ),
    url("/assets/reloky-life-abroad-hero-v2.webp") center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(101, 39, 7, 0.2);
  color: #fff;
}

.hero-stage::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(35, 17, 8, 0.44));
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(58%, 710px);
  padding: clamp(42px, 6vw, 78px);
}

.hero-copy > p.hero-kicker {
  display: inline-flex;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(83, 25, 2, 0.2);
  padding: 8px 13px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  color: #fff;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.7rem, 6.5vw, 6.6rem);
  line-height: 0.93;
  text-wrap: balance;
}

.hero-copy > p.hero-lead {
  max-width: 550px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.45;
}

.button-hero {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(66, 20, 2, 0.22);
}

.button-hero:hover {
  background: var(--paper);
}

.button-hero-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(83, 25, 2, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-hero-secondary:hover {
  border-color: #fff;
  background: rgba(83, 25, 2, 0.28);
}

.hero-plan {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: min(310px, 36%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 25px;
  background: rgba(255, 250, 246, 0.9);
  padding: 20px;
  box-shadow: 0 20px 50px rgba(35, 17, 8, 0.22);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.hero-plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-plan-topline span,
.journey-label {
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-plan-topline strong {
  border-radius: 999px;
  background: var(--brand-light);
  padding: 5px 9px;
  font-size: 0.75rem;
}

.hero-plan > p {
  margin-bottom: 11px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-plan ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-plan li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-plan li span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 900;
}

.value-strip {
  padding: 16px 0 34px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.value-grid > div {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.value-grid > div:last-child {
  border-right: 0;
}

.value-grid strong {
  color: var(--brand);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.value-grid span {
  font-weight: 750;
  line-height: 1.2;
}

.journey-switcher {
  margin-bottom: 36px;
  border-radius: 32px;
  background: var(--brand-dark);
  padding: 12px;
  color: #fff;
}

.journey-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.journey-tabs::-webkit-scrollbar {
  display: none;
}

.journey-tabs button {
  min-height: 46px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 10px 17px;
  color: #d8c6ba;
  cursor: pointer;
  font-weight: 750;
}

.journey-tabs button[aria-selected="true"] {
  background: var(--brand);
  color: var(--ink);
}

.journey-panel {
  display: flex;
  min-height: 240px;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(251, 106, 20, 0.28),
      transparent 34%
    ),
    #3b2115;
  padding: clamp(26px, 5vw, 52px);
}

.journey-panel > div {
  max-width: 660px;
}

.journey-panel h3 {
  margin: 10px 0 8px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.journey-panel p {
  max-width: 560px;
  color: #d8c6ba;
}

.journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.journey-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff4ec;
  font-size: 0.76rem;
  font-weight: 700;
}

.category-card {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(251, 106, 20, 0.12),
      transparent 36%
    ),
    var(--surface);
}

.mobile-sticky-cta {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  }

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

  .category-card:nth-child(4),
  .category-card:nth-child(5) {
    min-height: 250px;
  }

  .partner-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

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

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 16px) 0 28px;
  }

  .hero-grid,
  .compass-grid,
  .partner-grid,
  .intelligence-card,
  .page-section-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 720px;
  }

  .hero-stage {
    min-height: 720px;
  }

  .hero-copy {
    width: 72%;
  }

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

  .value-grid > div:nth-child(2) {
    border-right: 0;
  }

  .value-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .concept-wrap {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .steps-grid,
  .provider-grid,
  .country-grid,
  .service-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid .step-card:last-child,
  .provider-grid .provider-card:last-child,
  .country-card.is-next {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .compass-grid {
    gap: 48px;
  }

  .partner-grid {
    gap: 48px;
  }

  .intel-visual {
    min-height: 220px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding-block: 64px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.35rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 8px);
  }

  .hero-stage {
    width: calc(100% - 16px);
    min-height: 748px;
    align-items: flex-start;
    border-radius: 26px;
    background:
      linear-gradient(
        180deg,
        rgba(126, 35, 0, 0.96) 0%,
        rgba(225, 78, 0, 0.82) 31%,
        rgba(225, 78, 0, 0.12) 54%,
        rgba(35, 17, 8, 0.76) 100%
      ),
      url("/assets/reloky-life-abroad-hero-v2.webp") 64% center / cover
        no-repeat;
  }

  .hero-stage::after {
    display: none;
  }

  .hero-copy {
    width: 100%;
    padding: 28px 20px;
  }

  .hero-copy > p.hero-kicker {
    margin-bottom: 15px;
    padding: 7px 10px;
    font-size: 0.65rem;
  }

  .hero-copy h1 {
    max-width: 350px;
    margin-bottom: 14px;
    font-size: clamp(3rem, 14.5vw, 4.15rem);
    line-height: 0.91;
  }

  .hero-copy > p.hero-lead {
    max-width: 330px;
    margin-bottom: 19px;
    font-size: 0.96rem;
    line-height: 1.38;
  }

  .hero-actions {
    display: flex;
  }

  .hero-actions .button {
    width: auto;
    min-height: 46px;
    padding: 11px 15px;
    font-size: 0.82rem;
  }

  .hero-plan {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    border-radius: 21px;
    padding: 16px;
  }

  .hero-plan-topline {
    margin-bottom: 10px;
  }

  .hero-plan > p {
    margin-bottom: 8px;
    font-size: 1.02rem;
  }

  .hero-plan ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .hero-plan li {
    align-items: flex-start;
    font-size: 0.67rem;
    line-height: 1.25;
  }

  .hero-plan li span {
    width: 18px;
    height: 18px;
  }

  .value-strip {
    padding: 4px 0 26px;
  }

  .value-grid > div {
    min-height: 76px;
    padding: 14px 10px;
  }

  .value-grid span {
    font-size: 0.79rem;
  }

  .journey-switcher {
    margin-inline: -6px;
    border-radius: 25px;
    padding: 8px;
  }

  .journey-tabs button {
    min-height: 42px;
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .journey-panel {
    min-height: 360px;
    align-items: stretch;
    flex-direction: column;
    padding: 24px 20px 20px;
  }

  .journey-panel h3 {
    font-size: 2.45rem;
  }

  .journey-panel .button {
    width: 100%;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .hero-actions,
  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-notes {
    display: grid;
  }

  .product-concept {
    border-radius: 28px;
    padding: 10px;
  }

  .app-window {
    border-radius: 22px;
  }

  .app-topbar,
  .app-content {
    padding: 14px;
  }

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

  .concept-label {
    right: 12px;
  }

  .category-grid,
  .steps-grid,
  .provider-grid,
  .country-grid,
  .service-page-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    display: flex;
    width: calc(100% + 14px);
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card,
  .category-card:nth-child(4),
  .category-card:nth-child(5) {
    width: min(82vw, 310px);
    min-height: 300px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .category-card,
  .category-card:nth-child(4),
  .category-card:nth-child(5) {
    min-height: 300px;
  }

  .category-icon {
    margin-bottom: 28px;
  }

  .steps-grid .step-card:last-child,
  .provider-grid .provider-card:last-child,
  .country-card.is-next,
  .field-full,
  .footer-brand {
    grid-column: auto;
  }

  .step-card {
    min-height: 350px;
  }

  .prompt-bubble {
    max-width: 94%;
  }

  .trust-visual,
  .trust-visual img {
    min-height: 520px;
  }

  .trust-visual {
    border-radius: 27px;
  }

  .trust-visual::after {
    background: linear-gradient(
      180deg,
      transparent 34%,
      rgba(35, 17, 8, 0.2) 55%,
      rgba(35, 17, 8, 0.94) 100%
    );
  }

  .trust-visual img {
    object-position: 42% center;
  }

  .trust-visual figcaption {
    right: 22px;
    bottom: 24px;
    left: 22px;
    width: auto;
  }

  .trust-visual h3 {
    font-size: 2.3rem;
  }

  .country-card,
  .country-card.is-next {
    min-height: 280px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .form-footer,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .intelligence-card {
    gap: 26px;
  }

  .intel-visual {
    min-height: 200px;
  }

  .final-cta {
    border-radius: 30px;
    padding-inline: 22px;
  }

  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 90;
    display: flex;
    min-height: 52px;
    transform: translateY(calc(100% + 28px));
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: var(--brand);
    padding: 12px 18px;
    box-shadow: 0 14px 36px rgba(95, 29, 2, 0.3);
    color: var(--ink);
    font-weight: 850;
    text-decoration: none;
    opacity: 0;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .mobile-sticky-cta.is-visible {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 380px) {
  .header-inner {
    gap: 10px;
  }

  .brand {
    font-size: 1.15rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  .country-select {
    padding: 13px;
  }

  .partner-form {
    padding: 20px 16px;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .hero-actions,
  .cta-row,
  .partner-form,
  .site-footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  main {
    overflow: visible;
  }
}
