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

:root {
  --navy: #07101f;
  --navy-mid: #0d1b33;
  --navy-light: #152444;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-pale: #f5e8c0;
  --cream: #faf7f0;
  --white: #ffffff;
  --text-muted: #8899b4;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(201,168,76,0.2);
  --red: #e05a5a;
  --green: #4caf82;
  --blue-accent: #4a90e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(7,16,31,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  padding: 6px 14px; border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: var(--glass); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important; font-weight: 600 !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.4) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 100px 5% 60px;
  text-align: center;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #1a2f55 0%, var(--navy) 70%);
}

.star-field {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 70%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 85%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 45%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 25%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.hero-globe {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  z-index: 1; opacity: 0.12;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: inset 0 0 80px rgba(74,144,232,0.3), 0 0 80px rgba(201,168,76,0.1);
  background: radial-gradient(circle at 35% 35%, rgba(74,144,232,0.4) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(201,168,76,0.3) 0%, transparent 40%),
              linear-gradient(135deg, rgba(21,36,68,0.8), transparent);
  animation: globe-spin 20s linear infinite;
}

@keyframes globe-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px; padding: 6px 18px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  animation: fade-up 0.8s ease forwards;
}
.hero-badge::before { content: '\1F1EE\1F1F3'; font-size: 1rem; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
  animation: fade-up 0.8s 0.1s ease both;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 580px; margin: 0 auto 36px;
  animation: fade-up 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  animation: fade-up 0.8s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 0.9rem;
  padding: 14px 32px; border-radius: 10px; border: none;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); font-weight: 500; font-size: 0.9rem;
  padding: 14px 32px; border-radius: 10px;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  margin-top: 56px; flex-wrap: wrap;
  animation: fade-up 0.8s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
  display: block;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* COUNTRY TABS */
.section { padding: 80px 5%; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  font-weight: 600;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub { color: var(--text-muted); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

.country-tabs {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.country-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s;
}
.country-tab:hover { border-color: var(--gold); color: var(--gold-pale); }
.country-tab.active {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(232,201,109,0.1));
  border-color: var(--gold); color: var(--gold-light);
}
.country-tab .flag { font-size: 1.1rem; }

.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.visa-card {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 26px;
  cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.visa-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.visa-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.4); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.visa-card:hover::before { opacity: 1; }

.visa-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
.visa-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.2);
}
.visa-badge {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.badge-popular { background: rgba(76,175,130,0.15); color: var(--green); border: 1px solid rgba(76,175,130,0.3); }
.badge-new { background: rgba(74,144,232,0.15); color: var(--blue-accent); border: 1px solid rgba(74,144,232,0.3); }
.badge-complex { background: rgba(224,90,90,0.15); color: var(--red); border: 1px solid rgba(224,90,90,0.3); }

.visa-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--white);
}
.visa-code { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.visa-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 18px; }

.visa-meta { display: flex; gap: 20px; }
.visa-meta-item { display: flex; flex-direction: column; }
.visa-meta-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.visa-meta-value { font-size: 0.82rem; font-weight: 600; color: var(--gold-pale); }

.visa-card-footer {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.visa-detail-btn {
  font-size: 0.78rem; color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  transition: gap 0.2s;
}
.visa-detail-btn:hover { gap: 10px; }
.visa-requirements { font-size: 0.72rem; color: var(--text-muted); }

/* MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(7,16,31,0.92); backdrop-filter: blur(12px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--navy-mid); border: 1px solid var(--glass-border);
  border-radius: 20px; max-width: 740px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.modal-header {
  padding: 28px 32px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 20px; margin-bottom: 0;
}
.modal-close {
  background: rgba(255,255,255,0.08); border: none; border-radius: 8px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); font-size: 1.2rem; transition: all 0.2s;
}
.modal-close:hover { background: rgba(201,168,76,0.2); color: var(--gold); }
.modal-body { padding: 24px 32px 32px; }
.modal-section-title {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px; margin-top: 20px;
}
.modal-desc { font-size: 0.9rem; color: #b0bfd6; line-height: 1.7; }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.req-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: #b0bfd6;
}
.req-list li::before { content: '\2726'; color: var(--gold); font-size: 0.6rem; margin-top: 5px; flex-shrink: 0; }
.timeline-steps { display: flex; flex-direction: column; gap: 0; }
.timeline-step {
  display: flex; gap: 16px; padding: 0 0 20px;
  position: relative;
}
.timeline-step:not(:last-child)::before {
  content: ''; position: absolute;
  left: 15px; top: 32px; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--navy);
}
.step-content { flex: 1; }
.step-title { font-weight: 600; font-size: 0.88rem; margin-bottom: 4px; color: var(--white); }
.step-desc { font-size: 0.8rem; color: var(--text-muted); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 14px;
}
.info-box-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.info-box-value { font-size: 0.9rem; font-weight: 600; color: var(--gold-pale); }

/* AI CHECKER */
#ai-checker {
  background: linear-gradient(135deg, #0d1b33, #07101f);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.ai-checker-wrap {
  max-width: 900px; margin: 0 auto;
  background: var(--navy-mid); border: 1px solid var(--glass-border);
  border-radius: 24px; overflow: hidden;
}

.ai-checker-top {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.ai-badge-large {
  display: flex; align-items: center; gap: 12px;
}
.ai-indicator {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.chat-area {
  height: 420px; overflow-y: auto; padding: 24px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.chat-msg { display: flex; gap: 12px; animation: fade-up 0.3s ease; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.avatar-ai {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 0.75rem;
}
.avatar-user { background: var(--navy-light); border: 1px solid var(--glass-border); font-size: 1rem; }
.chat-bubble {
  max-width: 76%; padding: 12px 16px; border-radius: 14px;
  font-size: 0.85rem; line-height: 1.6;
}
.chat-msg.ai .chat-bubble {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: #c5d4e8; border-radius: 4px 14px 14px 14px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  border: 1px solid rgba(201,168,76,0.3); color: var(--gold-pale);
  border-radius: 14px 4px 14px 14px;
}
.chat-bubble p { margin: 0 0 8px; }
.chat-bubble p:last-child { margin-bottom: 0; }
.chat-bubble .chat-h { margin: 10px 0 6px; color: var(--gold-pale); font-weight: 700; line-height: 1.3; }
.chat-bubble h3.chat-h { font-size: 0.95rem; }
.chat-bubble h4.chat-h { font-size: 0.9rem; }
.chat-bubble h5.chat-h { font-size: 0.85rem; }
.chat-bubble .chat-list { margin: 4px 0 8px; padding-left: 20px; }
.chat-bubble .chat-list li { margin: 2px 0; }
.chat-bubble strong { color: #e8eef9; }
.chat-bubble code { background: rgba(255,255,255,0.08); padding: 1px 5px; border-radius: 4px; font-size: 0.8rem; }
.chat-bubble a { color: var(--gold-light); text-decoration: underline; }
.chat-bubble .chat-table-wrap { overflow-x: auto; margin: 8px 0 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.chat-bubble .chat-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.chat-bubble .chat-table th, .chat-bubble .chat-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); vertical-align: top; }
.chat-bubble .chat-table th { background: rgba(201,168,76,0.12); color: var(--gold-pale); font-weight: 700; white-space: nowrap; }
.chat-bubble .chat-table tr:last-child td { border-bottom: none; }
.chat-bubble .chat-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.chat-bubble-wrap { max-width: 76%; display: flex; flex-direction: column; }
.chat-bubble-wrap .chat-bubble { max-width: 100%; }
.chat-actions { display: flex; gap: 6px; margin-top: 6px; }
.chat-action-btn {
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-pale); padding: 4px 10px; border-radius: 6px; font-size: 0.7rem;
  cursor: pointer; font-weight: 600; transition: background 0.15s;
}
.chat-action-btn:hover { background: rgba(201,168,76,0.25); }

.chat-input-area {
  padding: 20px 32px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 12px; align-items: flex-end;
}
.chat-input-wrap { flex: 1; position: relative; }
#chat-input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 12px 16px; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; resize: none; height: 48px;
  transition: border-color 0.2s;
}
#chat-input:focus { outline: none; border-color: rgba(201,168,76,0.4); }
#chat-input::placeholder { color: var(--text-muted); }

.chat-send {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; cursor: pointer; color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: all 0.2s;
}
.chat-send:hover { transform: scale(1.06); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.quick-chips {
  padding: 0 32px 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.chip {
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem; color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.typing-indicator {
  display: flex; gap: 4px; align-items: center;
  padding: 8px 0;
}
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: bounce 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

/* COMPARISON TABLE */
.comparison-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.comparison-table th, .comparison-table td {
  padding: 14px 18px; text-align: left; font-size: 0.83rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comparison-table th {
  background: rgba(201,168,76,0.05);
  color: var(--gold); font-weight: 600;
  letter-spacing: 0.04em; font-size: 0.75rem; text-transform: uppercase;
  position: sticky; top: 0;
}
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table td:first-child { color: var(--white); font-weight: 500; }
.comparison-table td { color: var(--text-muted); }
.check { color: var(--green); }
.cross { color: var(--red); }
.partial { color: var(--gold); }

/* PROCESS SECTION */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.process-card {
  background: var(--navy-mid); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 24px; position: relative;
  transition: all 0.3s;
}
.process-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; color: rgba(201,168,76,0.12);
  position: absolute; top: 12px; right: 18px; line-height: 1;
}
.process-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.process-title { font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; color: var(--white); }
.process-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--navy-mid); border: 1px solid var(--glass-border);
  border-radius: 14px; overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(201,168,76,0.4); }
.faq-question {
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 500; font-size: 0.9rem;
}
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold); border-radius: 2px; transition: 0.3s;
}
.faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* CTA BANNER */
.cta-banner {
  margin: 0 5% 80px;
  background: linear-gradient(135deg, #152444, #1a2f55);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 24px; padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
  flex-wrap: wrap;
}
.cta-banner::before {
  content: '\2708'; position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  font-size: 8rem; opacity: 0.04; pointer-events: none;
}
.cta-text { flex: 1; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 10px;
}
.cta-sub { color: var(--text-muted); font-size: 0.9rem; }

/* FOOTER */
footer {
  background: #040a14;
  padding: 50px 5% 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; max-width: 240px; line-height: 1.6; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; text-decoration: none; color: var(--text-muted);
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(201,168,76,0.15); color: var(--gold); }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}
.footer-disclaimer { font-size: 0.72rem; color: rgba(136,153,180,0.6); max-width: 600px; margin-top: 8px; }

/* ANIMATIONS */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 72px 0 0; background: var(--navy); padding: 24px 5%; gap: 4px; z-index: 999; }
  .hamburger { display: flex; }
  .hero-globe { display: none; }
  .cta-banner { padding: 36px 28px; }
  .ai-checker-top { flex-direction: column; text-align: center; }
  .chat-area { height: 320px; }
  .chat-input-area, .quick-chips { padding-left: 20px; padding-right: 20px; }
  .modal-body, .modal-header { padding-left: 20px; padding-right: 20px; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-div { display: none; }
  .section { padding: 60px 5%; }
}

/* Colored country badges */
.us-flag { filter: drop-shadow(0 0 4px rgba(74,144,232,0.5)); }
.ca-flag { filter: drop-shadow(0 0 4px rgba(255,80,80,0.5)); }
.uk-flag { filter: drop-shadow(0 0 4px rgba(80,120,220,0.5)); }

.hidden { display: none !important; }

/* notice */
.notice-bar {
  background: linear-gradient(90deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 10px 5%; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.78rem; color: var(--gold-pale); text-align: center;
}
.notice-bar strong { color: var(--gold); }
