/* ============ Design System — Visa Centre ============ */
:root {
  /* Palette — warm cream + forest green + sage + mauve */
  --cream: #faf5e7;
  --cream-2: #f5eed5;
  --cream-3: #ede5c8;
  --ink: #3d5234;           /* dark forest green — headings, body on light */
  --ink-deep: #2c3e26;
  --ink-soft: #5a6f53;
  --muted: #989284;         /* gray-warm secondary text */
  --muted-2: #b5af9f;
  --sage: #84a07a;          /* sage green card */
  --sage-deep: #708c66;
  --mauve: #a89484;         /* dusty mauve card */
  --mauve-deep: #8e7a6c;
  --mauve-cta: #9b8576;
  --mauve-cta-hover: #836d5e;
  --peach: #f4d4ab;
  --peach-mist: #f5e2c4;
  --footer: #3d5234;
  --line: rgba(61, 82, 52, 0.14);
  --line-soft: rgba(61, 82, 52, 0.07);
  --paper: #ffffff;

  /* Type */
  --display: "Unbounded", "Tilda Sans", -apple-system, sans-serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --maxw: 1400px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Radius */
  --r-sm: 14px;
  --r-md: 28px;
  --r-lg: 40px;
  --r-xl: 56px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
img { display: block; max-width: 100%; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.lower { text-transform: lowercase; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: lowercase;
  color: var(--ink);
}

/* ============ Nav ============ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding-top: 24px;
}
.nav.scrolled {
  position: fixed;
  background: rgba(250, 245, 231, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.15;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  color: var(--cream);
  white-space: pre-line;
  transition: color .3s;
}
.nav.scrolled .brand,
.nav.on-light .brand { color: var(--ink); }

.brand-large {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: pre-line;
}

.nav-links {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
}
.nav-link {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  transition: color .25s, opacity .25s;
  position: relative;
  padding: 8px 0;
  text-transform: capitalize;
}
.nav-link.muted { opacity: 0.65; }
.nav.scrolled .nav-link,
.nav.on-light .nav-link { color: var(--ink); }
.nav-link:hover { color: var(--sage); }
.nav.scrolled .nav-link:hover { color: var(--sage-deep); }

.nav-item { position: relative; }
.nav-item .nav-link::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0.6;
  transition: transform .2s;
}
.nav-item:hover .nav-link::after { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 18px 22px;
  min-width: 240px;
  box-shadow: 0 24px 60px -20px rgba(61, 82, 52, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 4px;
  font-size: 16px;
  color: var(--ink);
  text-transform: capitalize;
  border-radius: var(--r-sm);
  transition: color .15s, padding .15s;
}
.dropdown a:hover { color: var(--sage-deep); padding-left: 8px; }
.dropdown a .arr { color: var(--sage-deep); opacity: 0.7; transition: transform .2s; }
.dropdown a:hover .arr { transform: translateX(4px); opacity: 1; }

.nav-channels {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.ch-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s, background .25s;
}
.ch-btn:hover { transform: translateY(-2px) scale(1.05); background: var(--sage-deep); }
.ch-btn svg { width: 20px; height: 20px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: max(100vh, 700px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(80px, 10vw, 130px);
  padding-top: 120px;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg,
      #f4e0c0 0%,
      #efd2a8 28%,
      #d8c4a6 50%,
      #98a59a 72%,
      #6e8474 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 70% 25%, rgba(255, 220, 170, 0.5), transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(80, 110, 90, 0.35), transparent 70%);
}
.hero-mountains {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70%;
  z-index: 1;
  pointer-events: none;
}
.hero-mountains svg { width: 100%; height: 100%; display: block; }
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 30%, rgba(50, 70, 50, 0.18) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero h1 {
  font-size: clamp(72px, 12vw, 220px);
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 100%;
  text-shadow: 0 2px 24px rgba(30, 50, 30, 0.18);
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.45;
  color: rgba(250, 245, 231, 0.92);
  max-width: 860px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px 56px;
  background: var(--mauve-cta);
  color: var(--cream);
  border-radius: var(--r-pill);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .25s, transform .25s, box-shadow .25s;
  text-transform: capitalize;
}
.hero-cta:hover {
  background: var(--mauve-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -16px rgba(61, 82, 52, 0.4);
}

/* ============ Stats strip ============ */
.stats {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.stat {
  text-align: center;
}
.stat .num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.stat .num sup { font-size: 0.6em; }
.stat .divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}
.stat .lbl {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
  max-width: 280px;
  margin: 0 auto;
}

/* ============ Why us — asymmetric card grid ============ */
.why {
  padding: 0 0 clamp(80px, 10vw, 140px);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 20px;
  min-height: 720px;
}
.why-card {
  border-radius: var(--r-xl);
  padding: 44px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.why-card .ico {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  margin-bottom: auto;
}
.why-card .ico svg { width: 100%; height: 100%; stroke: var(--cream); fill: none; stroke-width: 1.4; }
.why-card h3 {
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.05;
  margin-top: 32px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}
.why-card p {
  font-size: 17px;
  line-height: 1.45;
  color: rgba(250, 245, 231, 0.92);
  margin: 0;
  max-width: 360px;
}
.why-card.sage { background: var(--sage); }
.why-card.mauve { background: var(--mauve); }

/* Layout: card-a tall left, b top-mid wide, c bottom-mid, d tall right */
.why-card.a { grid-column: 1; grid-row: 1 / span 2; }
.why-card.b { grid-column: 2; grid-row: 1; }
.why-card.c { grid-column: 2; grid-row: 2; }
.why-card.d { grid-column: 3; grid-row: 1 / span 2; }

/* Card with icon on the right side */
.why-card.icon-right {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 44px 44px;
}
.why-card.icon-right .text { display: flex; flex-direction: column; align-self: flex-start; }
.why-card.icon-right h3 { margin-top: 0; margin-bottom: 18px; }
.why-card.icon-right .ico { margin: 0; align-self: flex-end; }

/* ============ Section heading ============ */
.section-heading {
  text-align: left;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-heading h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.05;
}
.section-heading .lead {
  margin-top: 18px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.5;
}

/* ============ Countries section ============ */
.countries {
  padding: clamp(60px, 8vw, 100px) 0;
}
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.chip {
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  transition: all .2s;
  text-transform: lowercase;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.country-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sage);
  color: var(--cream);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  cursor: pointer;
  transition: transform .35s ease;
  text-decoration: none;
}
.country-card:hover { transform: translateY(-6px); }
.country-card .photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.country-card:hover .photo { transform: scale(1.06); }
.country-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(50, 70, 50, 0.15) 0%, rgba(40, 56, 40, 0.55) 60%, rgba(30, 44, 30, 0.85) 100%);
  pointer-events: none;
}
.country-card > * { position: relative; z-index: 2; }
.country-card .label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  background: rgba(250, 245, 231, 0.18);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  align-self: flex-start;
  text-transform: capitalize;
  color: var(--cream);
}
.country-card .name {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--cream);
  text-shadow:
    0 2px 12px rgba(30, 44, 30, 0.55),
    0 1px 3px rgba(30, 44, 30, 0.7);
}
.country-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
  margin-top: 14px;
  color: var(--cream);
  opacity: 0.9;
}
.country-card .meta .price { font-family: var(--display); font-size: 18px; }
.country-card .arr {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform .25s;
}
.country-card:hover .arr { transform: translate(3px, -3px); }

/* ============ Process / Steps ============ */
.process {
  padding: clamp(60px, 8vw, 100px) 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.proc-step {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform .3s, box-shadow .3s;
}
.proc-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(61, 82, 52, 0.2);
}
.proc-step .num {
  font-family: var(--display);
  font-size: 18px;
  color: var(--sage-deep);
  margin-bottom: auto;
}
.proc-step h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 24px 0 10px;
  line-height: 1.1;
}
.proc-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.proc-step .time {
  margin-top: 14px;
  font-size: 13px;
  color: var(--sage-deep);
  font-family: var(--display);
}

/* ============ Services duo ============ */
.services {
  padding: clamp(60px, 8vw, 100px) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.serv-card {
  border-radius: var(--r-xl);
  padding: 56px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.serv-card.mauve { background: var(--mauve); }
.serv-card.sage { background: var(--sage); }
.serv-card .ico {
  width: 88px; height: 88px;
  margin-bottom: auto;
}
.serv-card .ico svg { width: 100%; height: 100%; stroke: var(--cream); fill: none; stroke-width: 1.3; }
.serv-card h3 {
  font-size: clamp(34px, 3.6vw, 56px);
  color: var(--cream);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-top: 36px;
  margin-bottom: 18px;
}
.serv-card p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(250, 245, 231, 0.92);
  margin: 0 0 28px;
  max-width: 440px;
}
.serv-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 10px;
}
.serv-card .features li {
  font-size: 15px;
  color: rgba(250, 245, 231, 0.86);
  display: flex; gap: 12px; align-items: center;
}
.serv-card .features li::before {
  content: "";
  width: 18px; height: 1px;
  background: rgba(250, 245, 231, 0.6);
  flex-shrink: 0;
}
.serv-card .more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  align-self: flex-start;
  transition: gap .2s, background .25s;
}
.serv-card .more:hover { gap: 18px; background: #fff; }

/* ============ Comparison table ============ */
.compare-section { padding: clamp(60px, 8vw, 100px) 0; }
.compare {
  background: var(--paper);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.compare table {
  width: 100%;
  border-collapse: collapse;
}
.compare th, .compare td {
  padding: 22px 24px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--line-soft);
}
.compare th {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  background: var(--cream-2);
  text-transform: lowercase;
  letter-spacing: -0.01em;
}
.compare td:first-child {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  text-transform: lowercase;
}
.compare td .price { font-weight: 600; color: var(--ink); }
.compare tr:last-child td { border-bottom: none; }
.compare tr:hover td { background: var(--cream); }

/* ============ Checklist ============ */
.checklist-section { padding: clamp(60px, 8vw, 100px) 0; }
.checklist-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.checklist-card .head h3 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 500;
}
.checklist-card .head p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 16px;
}
.country-pick {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.country-pick button {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  text-transform: lowercase;
  color: var(--ink-soft);
  transition: all .2s;
}
.country-pick button:hover { color: var(--ink); border-color: var(--ink); }
.country-pick button.active { background: var(--sage); border-color: var(--sage); color: var(--cream); }

.checklist-items {
  display: flex; flex-direction: column; gap: 4px;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: padding .2s;
}
.checklist-item:hover { padding-left: 6px; }
.checklist-item:last-child { border-bottom: none; }
.checklist-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--muted-2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: transparent;
  transition: all .2s;
}
.checklist-item.checked .checklist-check {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--cream);
}
.checklist-item.checked .label-text {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--muted-2);
}
.checklist-item .label-text {
  font-size: 16px;
  color: var(--ink);
  transition: color .2s;
}
.checklist-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.checklist-meta .progress-text { font-size: 14px; color: var(--muted); }
.checklist-meta .progress-bar {
  flex: 1; max-width: 220px;
  height: 6px;
  background: var(--cream-2);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 16px;
}
.checklist-meta .progress-bar-fill {
  height: 100%;
  background: var(--sage);
  transition: width .3s;
}

/* ============ Form ============ */
.form-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-2);
}
.form-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  max-width: 900px;
  margin: 0 auto;
}
.form-progress {
  display: flex; gap: 10px; margin-bottom: 40px;
}
.form-progress .seg {
  flex: 1; height: 4px;
  background: var(--cream-2);
  border-radius: 999px;
  overflow: hidden; position: relative;
}
.form-progress .seg::after {
  content: ""; position: absolute; inset: 0;
  background: var(--sage);
  transform: translateX(-101%);
  transition: transform .5s;
}
.form-progress .seg.done::after,
.form-progress .seg.active::after { transform: translateX(0); }

.form-step-label {
  font-family: var(--display);
  font-size: 13px;
  color: var(--sage-deep);
  margin-bottom: 10px;
  text-transform: lowercase;
  letter-spacing: -0.005em;
}
.form-step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--ink);
  margin: 0 0 36px;
  line-height: 1.05;
  text-transform: lowercase;
}

.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: lowercase;
}
.field input,
.field select {
  width: 100%;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus {
  border-color: var(--sage);
  background: var(--paper);
}
.field input::placeholder { color: var(--muted-2); }
.field.error input, .field.error select { border-color: #c45c50; }
.field-error { font-size: 12px; color: #c45c50; margin-top: 6px; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill {
  padding: 14px 22px;
  background: var(--cream);
  border-radius: var(--r-pill);
  font-size: 15px;
  color: var(--ink-soft);
  transition: all .2s;
  border: 1px solid transparent;
  text-transform: lowercase;
}
.radio-pill:hover { border-color: var(--sage); color: var(--ink); }
.radio-pill.selected {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}

.form-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px;
  gap: 18px;
}
.btn-ghost {
  font-size: 14px;
  color: var(--muted);
  padding: 14px 0;
  transition: color .2s;
  text-transform: lowercase;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost:disabled { opacity: 0.35; cursor: not-allowed; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--mauve-cta);
  color: var(--cream);
  padding: 20px 36px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .25s, transform .25s;
  text-transform: lowercase;
}
.btn-primary:hover { background: var(--mauve-cta-hover); transform: translateY(-2px); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--muted);
  line-height: 1.5;
}
.consent input { margin-top: 3px; accent-color: var(--sage); }
.consent a { color: var(--sage-deep); border-bottom: 1px solid var(--sage-deep); }

.success { text-align: center; padding: 30px 20px; }
.success .seal {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 44px;
  animation: stampIn .5s cubic-bezier(.2,1.4,.5,1) both;
}
@keyframes stampIn {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--ink);
  margin: 0 0 12px;
}
.success p { color: var(--muted); max-width: 460px; margin: 0 auto; }

/* ============ Reviews ============ */
.reviews { padding: clamp(60px, 8vw, 100px) 0; }
.reviews-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: thin;
}
.reviews-rail::-webkit-scrollbar { height: 4px; }
.reviews-rail::-webkit-scrollbar-track { background: var(--cream-2); border-radius: 999px; }
.reviews-rail::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 999px; }

.review-card {
  flex: 0 0 360px;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.review-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.review-head .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}
.review-head .name { font-weight: 600; font-size: 14px; color: var(--ink); }
.review-head .level { font-size: 12px; color: var(--muted); }
.review-rating {
  display: flex; gap: 2px;
  font-size: 14px;
  color: #f1b84a;
}
.review-rating .date { color: var(--muted); margin-left: 10px; font-size: 13px; }
.review-text {
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-controls { display: flex; gap: 10px; }
.review-controls button {
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  transition: all .2s;
}
.review-controls button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.review-controls button:disabled { opacity: 0.3; cursor: not-allowed; }

/* ============ Blog teaser ============ */
.blog-section { padding: clamp(60px, 8vw, 100px) 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(61, 82, 52, 0.18);
}
.blog-card .img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.blog-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.blog-card .meta .tag {
  display: inline-block; padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--sage-deep);
  margin-right: 10px;
}
.blog-card h4 {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; line-height: 1.15; margin: 0 0 12px;
  color: var(--ink);
}
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ============ FAQ ============ */
.faq-section { padding: clamp(60px, 8vw, 100px) 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  color: var(--ink);
  width: 100%;
  text-align: left;
  letter-spacing: -0.015em;
  text-transform: lowercase;
  line-height: 1.2;
}
.faq-q .plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--ink);
  flex-shrink: 0;
  transition: all .3s;
}
.faq-item.open .faq-q .plus {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s, padding .3s;
  opacity: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 760px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  opacity: 1;
  padding-top: 16px;
}

/* ============ Contacts ============ */
.contacts-section { padding: clamp(60px, 8vw, 100px) 0; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contacts-block { margin-bottom: 14px; }
.contacts-block .val {
  font-size: 17px;
  color: var(--ink-soft);
}
.contacts-section h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--ink);
  margin-bottom: 36px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}
.contacts-channels {
  display: flex; gap: 12px; margin-top: 24px;
}
.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 460px;
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============ Footer ============ */
.footer {
  background: var(--footer);
  color: var(--cream);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(250, 245, 231, 0.12);
  align-items: start;
}
.footer .brand-large { color: var(--cream); }
.footer .legal {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(250, 245, 231, 0.55);
  line-height: 1.55;
}
.footer .col h5 {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 14px;
  text-transform: lowercase;
  opacity: 0.9;
  letter-spacing: 0;
}
.footer .col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer .col ul a {
  font-size: 15px;
  color: rgba(250, 245, 231, 0.78);
  transition: color .2s;
  text-transform: capitalize;
}
.footer .col ul a:hover { color: var(--cream); }
.footer-channels { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-channels .ch-btn {
  background: var(--sage-deep);
  width: 44px; height: 44px;
}
.footer-channels .ch-btn:hover { background: var(--sage); }
.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(250, 245, 231, 0.5);
  text-align: center;
}

/* ============ Country page hero ============ */
.country-hero {
  padding-top: 130px;
  padding-bottom: 50px;
}
.country-hero-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 2.7/1;
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
}
.country-hero-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(50, 70, 50, 0.2), rgba(40, 56, 40, 0.4));
}
.country-hero-banner h1 {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 110px);
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: lowercase;
  text-align: center;
}

.country-meta {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px);
  margin-top: 40px;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.country-meta .item { text-align: center; }
.country-meta .item .lbl {
  font-size: 16px; color: var(--muted);
  margin-bottom: 10px;
  text-transform: lowercase;
}
.country-meta .item .val {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.country-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px);
  margin-bottom: clamp(60px, 8vw, 100px);
}
.country-info h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.country-info p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.country-tariffs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.tariff-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px;
}
.tariff-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(40, 56, 40, 0.4));
  z-index: 0;
}
.tariff-card > * { position: relative; z-index: 1; }
.tariff-card .price-tag {
  background: var(--cream);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.tariff-card .gift-tag {
  background: var(--mauve);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tariff-card .tname {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--display);
  color: var(--cream);
  font-size: 28px;
  font-weight: 500;
  z-index: 1;
  text-transform: lowercase;
}

/* ============ Tariff/comparison page-level ============ */
.page-section { padding: clamp(60px, 8vw, 100px) 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px;
  min-height: 220px;
}
.benefit-card h3 {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 500;
}
.benefit-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* ============ Hero social proof ============ */
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(250, 245, 231, 0.28);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(250, 245, 231, 0.5);
  border-radius: var(--r-pill);
  padding: 18px 36px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0;
}
.hero-proof .stars { color: #f5c842; letter-spacing: 3px; font-size: 22px; }
.hero-proof .sep { color: rgba(250, 245, 231, 0.45); font-size: 20px; }

/* ============ Goal Selection ============ */
.goal-section { padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px); }
.goal-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.goal-pill {
  padding: 16px 26px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: var(--body);
  color: var(--ink-soft);
  transition: all .22s;
  text-transform: lowercase;
  letter-spacing: 0;
}
.goal-pill:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.goal-pill.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.goal-detail {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 44px) clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  animation: fadeSlide .28s ease both;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.goal-detail h3 { font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 8px; }
.goal-detail p { color: var(--muted); font-size: 16px; margin: 0; }
@media (max-width: 640px) {
  .goal-detail { grid-template-columns: 1fr; }
}

/* ============ Tools Section ============ */
.tools-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--cream-2);
}
.tools-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tool-tab {
  padding: 14px 24px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: var(--body);
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .2s;
  text-transform: lowercase;
}
.tool-tab:hover { border-color: var(--sage); color: var(--ink); }
.tool-tab.active { background: var(--sage); color: var(--cream); border-color: var(--sage); }

.tool-panel {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .tool-panel { grid-template-columns: 1fr; } }

.tool-form { display: flex; flex-direction: column; gap: 22px; }
.tool-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 9px;
  text-transform: lowercase;
  display: block;
}
.tool-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 15px;
  color: var(--ink);
  font-family: var(--body);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.tool-select:focus { border-color: var(--sage); }
.tool-range { width: 100%; accent-color: var(--sage); }
.tool-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.tool-date-row {
  display: grid;
  grid-template-columns: 1fr 20px 1fr 28px;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.tool-date-row:last-of-type { margin-bottom: 0; }
.tool-date-sep { text-align: center; color: var(--muted-2); font-size: 13px; }
.tool-date-input {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 14px;
  color: var(--ink);
  font-family: var(--body);
  outline: none;
  transition: border-color .2s;
}
.tool-date-input:focus { border-color: var(--sage); }
.tool-remove-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
  font-family: var(--body);
}
.tool-remove-btn:hover { background: #c45c50; color: white; border-color: #c45c50; }
.tool-add-btn {
  padding: 12px 18px;
  border: 1.5px dashed var(--sage);
  border-radius: var(--r-md);
  color: var(--sage-deep);
  font-size: 14px;
  font-family: var(--body);
  font-weight: 500;
  transition: all .2s;
  text-align: center;
  text-transform: lowercase;
}
.tool-add-btn:hover { background: var(--cream); border-style: solid; }

.tool-result {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  justify-content: center;
}
.tool-big-num {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.tool-big-unit { font-size: 0.42em; opacity: 0.55; }
.tool-sublabel { font-size: 15px; color: var(--muted); margin-top: 4px; }
.tool-bar-wrap {
  height: 7px;
  background: var(--cream-2);
  border-radius: 999px;
  overflow: hidden;
}
.tool-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.tool-bar-fill.ok   { background: var(--sage); }
.tool-bar-fill.warn { background: #d4a44a; }
.tool-bar-fill.bad  { background: #c45c50; }
.tool-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.tool-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.tool-risk-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tool-risk-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.tool-risk-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tool-risk-dot.ok   { background: var(--sage); }
.tool-risk-dot.warn { background: #d4a44a; }
.tool-risk-dot.bad  { background: #c45c50; }

/* ============ Packages ============ */
.packages-section { padding: clamp(60px, 8vw, 100px) 0; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card {
  border-radius: var(--r-xl);
  padding: 40px 34px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line-soft);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(61, 82, 52, 0.18);
}
.pkg-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.pkg-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--cream);
  padding: 5px 18px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--body);
  text-transform: lowercase;
  letter-spacing: 0;
}
.pkg-tier {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--muted);
}
.pkg-card.featured .pkg-tier { color: rgba(250,245,231,.5); }
.pkg-name {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.pkg-card.featured .pkg-name { color: var(--cream); }
.pkg-divider {
  height: 1px;
  background: var(--line-soft);
}
.pkg-card.featured .pkg-divider { background: rgba(250,245,231,.12); }
.pkg-price {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.pkg-card.featured .pkg-price { color: var(--cream); }
.pkg-price-note { font-size: 13px; color: var(--muted); margin-top: 3px; }
.pkg-card.featured .pkg-price-note { color: rgba(250,245,231,.5); }
.pkg-desc { font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.pkg-card.featured .pkg-desc { color: rgba(250,245,231,.82); }
.pkg-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 9px;
  flex: 1;
}
.pkg-features li {
  font-size: 14px; line-height: 1.4;
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--ink-soft);
}
.pkg-card.featured .pkg-features li { color: rgba(250,245,231,.88); }
.pkg-features li::before {
  content: "–"; flex-shrink: 0;
  color: var(--sage);
}
.pkg-card.featured .pkg-features li::before { color: rgba(250,245,231,.4); }
.pkg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 26px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--body);
  transition: all .22s;
  border: 1.5px solid var(--line);
  color: var(--ink);
  text-transform: lowercase;
}
.pkg-cta:hover { border-color: var(--sage-deep); color: var(--sage-deep); }
.pkg-card.featured .pkg-cta {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}
.pkg-card.featured .pkg-cta:hover { background: var(--peach-mist); border-color: var(--peach-mist); }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .nav-links { gap: 24px; }
  .nav-links { font-size: 14px; }
  .country-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { padding-top: 140px; min-height: 90vh; }
  .stats-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
  }
  .why-card.a { grid-column: 1 / span 2; grid-row: 1; }
  .why-card.b { grid-column: 1; grid-row: 2; }
  .why-card.c { grid-column: 2; grid-row: 2; }
  .why-card.d { grid-column: 1 / span 2; grid-row: 3; }
  .why-card { padding: 32px; min-height: 280px; }
  .why-card.a, .why-card.d { min-height: 320px; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .country-info { grid-template-columns: 1fr; }
  .country-tariffs { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .checklist-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .country-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card.a, .why-card.b, .why-card.c, .why-card.d {
    grid-column: 1; grid-row: auto;
  }
  .hero h1 { font-size: 52px; }
  .hero-proof { font-size: 14px; padding: 11px 20px; gap: 10px; }
  .hero-proof .stars { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 86vw; }
  .country-meta { gap: 30px; }
}

/* ============ Confirmation grid in multi-step form ============ */
.confirm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

/* ============ Form mobile fixes (≤ 480px) ============ */
@media (max-width: 480px) {
  /* Reduce form-card padding so content has more room */
  .form-card { padding: 24px 20px; }

  /* Confirmation grid: stack to 1 column */
  .confirm-grid { grid-template-columns: 1fr; }

  /* Form heading: smaller to not crowd the step */
  .form-step h3 { font-size: clamp(22px, 6vw, 28px); margin-bottom: 24px; }

  /* Form actions: stack vertically — next/submit below, back above */
  .form-actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .btn-primary { width: 100%; justify-content: center; }
  .btn-ghost { text-align: center; padding: 10px 0; }

  /* Schengen date row: stack entry/exit inputs vertically */
  .tool-date-row {
    grid-template-columns: 1fr 32px;
    grid-template-rows: auto auto;
    gap: 6px 8px;
  }
  .tool-date-row .tool-date-input { grid-column: 1; }
  .tool-date-row .tool-date-sep { display: none; }
  .tool-date-row .tool-remove-btn { grid-column: 2; grid-row: 1 / 3; align-self: center; }

  /* Tool panel: reduce internal padding on small screens */
  .tool-panel { padding: 24px 20px; gap: 28px; }
  .tool-result { padding: 24px 20px; }

  /* Benefits grid: 1 column on small screens */
  .benefits-grid { grid-template-columns: 1fr; }
}
