/* Geteilte Styles für die Länderseiten */

:root {
  --c-accent: #c1622f;
  --c-accent-soft: #f0a47a;
  --c-bg: #faf6f0;
  --c-bg-tint: rgba(193, 98, 47, 0.06);
  --c-ink: #0f1d2e;
  --c-ink-soft: #4a5f7a;
  --c-line: rgba(15, 29, 46, 0.10);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

body.theme-au {
  --c-accent: #c1622f;
  --c-accent-soft: #f0a47a;
  --c-accent-rgb: 193, 98, 47;
  --c-bg: #faf3e8;
  --c-bg-tint: rgba(193, 98, 47, 0.07);
  --c-deep: #1b3a5c;
}
body.theme-nz {
  --c-accent: #2d5a3d;
  --c-accent-soft: #4a7c59;
  --c-accent-rgb: 45, 90, 61;
  --c-bg: #f0f5f0;
  --c-bg-tint: rgba(45, 90, 61, 0.07);
  --c-deep: #1a2e1a;
}
body.theme-ca {
  --c-accent: #c41e3a;
  --c-accent-soft: #e07380;
  --c-accent-rgb: 196, 30, 58;
  --c-bg: #fbf3f3;
  --c-bg-tint: rgba(196, 30, 58, 0.06);
  --c-deep: #4a1218;
}
body.theme-th {
  --c-accent: #b87514;
  --c-accent-soft: #dea84a;
  --c-accent-rgb: 184, 117, 20;
  --c-bg: #fdf8ed;
  --c-bg-tint: rgba(184, 117, 20, 0.07);
  --c-deep: #3d2209;
}
body.theme-jp {
  --c-accent: #b8456a;
  --c-accent-soft: #d98ab0;
  --c-accent-rgb: 184, 69, 106;
  --c-bg: #fdf5f8;
  --c-bg-tint: rgba(184, 69, 106, 0.06);
  --c-deep: #4a1230;
}
body.theme-ar {
  --c-accent: #1a75a8;
  --c-accent-soft: #4a9fc8;
  --c-accent-rgb: 26, 117, 168;
  --c-bg: #f0f7fc;
  --c-bg-tint: rgba(26, 117, 168, 0.06);
  --c-deep: #0a2d44;
}
body.theme-us {
  --c-accent: #2c4a7c;
  --c-accent-soft: #5a7ba8;
  --c-accent-rgb: 44, 74, 124;
  --c-bg: #f4f6fa;
  --c-bg-tint: rgba(44, 74, 124, 0.06);
  --c-deep: #142640;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* ---------- Country Background (atmospheric layer) ---------- */
.country-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.cbg-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(240, 164, 122, 0.18) 0%,
      rgba(250, 243, 232, 0) 40%,
      rgba(193, 98, 47, 0.06) 85%,
      rgba(193, 98, 47, 0.12) 100%);
}
.cbg-sun {
  position: absolute;
  top: 4%;
  right: 8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 164, 122, 0.45) 0%, rgba(240, 164, 122, 0.15) 40%, transparent 70%);
  filter: blur(2px);
}
.cbg-haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(193, 98, 47, 0.10) 0%, transparent 60%);
}

/* Outback Hills */
.cbg-outback {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  color: var(--c-accent);
  opacity: 0.16;
  pointer-events: none;
}
.cbg-outback-back {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  height: 240px;
  color: var(--c-accent-soft);
  opacity: 0.14;
  pointer-events: none;
}

/* Kangaroos — silhouettes scattered in outback area */
.cbg-roo {
  position: absolute;
  color: var(--c-accent);
  opacity: 0.32;
}
.cbg-roo-1 {
  bottom: 95px;
  left: 18%;
  width: 50px;
  height: 50px;
  opacity: 0.4;
}
.cbg-roo-2 {
  bottom: 130px;
  right: 14%;
  width: 36px;
  height: 36px;
  opacity: 0.28;
  transform: scaleX(-1);
}
.cbg-roo-3 {
  bottom: 110px;
  left: 56%;
  width: 28px;
  height: 28px;
  opacity: 0.22;
}

@media (max-width: 760px) {
  .cbg-sun { width: 180px; height: 180px; }
  .cbg-roo-1 { width: 38px; height: 38px; left: 8%; }
  .cbg-roo-2 { width: 28px; height: 28px; right: 10%; }
  .cbg-roo-3 { display: none; }
}

/* ---------- NZ Background — Mountains, Hills, Sheep ---------- */
.cbg-nz-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(180, 200, 210, 0.10) 0%,
      rgba(245, 248, 245, 0) 35%,
      rgba(74, 124, 89, 0.03) 70%,
      rgba(45, 90, 61, 0.06) 100%);
}
.cbg-clouds {
  position: absolute;
  top: 6%;
  left: 0;
  width: 100%;
  height: 100px;
  opacity: 0.30;
  pointer-events: none;
}
.cbg-mountains {
  position: absolute;
  bottom: 130px;
  left: 0;
  width: 100%;
  height: 150px;
  opacity: 0.18;
  pointer-events: none;
}
.cbg-hills-back {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 150px;
  color: var(--c-accent-soft);
  opacity: 0.14;
  pointer-events: none;
}
.cbg-hills {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  color: var(--c-accent);
  opacity: 0.16;
  pointer-events: none;
}
.cbg-sheep {
  position: absolute;
  color: #f5f1e8;
  pointer-events: none;
}
.cbg-sheep-1 {
  bottom: 18px;
  left: 18%;
  width: 50px;
  height: 36px;
  opacity: 0.55;
}
.cbg-sheep-2 {
  bottom: 70px;
  right: 14%;
  width: 38px;
  height: 28px;
  opacity: 0.45;
  transform: scaleX(-1);
}
.cbg-sheep-3 {
  bottom: 32px;
  left: 56%;
  width: 30px;
  height: 22px;
  opacity: 0.38;
}

@media (max-width: 760px) {
  .cbg-mountains { bottom: 90px; height: 110px; }
  .cbg-hills-back { bottom: 30px; height: 120px; }
  .cbg-hills { height: 90px; }
  .cbg-sheep-1 { width: 38px; height: 28px; left: 8%; bottom: 12px; }
  .cbg-sheep-2 { width: 30px; height: 22px; right: 10%; bottom: 50px; }
  .cbg-sheep-3 { display: none; }
  .cbg-clouds { height: 70px; }
}

/* ---------- CA Background — Rockies, Pines, Bison ---------- */
.cbg-ca-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(180, 200, 215, 0.10) 0%,
      rgba(245, 235, 220, 0) 35%,
      rgba(196, 30, 58, 0.03) 70%,
      rgba(196, 30, 58, 0.07) 100%);
}
.cbg-rockies {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  height: 130px;
  color: var(--c-accent);
  opacity: 0.14;
  pointer-events: none;
}
.cbg-pines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: var(--c-accent);
  opacity: 0.13;
  pointer-events: none;
}
.cbg-bison {
  position: absolute;
  color: #3a2818;
  pointer-events: none;
}
.cbg-bison-1 {
  bottom: 18px;
  left: 16%;
  width: 70px;
  height: 50px;
  opacity: 0.50;
}
.cbg-bison-2 {
  bottom: 78px;
  right: 12%;
  width: 50px;
  height: 36px;
  opacity: 0.34;
  transform: scaleX(-1);
}
.cbg-bison-3 {
  bottom: 38px;
  left: 60%;
  width: 38px;
  height: 28px;
  opacity: 0.28;
}

@media (max-width: 760px) {
  .cbg-rockies { bottom: 50px; height: 90px; }
  .cbg-pines { height: 56px; }
  .cbg-bison-1 { width: 50px; height: 36px; left: 8%; bottom: 12px; }
  .cbg-bison-2 { width: 38px; height: 28px; right: 8%; bottom: 56px; }
  .cbg-bison-3 { display: none; }
}

/* ---------- Feature-Highlight-Sektion (Sprachführer auf TH) ---------- */
.feature-highlight {
  background: linear-gradient(180deg, rgba(var(--c-accent-rgb), 0.06) 0%, rgba(var(--c-accent-rgb), 0.10) 100%);
  border-top: 1px solid rgba(var(--c-accent-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--c-accent-rgb), 0.12);
  position: relative;
}
.feature-highlight h2 {
  color: var(--c-accent);
}
.phrase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 8px;
}
.phrase-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phrase-de {
  font-size: 13px;
  color: var(--c-ink-soft);
  letter-spacing: 0.02em;
}
.phrase-th-script {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--c-ink);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2px;
}
.phrase-th-pron {
  font-size: 14px;
  color: var(--c-accent);
  font-style: italic;
  font-weight: 500;
}
@media (max-width: 720px) {
  .phrase-grid { grid-template-columns: 1fr; }
}

/* ---------- TH Background — Karst, Palms, Elephants ---------- */
.cbg-th-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(180, 200, 215, 0.10) 0%,
      rgba(253, 248, 237, 0) 35%,
      rgba(184, 117, 20, 0.04) 70%,
      rgba(184, 117, 20, 0.08) 100%);
}
.cbg-karst {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  height: 130px;
  color: var(--c-accent);
  opacity: 0.14;
  pointer-events: none;
}
.cbg-palms {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  color: var(--c-accent);
  opacity: 0.16;
  pointer-events: none;
}
.cbg-elephant {
  position: absolute;
  color: #4a3520;
  pointer-events: none;
}
.cbg-elephant-1 {
  bottom: 22px;
  left: 14%;
  width: 80px;
  height: 60px;
  opacity: 0.42;
}
.cbg-elephant-2 {
  bottom: 86px;
  right: 11%;
  width: 56px;
  height: 42px;
  opacity: 0.30;
  transform: scaleX(-1);
}
.cbg-elephant-3 {
  bottom: 40px;
  left: 58%;
  width: 42px;
  height: 32px;
  opacity: 0.24;
}

@media (max-width: 760px) {
  .cbg-karst { bottom: 50px; height: 90px; }
  .cbg-palms { height: 60px; }
  .cbg-elephant-1 { width: 56px; height: 42px; left: 6%; bottom: 14px; }
  .cbg-elephant-2 { width: 42px; height: 32px; right: 8%; bottom: 60px; }
  .cbg-elephant-3 { display: none; }
}

/* ---------- JP Background — Fuji, Hills, Cranes, Sakura ---------- */
.cbg-jp-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(216, 138, 176, 0.10) 0%,
      rgba(253, 245, 248, 0) 40%,
      rgba(184, 69, 106, 0.04) 75%,
      rgba(184, 69, 106, 0.07) 100%);
}
.cbg-fuji {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  height: 160px;
  color: var(--c-accent);
  opacity: 0.13;
  pointer-events: none;
}
.cbg-jp-hills {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: var(--c-accent);
  opacity: 0.13;
  pointer-events: none;
}
.cbg-crane {
  position: absolute;
  color: #2a1820;
  pointer-events: none;
}
.cbg-crane-1 {
  bottom: 18px;
  left: 14%;
  width: 64px;
  height: 60px;
  opacity: 0.40;
}
.cbg-crane-2 {
  bottom: 80px;
  right: 12%;
  width: 50px;
  height: 46px;
  opacity: 0.30;
  transform: scaleX(-1);
}
.cbg-crane-3 {
  bottom: 36px;
  left: 60%;
  width: 38px;
  height: 36px;
  opacity: 0.24;
}
.cbg-sakura {
  position: absolute;
  color: var(--c-accent);
  pointer-events: none;
}
.cbg-sakura-1 { top: 12%; left: 22%; width: 14px; height: 14px; opacity: 0.30; transform: rotate(15deg); }
.cbg-sakura-2 { top: 18%; right: 28%; width: 10px; height: 10px; opacity: 0.22; transform: rotate(-30deg); }
.cbg-sakura-3 { top: 28%; left: 46%; width: 12px; height: 12px; opacity: 0.18; transform: rotate(45deg); }
.cbg-sakura-4 { top: 8%; right: 14%; width: 16px; height: 16px; opacity: 0.26; transform: rotate(-10deg); }
.cbg-sakura-5 { top: 36%; right: 8%; width: 11px; height: 11px; opacity: 0.16; transform: rotate(60deg); }

@media (max-width: 760px) {
  .cbg-fuji { bottom: 50px; height: 110px; }
  .cbg-jp-hills { height: 56px; }
  .cbg-crane-1 { width: 50px; height: 46px; left: 6%; bottom: 14px; }
  .cbg-crane-2 { width: 38px; height: 36px; right: 8%; bottom: 56px; }
  .cbg-crane-3 { display: none; }
  .cbg-sakura-3, .cbg-sakura-5 { display: none; }
}

/* ---------- AR Background — Andes, Pampas, Llamas ---------- */
.cbg-ar-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(180, 200, 220, 0.10) 0%,
      rgba(240, 247, 252, 0) 35%,
      rgba(26, 117, 168, 0.04) 70%,
      rgba(26, 117, 168, 0.08) 100%);
}
.cbg-andes {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  height: 150px;
  color: var(--c-accent);
  opacity: 0.14;
  pointer-events: none;
}
.cbg-pampas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: var(--c-accent);
  opacity: 0.13;
  pointer-events: none;
}
.cbg-llama {
  position: absolute;
  color: #3a2a20;
  pointer-events: none;
}
.cbg-llama-1 {
  bottom: 18px;
  left: 14%;
  width: 64px;
  height: 56px;
  opacity: 0.42;
}
.cbg-llama-2 {
  bottom: 80px;
  right: 12%;
  width: 50px;
  height: 44px;
  opacity: 0.30;
  transform: scaleX(-1);
}
.cbg-llama-3 {
  bottom: 36px;
  left: 60%;
  width: 38px;
  height: 34px;
  opacity: 0.24;
}

@media (max-width: 760px) {
  .cbg-andes { bottom: 50px; height: 110px; }
  .cbg-pampas { height: 56px; }
  .cbg-llama-1 { width: 50px; height: 44px; left: 6%; bottom: 14px; }
  .cbg-llama-2 { width: 38px; height: 34px; right: 8%; bottom: 56px; }
  .cbg-llama-3 { display: none; }
}

/* ---------- US Background — Mesas, Desert Hills, Bald Eagles ---------- */
.cbg-us-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(232, 168, 132, 0.10) 0%,
      rgba(244, 246, 250, 0) 35%,
      rgba(44, 74, 124, 0.04) 70%,
      rgba(44, 74, 124, 0.08) 100%);
}
.cbg-mesas {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  height: 130px;
  color: var(--c-accent);
  opacity: 0.14;
  pointer-events: none;
}
.cbg-desert-hills {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: var(--c-accent);
  opacity: 0.13;
  pointer-events: none;
}
.cbg-eagle {
  position: absolute;
  color: #2a2218;
  pointer-events: none;
}
.cbg-eagle-1 {
  top: 12%;
  left: 14%;
  width: 90px;
  height: 44px;
  opacity: 0.32;
}
.cbg-eagle-2 {
  top: 22%;
  right: 16%;
  width: 70px;
  height: 36px;
  opacity: 0.26;
  transform: scaleX(-1);
}
.cbg-eagle-3 {
  top: 30%;
  left: 56%;
  width: 50px;
  height: 26px;
  opacity: 0.20;
}

@media (max-width: 760px) {
  .cbg-mesas { bottom: 50px; height: 90px; }
  .cbg-desert-hills { height: 56px; }
  .cbg-eagle-1 { width: 70px; height: 36px; left: 6%; }
  .cbg-eagle-2 { width: 56px; height: 28px; right: 8%; }
  .cbg-eagle-3 { display: none; }
}
a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
.country-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
}
.country-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.back-link {
  font-size: 14px;
  color: var(--c-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.back-link:hover { color: var(--c-accent); text-decoration: none; }
.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}
.brand-mini-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-soft));
}

/* Hero */
.country-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.country-hero .container {
  position: relative;
  z-index: 1;
}
.flag-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--c-accent);
  color: var(--c-accent);
  margin-bottom: 24px;
}
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--c-ink);
}
.hero-mood {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--c-accent);
  margin: 0 0 22px;
}
.hero-lede {
  font-size: 18px;
  color: var(--c-ink-soft);
  max-width: 620px;
  margin: 0;
}

/* Hero-Hintergrund */
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--c-bg-tint) 0%, transparent 100%);
  z-index: 0;
}

/* Sections */
.country-section {
  padding: 56px 0;
  border-top: 1px solid var(--c-line);
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin: 0 0 16px;
}
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 8px;
}
p { color: var(--c-ink-soft); margin: 0 0 14px; }

/* Card-Grids */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.info-card {
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.info-card p { margin: 0; font-size: 15px; }

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.fact {
  text-align: center;
  padding: 22px 16px;
  background: var(--c-bg-tint);
  border-radius: 10px;
}
.fact-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.fact-label {
  font-size: 13px;
  color: var(--c-ink-soft);
}

/* Visa Main Cards (417 + 462) */
.visa-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 28px 0 18px;
}
.visa-card {
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.visa-card-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.visa-card-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.visa-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-ink);
}
.visa-card-target {
  font-size: 14px;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.5;
}
.visa-card-target strong {
  color: var(--c-ink);
}
.visa-card-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.visa-card-points li {
  font-size: 14px;
  color: var(--c-ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.visa-card-points li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.visa-card-points li strong {
  color: var(--c-ink);
  font-weight: 600;
}
.visa-card-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.vf {
  text-align: center;
  padding: 12px 8px;
  background: var(--c-bg-tint);
  border-radius: 8px;
}
.vf-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-accent);
  line-height: 1.1;
  margin-bottom: 4px;
}
.vf-label {
  display: block;
  font-size: 11px;
  color: var(--c-ink-soft);
  letter-spacing: 0.02em;
}

/* Visa Other (482, 500, 600) */
.visa-other-section {
  background: rgba(255, 255, 255, 0.25);
}
.visa-alt-grid {
  grid-template-columns: repeat(3, 1fr);
}
.visa-alt-card {
  position: relative;
  padding-top: 28px;
}
.visa-alt-tag {
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--c-accent);
  padding: 4px 10px;
  border-radius: 999px;
}
.visa-alt-sub {
  font-weight: 400;
  font-size: 0.7em;
  color: var(--c-ink-soft);
}
.visa-alt-when {
  font-size: 13px;
  color: var(--c-ink-soft);
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--c-line);
  line-height: 1.5;
}
.visa-alt-when strong {
  color: var(--c-ink);
}

@media (max-width: 760px) {
  .visa-main-grid { grid-template-columns: 1fr; }
  .visa-alt-grid { grid-template-columns: 1fr; }
}

/* Insider Tip Block */
.insider-tip {
  margin-top: 24px;
  padding: 28px 28px 22px;
  background: linear-gradient(135deg, rgba(217, 107, 60, 0.08) 0%, rgba(217, 107, 60, 0.03) 100%);
  border: 1px solid rgba(217, 107, 60, 0.25);
  border-left: 4px solid var(--c-accent);
  border-radius: 14px;
  position: relative;
}
.insider-tip-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-accent);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.insider-tip h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0 0 14px;
  line-height: 1.25;
}
.insider-tip p {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin: 0 0 12px;
}
.insider-tip p strong { color: var(--c-ink); }
.insider-tip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.insider-tip-list li {
  font-size: 14px;
  color: var(--c-ink-soft);
  padding: 12px 14px 12px 32px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  position: relative;
  line-height: 1.5;
}
.insider-tip-list li::before {
  content: '→';
  position: absolute;
  left: 12px;
  top: 12px;
  color: var(--c-accent);
  font-weight: 700;
}
.insider-tip-list li strong { color: var(--c-ink); }
.insider-tip-foot {
  font-size: 13px !important;
  color: var(--c-ink-soft) !important;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid rgba(217, 107, 60, 0.15);
  margin-top: 4px !important;
}

/* Closer */
.country-closer {
  padding: 80px 0 60px;
  text-align: center;
  border-top: 1px solid var(--c-line);
}
.country-closer h2 { margin-bottom: 16px; }
.country-closer p {
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 17px;
}
.btn-back {
  display: inline-block;
  padding: 14px 24px;
  background: var(--c-ink);
  color: var(--c-bg);
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
}
.btn-back:hover { text-decoration: none; opacity: 0.92; }

/* Footer */
.country-footer {
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-ink-soft);
}
.country-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.country-footer em {
  font-family: var(--font-display);
  font-style: italic;
}

/* ---------- Waitlist (auf Länderseiten) ---------- */
.country-waitlist {
  padding: 72px 0 60px;
  text-align: center;
  border-top: 1px solid var(--c-line);
  background: linear-gradient(180deg, var(--c-bg-tint) 0%, transparent 100%);
}
.country-waitlist h2 { margin-bottom: 12px; }
.country-waitlist-sub {
  font-size: 16px;
  color: var(--c-ink-soft);
  max-width: 480px;
  margin: 0 auto 28px;
}
.country-wl-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 12px;
}
.country-wl-input {
  flex: 1;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.8);
  color: var(--c-ink);
  outline: none;
  transition: border-color 150ms;
}
.country-wl-input:focus { border-color: var(--c-accent); }
.country-wl-input::placeholder { color: rgba(74, 95, 122, 0.5); }
.country-wl-btn {
  padding: 13px 20px;
  background: var(--c-accent);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 150ms, transform 120ms;
}
.country-wl-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.country-wl-note {
  font-size: 12px;
  color: var(--c-ink-soft);
  opacity: 0.7;
  margin: 0;
}
.country-wl-success {
  display: none;
  padding: 24px 28px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  max-width: 340px;
  margin: 0 auto 20px;
}
.country-wl-success.is-visible { display: block; }
.country-wl-success p { margin: 4px 0 0; color: var(--c-ink-soft); font-size: 15px; }
.country-wl-success strong { font-size: 18px; color: var(--c-accent); }

/* ---------- Andere Länder ---------- */
.other-countries {
  padding: 64px 0 72px;
  background:
    linear-gradient(180deg, rgba(var(--c-accent-rgb), 0.10) 0%, rgba(var(--c-accent-rgb), 0.16) 100%),
    var(--c-bg);
  border-top: 1px solid rgba(var(--c-accent-rgb), 0.18);
  position: relative;
}
.other-countries::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(var(--c-accent-rgb), 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.other-countries h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-ink-soft);
  margin: 0 0 30px;
}
.other-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--c-line);
  color: var(--c-ink-soft);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms ease, opacity 200ms ease, color 200ms ease, border-color 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  user-select: none;
  backdrop-filter: blur(6px);
}
.carousel-btn:hover {
  background: #fff;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.carousel-btn.is-edge {
  opacity: 0.28;
  pointer-events: none;
}
.other-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.other-grid::-webkit-scrollbar { display: none; }
.other-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 22px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--c-line);
  border-top: 3px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  color: var(--c-ink);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.other-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 29, 46, 0.10);
  text-decoration: none;
}
.other-flag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
}
.other-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--c-ink);
  line-height: 1.1;
}
.other-card p {
  font-size: 13.5px;
  color: var(--c-ink-soft);
  margin: 0 0 20px;
  line-height: 1.5;
  flex: 1;
}
.other-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-accent);
  transition: color 200ms, transform 200ms;
}
.other-card:hover .other-cta {
  color: var(--c-accent);
  transform: translateX(3px);
}
/* Farbiger Rand oben pro Land */
.other-au { border-top-color: #c1622f; }
.other-nz { border-top-color: #2d5a3d; }
.other-ca { border-top-color: #c41e3a; }
.other-th { border-top-color: #b87514; }
.other-jp { border-top-color: #b8456a; }
.other-ar { border-top-color: #1a75a8; }
.other-us { border-top-color: #2c4a7c; }

/* Coming-Soon-Karten — nicht klickbar, gemuted, mit Badge */
.other-card.is-soon {
  position: relative;
  cursor: default;
  opacity: 0.62;
  filter: saturate(0.6);
}
.other-card.is-soon:hover {
  transform: none;
  background: rgba(255,255,255,0.75);
  box-shadow: none;
}
.other-card.is-soon:hover .other-cta {
  transform: none;
}
.other-card.is-soon .other-cta {
  color: var(--c-ink-soft);
  font-style: italic;
}
.soon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 4px 10px;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 720px) {
  .country-hero { padding: 56px 0 40px; }
  .info-grid { grid-template-columns: 1fr; }
  .fact-row { grid-template-columns: 1fr; }
  .country-section { padding: 44px 0; }
  .other-countries { padding: 44px 0 52px; }
  .other-card { flex: 0 0 230px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 18px; }
  .country-wl-form { flex-direction: column; }
  .country-wl-btn { width: 100%; }
}

/* Hinweis-Box */
.note {
  margin-top: 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--c-accent);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--c-ink-soft);
}
.note strong { color: var(--c-ink); }
