/* INC48 — EU INC Formation */
/* Design system + global styles */

:root {
  --eu-blue: #003399;
  --eu-blue-dark: #002266;
  --eu-blue-light: #1A4DB8;
  --eu-gold: #FFCC00;
  --eu-gold-dark: #E6B800;
  --ink: #0A0E27;
  --ink-soft: #1E2749;
  --body: #334155;
  --muted: #64748B;
  --muted-light: #94A3B8;
  --line: #E2E8F0;
  --line-soft: #F1F5F9;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-tint: #F5F8FF;
  --success: #10B981;
  --danger: #EF4444;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(10, 14, 39, 0.06);
  --shadow: 0 4px 20px rgba(10, 14, 39, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 14, 39, 0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --max: 1200px;
  --max-narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--eu-blue);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--eu-blue-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw + 0.5rem, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.625rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--eu-blue); }
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--eu-blue) 0%, var(--eu-blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eu-gold);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(0, 51, 153, 0.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: var(--body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 6px;
  transition: all 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--eu-blue);
  background: var(--bg-tint);
}
.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin-left: 16px;
}
.nav-cta:hover {
  background: var(--eu-blue) !important;
  color: white !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: relative;
  transition: all 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 0;
  transition: all 0.2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 2px;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0.25s;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }
  .nav-cta {
    display: block;
    margin-top: 12px;
    margin-left: 0;
    text-align: center;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: white;
}
.btn-primary:hover {
  background: var(--eu-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 51, 153, 0.25);
}
.btn-gold {
  background: var(--eu-gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--eu-gold-dark);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--ink);
  color: var(--ink);
}
.btn-lg { padding: 18px 32px; font-size: 1.0625rem; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 51, 153, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-tint);
  border: 1px solid rgba(0, 51, 153, 0.15);
  color: var(--eu-blue);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eu-gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 3.6vw + 0.75rem, 3.5rem);
  line-height: 1.08;
}
.hero .eyebrow {
  background: linear-gradient(135deg, var(--ink) 0%, var(--eu-blue-dark) 100%);
  color: var(--eu-gold);
  border: 1px solid rgba(255, 204, 0, 0.3);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px 7px 14px;
  box-shadow: 0 6px 18px rgba(10, 14, 39, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hero .eyebrow .eyebrow-dot {
  background: var(--eu-gold);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.85);
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--eu-blue) 0%, var(--eu-blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-lead {
  font-size: 1.1875rem;
  color: var(--body);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

/* Visual panel on hero */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  justify-self: end;
}
@media (max-width: 900px) {
  .hero-visual { justify-self: center; }
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero-card-main {
  inset: 20px 20px auto auto;
  width: 86%;
  padding: 28px;
  z-index: 2;
  background: linear-gradient(135deg, var(--eu-blue) 0%, var(--eu-blue-dark) 100%);
  color: white;
}
.hero-card-main .card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--eu-gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-card-main .card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}
.hero-card-main .card-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}
.hero-card-main .card-row:first-of-type { border-top: none; }
.hero-card-main .card-row span:first-child { opacity: 0.75; }
.hero-card-main .card-row span:last-child { font-weight: 600; }

.hero-card-badge {
  bottom: 30px;
  left: 10px;
  padding: 20px;
  z-index: 3;
  background: var(--eu-gold);
  color: var(--ink);
  width: 200px;
  transform: rotate(-4deg);
  box-shadow: 0 18px 40px rgba(255, 204, 0, 0.35), 0 4px 10px rgba(10, 14, 39, 0.08);
  transition: transform 0.35s var(--ease);
}
.hero-card-badge:hover {
  transform: rotate(-4deg) translateY(-3px) scale(1.02);
}
.hero-card-badge .badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-card-badge .badge-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero-stars {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
  animation: eu-rotate 80s linear infinite;
}
.hero-stars svg {
  width: 100%;
  height: 100%;
  opacity: 0.75;
  filter: drop-shadow(0 2px 8px rgba(255, 204, 0, 0.25));
}
@keyframes eu-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stars { animation: none; }
}

/* ============ SECTIONS ============ */
section {
  padding: 88px 0;
}
@media (max-width: 700px) {
  section { padding: 56px 0; }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
}
.section-head .eyebrow {
  margin-bottom: 16px;
}
.section-head h2 {
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1.125rem;
  color: var(--muted);
}

.section-alt { background: var(--bg-soft); }
.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark h2, .section-dark h3 { color: white; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.7); }

/* ============ FEATURE GRID ============ */
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s var(--ease);
}
.card:hover {
  border-color: var(--eu-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--eu-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card p { color: var(--body); font-size: 0.95rem; }

/* ============ STEPS / TIMELINE ============ */
.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -16px;
  left: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--eu-gold);
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.step h3 {
  font-size: 1.1rem;
  margin: 8px 0 8px;
}
.step p { font-size: 0.925rem; color: var(--muted); }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-q::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  margin-top: -4px;
}
.faq-item.is-open .faq-q::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.is-open .faq-a { max-height: 600px; }
.faq-a-inner { padding-bottom: 20px; color: var(--body); line-height: 1.7; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--eu-blue) 0%, var(--eu-blue-dark) 100%);
  color: white;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 204, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

/* ============ FORMS ============ */
.form {
  max-width: 480px;
  margin: 0 auto;
}
.form-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.form-row .input { flex: 1 1 240px; }
.input, .textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--eu-blue);
  box-shadow: 0 0 0 4px rgba(0, 51, 153, 0.12);
}
.textarea { min-height: 140px; resize: vertical; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

.form-message {
  display: none;
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
  text-align: center;
  font-weight: 500;
}
.form-message.is-visible { display: block; }
.form-message.success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.form-message.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
@media (max-width: 900px) {
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}
.section-dark .stat-num { color: white; }
.section-dark .stat-label { color: rgba(255, 255, 255, 0.7); }
.section-dark .stat { border-color: rgba(255, 255, 255, 0.1); }

/* ============ COMPARISON TABLE ============ */
.comparison {
  position: relative;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.comparison::-webkit-scrollbar { height: 8px; }
.comparison::-webkit-scrollbar-track { background: transparent; }
.comparison::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 640px;
}
@media (max-width: 700px) {
  .comparison::after {
    content: '← swipe →';
    display: block;
    position: sticky;
    left: 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    padding: 6px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
  }
}
.comparison th, .comparison td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.comparison thead th {
  background: var(--bg-soft);
  color: var(--ink);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
}
.comparison thead th.highlight {
  background: var(--eu-blue);
  color: white;
}
.comparison tbody tr:last-child td { border-bottom: none; }
.comparison tbody td:first-child { font-weight: 600; color: var(--ink); }
.check-yes { color: var(--success); font-weight: 700; }
.check-no { color: var(--danger); font-weight: 700; }

/* ============ BLOG ============ */
.posts {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posts { grid-template-columns: 1fr; } }

.post-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--eu-blue);
}
.post-cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--eu-blue) 0%, var(--eu-blue-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(255, 204, 0, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
}
.post-cover-mark {
  position: relative;
  color: var(--eu-gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Blog card images */
.post-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-cover:has(img) {
  background: #F5F1E8;
}
.post-cover:has(img)::before {
  display: none;
}

.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-meta {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-body h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.35;
}
.post-body h3 a { color: var(--ink); }
.post-body h3 a:hover { color: var(--eu-blue); }
.post-excerpt {
  color: var(--body);
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex: 1;
}
.post-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--eu-blue);
  font-size: 0.9rem;
}
.post-link::after {
  content: '→';
  transition: transform 0.2s var(--ease);
}
.post-card:hover .post-link::after { transform: translateX(3px); }

/* ============ ARTICLE (blog post page) ============ */
.article {
  padding: 56px 0 88px;
}
.article-header {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}
.article-header .post-meta { justify-content: center; margin-bottom: 14px; }
.article-header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}
.article-header .lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.article-body h2 {
  font-size: 1.625rem;
  margin: 48px 0 16px;
}
.article-body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}
.article-body p { margin-bottom: 20px; color: var(--body); }
.article-body a {
  color: var(--eu-blue);
  text-decoration: underline;
  text-decoration-color: rgba(0, 51, 153, 0.3);
  text-underline-offset: 3px;
}
.article-body a:hover { text-decoration-color: var(--eu-blue); }
.article-body ul, .article-body ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.article-body li { margin-bottom: 10px; color: var(--body); }
.article-body blockquote {
  border-left: 4px solid var(--eu-gold);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--ink-soft);
}
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body code {
  background: var(--bg-tint);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  color: var(--eu-blue-dark);
}
.article-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
.callout {
  background: var(--bg-tint);
  border: 1px solid rgba(0, 51, 153, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong:first-child { color: var(--eu-blue); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
  font-size: 0.925rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: white; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
  max-width: 340px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
}
.footer .nav-logo { color: white; }
.footer .nav-logo:hover { color: var(--eu-gold); }

/* ============ BADGE ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-blue { background: var(--bg-tint); color: var(--eu-blue); }
.badge-gold { background: #FFF9DB; color: #856404; }
.badge-soft { background: var(--bg-soft); color: var(--muted); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--eu-blue); }
.breadcrumb span:not(:last-child)::after {
  content: '›';
  margin: 0 8px;
  color: var(--line);
}

/* ============ UTILS ============ */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

.list-check {
  list-style: none;
  padding: 0;
}
.list-check li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--body);
}
.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--eu-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3 3 7-7' stroke='%23FFCC00' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Flag strip */
.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  opacity: 0.85;
  margin-top: 32px;
}
.flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
}

/* Video embed */
.video-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 14, 39, 0.25);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.video-frame::before,
.video-frame::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
}
.video-frame::before { background: var(--eu-blue); top: -30px; left: -30px; }
.video-frame::after { background: var(--eu-gold); bottom: -30px; right: -30px; }
.video-frame > .video-wrap { position: relative; z-index: 1; }

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: auto;
  left: -9999px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 200;
}
.skip-link:focus {
  top: 8px;
  left: 8px;
  color: white;
}
