@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #07060d;
  --bg-alt: rgba(12, 10, 22, 0.65);
  --surface: rgba(18, 16, 30, 0.72);
  --surface-hover: rgba(26, 23, 42, 0.85);
  --border: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #fafafa;
  --text-secondary: #b4b0c8;
  --text-muted: #7a7590;
  --accent: #ffffff;
  --violet: #8b5cf6;
  --violet-soft: rgba(139, 92, 246, 0.18);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.12);
  --rose: #f472b6;
  --rose-soft: rgba(244, 114, 182, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --shadow-card:
    0 0 0 1px var(--border),
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow-card-hover:
    0 0 0 1px var(--border-hover),
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(139, 92, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-secondary);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.modal-open { overflow: hidden; }

a { color: var(--text); }

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

/* Atmospheric background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, #1a1040 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 50%, #0c1a3a 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 80%, #1a0f28 0%, transparent 45%),
    linear-gradient(180deg, #0a0814 0%, #07060d 40%, #05040a 100%);
}

.page-bg__mesh {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 75% 15%, rgba(34, 211, 238, 0.14) 0%, transparent 38%),
    radial-gradient(circle at 85% 70%, rgba(244, 114, 182, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 10% 75%, rgba(99, 102, 241, 0.15) 0%, transparent 42%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, 3%) scale(1.04); }
}

.page-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.page-bg__glow--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(139, 92, 246, 0.35);
}

.page-bg__glow--2 {
  width: 400px;
  height: 400px;
  top: 35%;
  right: -100px;
  background: rgba(34, 211, 238, 0.2);
}

.page-bg__glow--3 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -80px;
  background: rgba(244, 114, 182, 0.18);
}

.page-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 15%, transparent 75%);
}

.page-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.site-header,
.hero,
.section,
.cta-band,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 6, 13, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(135deg, #fff 0%, #e8e4ff 100%) !important;
  color: #0a0814 !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.25);
}

.nav-cta:hover { opacity: 0.92; color: #0a0814 !important; }

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw);
  height: 320px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.12);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-muted {
  background: linear-gradient(135deg, #c4b5fd 0%, #67e8f9 50%, #f9a8d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.stat-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #ede9fe 100%);
  color: #0a0814;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  opacity: 0.95;
  box-shadow: 0 6px 32px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

#paises::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 400px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

#paises > .container { position: relative; z-index: 1; }

.section--alt {
  background: var(--bg-alt);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section--alt > .container { position: relative; z-index: 1; }

.section-head { margin-bottom: 2.5rem; }

.section-head--center {
  text-align: center;
}

.section-head--center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1.15;
  font-weight: 800;
}

.section-intro {
  color: var(--text-secondary);
  max-width: 48ch;
  margin: 0;
  font-size: 1.05rem;
}

/* Countries */
.countries-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.country-card {
  position: relative;
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  width: 100%;
  color: inherit;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.08) 0%, transparent 50%, rgba(34, 211, 238, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.country-card:hover::before { opacity: 1; }

.country-card:hover {
  background: var(--surface-hover);
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.country-card > * { position: relative; z-index: 1; }

.country-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.country-flag {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.country-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}

.country-banks {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.country-hint {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Feature cards (steps) */
.steps-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.feature-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.notice-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: rgba(244, 114, 182, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: var(--radius-sm);
  border-left: 3px solid rgba(244, 114, 182, 0.5);
  box-shadow: var(--shadow-card);
}

.notice-card strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.notice-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* CTA */
.cta-band {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 520px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-card);
}

.cta-band h2 {
  color: var(--text);
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-band p {
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}

/* Form */
.form-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), rgba(34, 211, 238, 0.5), transparent);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
  width: 100%;
}

@media (min-width: 600px) {
  .form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  max-width: 100%;
}

.form-group.full { grid-column: 1 / -1; }

.form-group > label:first-child {
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.required::after { content: " *"; color: #f87171; }

input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: rgba(5, 4, 10, 0.6);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

input::placeholder,
textarea::placeholder { color: var(--text-muted); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

select option { background: var(--bg); }

textarea { resize: vertical; min-height: 88px; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  width: 100%;
  max-width: 100%;
}

.radio-group label {
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  white-space: nowrap;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}

.checkbox-group input {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--text);
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

#apply-form {
  width: 100%;
  max-width: 100%;
}

.form-submit {
  width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem;
  font-size: 0.95rem;
}

.form-error {
  color: #f87171;
  font-size: 0.8rem;
  font-weight: 500;
  display: none;
}

.form-group.invalid .form-error { display: block; }

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #f87171; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 700;
}

.form-success h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.3rem;
}

.form-success p {
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 36ch;
  font-size: 0.95rem;
}

#group-experiencia,
#group-binance {
  align-self: start;
}

.form-grid-2 .form-group:not(.full) .radio-group {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.form-wrapper {
  width: 100%;
  max-width: 100%;
}

.form-wrapper.hidden { display: none; }

.form-error-block {
  display: block;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 1rem;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: var(--radius-sm);
}

.form-error-block[hidden] { display: none; }

.form-error-block p {
  margin: 0 0 1rem;
  color: #fca5a5;
  font-size: 0.95rem;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: rgba(18, 16, 30, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: min(500px, 100%);
  max-height: min(88vh, 680px);
  overflow: auto;
  box-shadow:
    var(--shadow-card-hover),
    0 0 80px rgba(139, 92, 246, 0.15);
  transform: translateY(12px);
  transition: transform 0.2s;
}

.modal-overlay.visible .modal { transform: translateY(0); }

.modal-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-flag {
  font-size: 2.25rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.modal-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.modal-banks {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-close {
  background: var(--bg);
  border: 1px solid var(--border);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-secondary);
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.modal-body { padding: 1.25rem 1.5rem 1.5rem; }

.modal-pay {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(34, 211, 238, 0.08) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.15rem;
}

.modal-pay-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.modal-pay-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.modal-reqs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.modal-reqs li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.65rem 0.8rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  line-height: 1.5;
}

.modal-reqs li::before {
  content: "✓";
  color: var(--text-muted);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.modal-cta { width: 100%; }

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 8, 20, 0.8) 100%);
}

.footer-brand {
  color: var(--text);
  font-weight: 600;
  margin: 0 0 0.25rem !important;
}

.site-footer p {
  margin: 0.2rem 0;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 700px) {
  .nav a:not(.nav-cta) { display: none; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-stats { grid-template-columns: 1fr; max-width: 240px; }
  .form-card { padding: 1.35rem; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
}
