/* =========================================
   ARCH or SWE — Kurdistan Region Guide
   Complete Stylesheet v2
   ========================================= */

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

:root {
  --arch-gold:    #e8a535;
  --arch-light:   #ffd580;
  --arch-dim:     rgba(232,165,53,0.15);
  --arch-border:  rgba(232,165,53,0.3);
  --swe-cyan:     #22d3ee;
  --swe-purple:   #7c3aed;
  --swe-violet:   #a78bfa;
  --swe-dim:      rgba(34,211,238,0.1);
  --swe-border:   rgba(34,211,238,0.3);
  --emerald:      #10b981;
  --red:          #ef4444;
  --amber:        #f59e0b;

  --bg:           #050811;
  --bg2:          #080d1a;
  --bg3:          #0d1425;
  --card:         #111827;
  --card2:        #1a2235;
  --surface:      #1e2a3a;
  --border:       rgba(255,255,255,0.07);
  --border2:      rgba(255,255,255,0.12);

  --txt:          #f0f6ff;
  --txt2:         #8fa3be;
  --txt3:         #4a6070;

  --grad-arch:    linear-gradient(135deg, #e8a535 0%, #ffd580 100%);
  --grad-swe:     linear-gradient(135deg, #7c3aed 0%, #22d3ee 100%);
  --grad-hero:    linear-gradient(160deg, rgba(5,8,17,0.88) 0%, rgba(5,8,17,0.45) 55%, rgba(5,8,17,0.92) 100%);

  --font-d: 'Outfit', sans-serif;
  --font-b: 'Space Grotesk', sans-serif;
  --max:    1200px;
  --pad:    90px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--bg); color: var(--txt); line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--swe-purple); border-radius: 3px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(5,8,17,0.94); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; letter-spacing: 1px;
  display: flex; align-items: center; gap: 6px;
}
.logo-arch { color: var(--arch-gold); }
.logo-sep  { color: var(--txt3); font-weight: 400; font-size: 0.9rem; }
.logo-swe  { color: var(--swe-cyan); }
.logo-region { color: var(--txt3); font-size: 0.8rem; font-weight: 400; }

.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-link {
  font-family: var(--font-d); font-size: 0.85rem; font-weight: 500;
  color: var(--txt2); text-decoration: none; transition: color 0.2s ease;
}
.nav-link:hover { color: var(--txt); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--txt); border-radius: 1px; transition: all 0.3s ease;
}

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: var(--grad-hero); z-index: 1; }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 110px 24px 80px; width: 100%;
}
.hero-badge {
  display: inline-block; background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.4); color: var(--swe-violet);
  font-family: var(--font-d); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px;
  border-radius: 20px; margin-bottom: 28px;
  animation: fadeDown 0.7s ease both;
}
.hero-title {
  font-family: var(--font-d); font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05; margin-bottom: 24px;
  animation: fadeUp 0.7s 0.15s ease both;
}
.title-highlight {
  background: var(--grad-swe); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--txt2); max-width: 620px;
  margin-bottom: 36px; line-height: 1.75;
  animation: fadeUp 0.7s 0.25s ease both;
}
.hero-subtitle strong { color: var(--swe-cyan); }
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeUp 0.7s 0.35s ease both;
}
.btn {
  font-family: var(--font-d); font-size: 0.95rem; font-weight: 600;
  padding: 13px 28px; border-radius: 8px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--grad-swe); color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.6); }
.btn-ghost {
  background: transparent; color: var(--txt);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.hero-verdict-banner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.5s ease both;
}
.verdict-pill {
  display: flex; align-items: center; gap: 14px; padding: 14px 22px;
  border-radius: 14px; backdrop-filter: blur(16px);
}
.swe-pill { background: rgba(34,211,238,0.1); border: 1px solid var(--swe-border); }
.arch-pill { background: rgba(232,165,53,0.1); border: 1px solid var(--arch-border); }
.pill-icon { font-size: 1.8rem; }
.pill-title { font-family: var(--font-d); font-weight: 700; font-size: 0.95rem; }
.swe-pill .pill-title { color: var(--swe-cyan); }
.arch-pill .pill-title { color: var(--arch-gold); }
.pill-sub { font-size: 0.78rem; color: var(--txt2); }
.verdict-divider {
  font-family: var(--font-d); font-weight: 900; font-size: 1.2rem;
  color: var(--txt3); letter-spacing: 2px;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; color: var(--txt3); letter-spacing: 1px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--arch-gold), transparent);
  animation: scrollPulse 1.5s ease infinite;
}

/* ── CONTEXT BANNER ── */
.context-banner { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.context-inner {
  max-width: var(--max); margin: 0 auto; padding: 24px;
  display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;
}
.context-item { display: flex; align-items: center; gap: 12px; }
.ci-icon { font-size: 1.5rem; }
.ci-label { font-size: 0.72rem; color: var(--txt2); text-transform: uppercase; letter-spacing: 1px; }
.ci-val { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; color: var(--txt); }

/* ── SECTIONS ── */
.section { padding: var(--pad) 24px; }
.section-dark { background: var(--bg2); }
.container { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-family: var(--font-d); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--swe-cyan); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-d); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; margin-bottom: 18px; line-height: 1.1;
}
.section-desc {
  font-size: 1rem; color: var(--txt2); max-width: 620px; margin-bottom: 52px; line-height: 1.75;
}

/* ── OVERVIEW CARDS ── */
.two-col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field-card {
  border-radius: 20px; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.field-card:hover { transform: translateY(-4px); box-shadow: 0 8px 48px rgba(0,0,0,0.4); }
.arch-field { border-color: var(--arch-border); }
.arch-field:hover { box-shadow: 0 8px 48px rgba(232,165,53,0.12); }
.swe-field { border-color: var(--swe-border); }
.swe-field:hover { box-shadow: 0 8px 48px rgba(34,211,238,0.12); }
.field-header {
  display: flex; align-items: center; gap: 16px; padding: 28px 28px 20px;
}
.arch-field .field-header { background: linear-gradient(135deg, rgba(232,165,53,0.1) 0%, transparent 60%); }
.swe-field .field-header { background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, transparent 60%); }
.field-emoji { font-size: 2.5rem; }
.field-name { font-family: var(--font-d); font-size: 1.3rem; font-weight: 800; }
.arch-name { color: var(--arch-gold); }
.swe-name { color: var(--swe-cyan); }
.field-tagline { font-size: 0.82rem; color: var(--txt2); margin-top: 2px; }
.field-body { padding: 0 28px 28px; }
.field-detail-row {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.field-detail-row:last-child { border-bottom: none; }
.detail-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--txt3); }
.detail-val { font-size: 0.9rem; color: var(--txt2); }
.arch-val { color: var(--arch-gold); font-weight: 600; }
.swe-val { color: var(--swe-cyan); font-weight: 600; }

/* ── REALITY GRID ── */
.reality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.reality-block { border-radius: 20px; overflow: hidden; }
.arch-reality { border: 1px solid var(--arch-border); }
.swe-reality  { border: 1px solid var(--swe-border); }
.reality-header {
  padding: 20px 28px; font-family: var(--font-d); font-weight: 700; font-size: 1.05rem;
}
.arch-rh { background: linear-gradient(90deg, rgba(232,165,53,0.15), transparent); color: var(--arch-gold); }
.swe-rh  { background: linear-gradient(90deg, rgba(34,211,238,0.12), transparent); color: var(--swe-cyan); }
.reality-points { background: var(--card); padding: 20px 28px; display: flex; flex-direction: column; gap: 16px; }
.rp-item { display: flex; gap: 12px; align-items: flex-start; }
.rp-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.rp-item div { font-size: 0.88rem; color: var(--txt2); line-height: 1.6; }
.rp-item strong { color: var(--txt); }
.rp-good { padding: 10px; border-radius: 8px; background: rgba(16,185,129,0.04); }
.rp-warn { padding: 10px; border-radius: 8px; background: rgba(245,158,11,0.04); }
.rp-bad  { padding: 10px; border-radius: 8px; background: rgba(239,68,68,0.04); }

/* ── COMPARISON TABLE ── */
.compare-table-wrapper {
  overflow-x: auto; border-radius: 16px;
  border: 1px solid var(--border); box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.compare-table { width: 100%; border-collapse: collapse; background: var(--card); font-size: 0.88rem; }
.compare-table thead { background: var(--surface); }
.compare-table th {
  font-family: var(--font-d); font-weight: 700; padding: 16px 18px;
  text-align: left; font-size: 0.82rem; letter-spacing: 0.5px;
}
.factor-col { color: var(--txt2); }
.arch-th { color: var(--arch-gold); }
.swe-th  { color: var(--swe-cyan); }
.winner-col { color: var(--emerald); }
.compare-table tbody tr { border-top: 1px solid var(--border); transition: background 0.2s; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.025); }
.compare-table td { padding: 13px 18px; vertical-align: middle; }
.factor-cell { color: var(--txt2); font-weight: 500; font-size: 0.85rem; }
.arch-td { color: var(--txt); border-left: 1px solid rgba(232,165,53,0.08); }
.swe-td  { color: var(--txt); border-left: 1px solid rgba(34,211,238,0.08); }
.winner-cell {
  font-family: var(--font-d); font-weight: 700; font-size: 0.8rem;
  border-left: 1px solid var(--border); text-align: center;
}
.swe-win  { color: var(--swe-cyan); }
.arch-win { color: var(--arch-gold); }
.tie-win  { color: var(--txt2); }
.compare-table tfoot tr { border-top: 2px solid var(--border2); background: var(--surface); }
.arch-score { color: var(--arch-gold); font-size: 1rem; }
.swe-score  { color: var(--swe-cyan); font-size: 1rem; }

.bar-mini { width: 80px; height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; margin-bottom: 3px; overflow: hidden; display: inline-block; }
.fill-mini { height: 100%; width: var(--w); border-radius: 2px; }
.arch-fill { background: var(--grad-arch); }
.swe-fill  { background: var(--grad-swe); }

.risk-badge {
  font-size: 0.7rem; font-weight: 700; padding: 3px 8px;
  border-radius: 12px; margin-right: 6px; display: inline-block;
}
.medium-risk { background: rgba(245,158,11,0.15); color: var(--amber); }

.table-note {
  margin-top: 20px; font-size: 0.82rem; color: var(--txt3);
  padding: 14px; border-radius: 8px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

/* ── SALARIES ── */
.salary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.salary-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
}
.arch-salary-card { border-color: var(--arch-border); }
.swe-salary-card  { border-color: var(--swe-border); }
.salary-header {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 28px; font-family: var(--font-d); font-weight: 700; font-size: 1rem;
}
.arch-salary-card .salary-header { background: linear-gradient(90deg, rgba(232,165,53,0.12), transparent); color: var(--arch-gold); }
.swe-salary-card  .salary-header { background: linear-gradient(90deg, rgba(34,211,238,0.1), transparent); color: var(--swe-cyan); }
.salary-header span { font-size: 1.5rem; }
.salary-levels { padding: 20px 28px; display: flex; flex-direction: column; gap: 18px; }
.sal-level {}
.sal-label { font-size: 0.75rem; color: var(--txt2); margin-bottom: 6px; font-weight: 500; }
.sal-bar-wrap { display: flex; align-items: center; gap: 12px; }
.sal-bar {
  height: 7px; width: var(--pct); max-width: 100%;
  border-radius: 4px; transition: width 1.2s ease;
  flex-shrink: 0;
}
.arch-bar { background: var(--grad-arch); }
.swe-bar  { background: var(--grad-swe); }
.sal-amount { font-family: var(--font-d); font-size: 0.88rem; font-weight: 700; color: var(--txt); white-space: nowrap; }
.swe-highlight { color: var(--swe-cyan); }
.salary-note { padding: 14px 28px; font-size: 0.78rem; color: var(--txt3); border-top: 1px solid var(--border); }
.salary-insight {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(34,211,238,0.06); border: 1px solid rgba(34,211,238,0.2);
  border-radius: 14px; padding: 24px;
}
.insight-icon { font-size: 1.8rem; flex-shrink: 0; }
.insight-text { font-size: 0.9rem; color: var(--txt2); line-height: 1.7; }
.insight-text strong { color: var(--txt); }
.insight-text em { color: var(--swe-cyan); font-style: normal; font-weight: 600; }

/* ── FUTURE TIMELINE ── */
.future-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.future-timeline::before {
  content: ''; position: absolute; left: 108px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--arch-gold), var(--swe-cyan));
}
.ft-item { display: flex; gap: 32px; padding-bottom: 48px; position: relative; }
.ft-item:last-child { padding-bottom: 0; }
.ft-year-badge {
  font-family: var(--font-d); font-size: 0.72rem; font-weight: 700;
  color: var(--swe-cyan); letter-spacing: 1px; width: 90px; flex-shrink: 0;
  padding-top: 4px; text-align: right;
}
.ft-content {
  position: relative; padding-left: 32px; padding-bottom: 8px;
}
.ft-content::before {
  content: ''; position: absolute; left: -14px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg2); border: 3px solid var(--swe-cyan); z-index: 1;
}
.ft-item:nth-child(odd) .ft-content::before { border-color: var(--arch-gold); }
.ft-icon { font-size: 1.8rem; margin-bottom: 10px; }
.ft-content h4 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.ft-content p { font-size: 0.88rem; color: var(--txt2); line-height: 1.7; margin-bottom: 14px; }
.ft-content strong { color: var(--txt); }
.ft-impact { display: flex; gap: 10px; flex-wrap: wrap; }
.impact-tag {
  font-size: 0.72rem; font-weight: 700; padding: 5px 12px;
  border-radius: 20px; letter-spacing: 0.3px;
}
.arch-impact { background: var(--arch-dim); color: var(--arch-gold); border: 1px solid var(--arch-border); }
.swe-impact  { background: var(--swe-dim); color: var(--swe-cyan); border: 1px solid var(--swe-border); }
.neutral-impact { background: rgba(255,255,255,0.05); color: var(--txt2); border: 1px solid var(--border); }
.risk-impact { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }

/* ── UNIVERSITIES ── */
.uni-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.uni-column { border-radius: 20px; overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.uni-col-header {
  padding: 20px 24px; font-family: var(--font-d); font-weight: 700; font-size: 0.95rem;
}
#uni-arch .uni-col-header { background: linear-gradient(90deg, var(--arch-dim), transparent); color: var(--arch-gold); border-bottom: 1px solid var(--arch-border); }
#uni-swe .uni-col-header  { background: linear-gradient(90deg, var(--swe-dim), transparent); color: var(--swe-cyan); border-bottom: 1px solid var(--swe-border); }
.uni-list { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.uni-item {
  padding: 14px 16px; border-radius: 12px;
  background: var(--card2); border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.uni-item:hover { border-color: var(--border2); transform: translateX(4px); }
.uni-name { font-family: var(--font-d); font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.uni-detail { font-size: 0.78rem; color: var(--txt2); margin-bottom: 6px; }
.uni-tag {
  font-size: 0.65rem; font-weight: 700; padding: 3px 9px;
  border-radius: 12px; letter-spacing: 0.5px; display: inline-block;
}
.arch-tag-u { background: var(--arch-dim); color: var(--arch-gold); border: 1px solid var(--arch-border); }
.swe-tag-u  { background: var(--swe-dim); color: var(--swe-cyan); border: 1px solid var(--swe-border); }
.uni-tip {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(124,58,237,0.07); border: 1px solid rgba(124,58,237,0.25);
  border-radius: 14px; padding: 22px;
}
.utip-icon { font-size: 1.6rem; flex-shrink: 0; }
.utip-text { font-size: 0.88rem; color: var(--txt2); line-height: 1.7; }
.utip-text strong { color: var(--txt); }

/* ── QUIZ ── */
.quiz-section { background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.06) 0%, var(--bg) 70%); }
.quiz-wrapper {
  max-width: 720px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
}
.quiz-progress-bar { height: 4px; background: rgba(255,255,255,0.07); }
.quiz-progress-fill { height: 100%; background: var(--grad-swe); transition: width 0.4s ease; }
.quiz-step-counter {
  padding: 20px 32px 0; font-size: 0.75rem; color: var(--txt3);
  font-weight: 600; letter-spacing: 1px;
}
.quiz-question { padding: 28px 32px; display: none; }
.quiz-question.active { display: block; animation: fadeIn 0.3s ease; }
.q-text {
  font-family: var(--font-d); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 24px; color: var(--txt); line-height: 1.45;
}
.q-options { display: flex; flex-direction: column; gap: 12px; }
.q-opt {
  text-align: left; background: var(--card2); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; cursor: pointer;
  font-family: var(--font-b); font-size: 0.9rem; color: var(--txt2);
  transition: all 0.2s ease; line-height: 1.5;
}
.q-opt:hover { background: var(--surface); border-color: var(--border2); color: var(--txt); transform: translateX(4px); }
.q-opt.selected-arch { border-color: var(--arch-border); background: var(--arch-dim); color: var(--arch-gold); }
.q-opt.selected-swe  { border-color: var(--swe-border);  background: var(--swe-dim);  color: var(--swe-cyan); }

.quiz-result { padding: 40px 32px; display: none; text-align: center; }
.quiz-result:not(.hidden) { display: block; animation: fadeIn 0.4s ease; }
.result-icon { font-size: 4rem; margin-bottom: 16px; }
.result-title { font-family: var(--font-d); font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; }
.result-desc { font-size: 0.95rem; color: var(--txt2); line-height: 1.7; max-width: 520px; margin: 0 auto 32px; }
.result-score-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }
.rs-item { display: flex; align-items: center; gap: 14px; }
.rs-label { font-size: 0.78rem; color: var(--txt2); width: 160px; text-align: right; flex-shrink: 0; }
.rs-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.rs-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }
.arch-rs-fill { background: var(--grad-arch); }
.swe-rs-fill  { background: var(--grad-swe); }
.rs-pct { font-family: var(--font-d); font-weight: 700; font-size: 0.88rem; width: 40px; }
.arch-rs .rs-pct { color: var(--arch-gold); }
.swe-rs  .rs-pct { color: var(--swe-cyan); }

/* ── FINAL VERDICT ── */
.verdict-final { background: var(--bg2); }
.verdict-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.v-card {
  border-radius: 20px; padding: 32px;
  border: 1px solid var(--border); background: var(--card);
  transition: all 0.3s ease;
}
.v-card:hover { transform: translateY(-4px); }
.v-swe { border-color: var(--swe-border); background: linear-gradient(135deg, rgba(34,211,238,0.04) 0%, var(--card) 50%); }
.v-arch { border-color: var(--arch-border); background: linear-gradient(135deg, rgba(232,165,53,0.04) 0%, var(--card) 50%); }
.v-recommended {
  font-size: 0.7rem; font-weight: 700; color: var(--emerald);
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
  padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 18px;
}
.v-emoji { font-size: 2.5rem; margin-bottom: 14px; }
.v-card h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.v-swe h3 { color: var(--swe-cyan); }
.v-arch h3 { color: var(--arch-gold); }
.v-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.v-list li {
  font-size: 0.88rem; color: var(--txt2); padding-left: 22px; position: relative; line-height: 1.55;
}
.v-list li::before { content: '→'; position: absolute; left: 0; color: var(--txt3); }
.v-score { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.v-score-label { font-size: 0.72rem; color: var(--txt3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.v-score-num { font-family: var(--font-d); font-size: 2rem; font-weight: 900; }
.swe-score-num { color: var(--swe-cyan); }
.arch-score-num { color: var(--arch-gold); }

.final-quote {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 48px; position: relative;
}
.fq-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-swe); border-radius: 20px 20px 0 0;
}
.final-quote blockquote {
  font-size: 1.05rem; color: var(--txt2); line-height: 1.85;
  font-style: normal; margin-bottom: 18px;
}
.final-quote blockquote em { color: var(--swe-cyan); font-style: normal; font-weight: 600; }
.fq-credit { font-size: 0.82rem; color: var(--txt3); font-style: italic; }

/* ── FOOTER ── */
#footer { background: #030508; border-top: 1px solid var(--border); padding: 44px 24px; }
.footer-inner { max-width: var(--max); margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-logo { font-family: var(--font-d); font-size: 1.4rem; font-weight: 800; display: flex; gap: 8px; align-items: center; }
.footer-tag { font-size: 0.85rem; color: var(--txt3); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.82rem; color: var(--txt3); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--txt); }
.footer-copy { font-size: 0.75rem; color: var(--txt3); max-width: 600px; line-height: 1.6; }

/* ── ANIMATIONS ── */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp    { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown  { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.reveal { opacity: 0; transform: translateY(32px); transition: all 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .two-col-cards,
  .reality-grid,
  .salary-grid,
  .uni-grid,
  .verdict-cards-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --pad: 56px; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; background: rgba(5,8,17,0.97);
    backdrop-filter: blur(24px); padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-hamburger { display: flex; }
  .hero-verdict-banner { flex-direction: column; align-items: flex-start; }
  .future-timeline::before { left: 0; }
  .ft-item { flex-direction: column; gap: 12px; padding-left: 20px; }
  .ft-year-badge { text-align: left; width: auto; }
  .ft-content { padding-left: 20px; }
  .context-inner { gap: 24px; }
  .final-quote { padding: 28px 24px; }
  .quiz-question, .quiz-result { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .verdict-cards-row { grid-template-columns: 1fr; }
}
