/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1B2A4A;
  --navy-dark: #111D33;
  --navy-light:#2A3F6A;
  --gold:      #C9A84C;
  --gold-light:#E8C97A;
  --white:     #FFFFFF;
  --grey-bg:   #F7F8FA;
  --grey-text: #616161;
  --grey-mid:  #9AA0AC;
  --border:    #E2E6ED;
  --urgent:    #FFF3E0;
  --urgent-fg: #E67E22;
  --done-fg:   #27AE60;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg: 0 8px 40px rgba(27,42,74,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--grey-text); }

.gold { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-sm {
  font-size: 0.85rem;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 1.1rem;
  padding: 18px 44px;
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  background: var(--gold-light);
}

/* ── Nav ───────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,29,51,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

/* EU star pattern */
.stars-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,168,76,0.12) 1.5px, transparent 1.5px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 { color: var(--white); margin-bottom: 20px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.badge::before { content: '●'; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.guarantee {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.hero-meta span { display: flex; align-items: center; gap: 6px; }

/* ── Deadline Notice (premium) ─────────────────────────────────────────────── */
.notice {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0) 10%,
    rgba(201,168,76,0.6) 50%,
    rgba(201,168,76,0) 90%,
    transparent 100%);
}

.notice::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.06) 50%,
    transparent 100%);
}

.notice .container { position: relative; z-index: 1; }

.notice-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 0;
}

.notice-marker {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.notice-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.85);
}

.notice-date {
  font-family: 'Inter', sans-serif;
  font-feature-settings: 'tnum';
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
}

.notice-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,0.12) 30%,
    rgba(255,255,255,0.12) 70%,
    transparent 100%);
  flex-shrink: 0;
}

.notice-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 640px;
}

.art-ref {
  color: var(--gold-light);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--grey-bg); }

/* ── Two-col ───────────────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col h2 { margin-bottom: 16px; }
.two-col p  { margin-bottom: 14px; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--grey-text);
}

.check-list li::before {
  content: '×';
  color: #C0392B;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.5;
  flex-shrink: 0;
}

/* ── Stat cards ────────────────────────────────────────────────────────────── */
.problem-stat-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--grey-text);
  line-height: 1.4;
}

/* ── Deliverables ──────────────────────────────────────────────────────────── */
.section-alt h2 { text-align: center; margin-bottom: 48px; }

.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.deliverable-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.deliverable-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.deliverable-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.deliverable-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.deliverable-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.deliverable-card small { font-size: 0.85rem; font-weight: 500; color: var(--grey-mid); }

.deliverable-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-text);
  line-height: 1.45;
}

.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.tab-badge.step1 { background: #E3F2FD; color: #1565C0; }
.tab-badge.step2 { background: #FFF3E0; color: #E67E22; }
.tab-badge.step3 { background: #E8F5E9; color: #27AE60; }
.tab-badge.registry { background: var(--navy); color: var(--gold); }

.check {
  color: var(--done-fg);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Personas ──────────────────────────────────────────────────────────────── */
.section h2 { text-align: center; margin-bottom: 48px; }

.personas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.persona-card {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.persona-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.persona-icon { font-size: 2rem; margin-bottom: 12px; }
.persona-card h4 { margin-bottom: 8px; }
.persona-card p { font-size: 0.85rem; }

.not-for {
  background: #FFF8E7;
  border: 1px solid #F5D76E;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #7B6200;
  text-align: center;
}

/* ── Timeline ──────────────────────────────────────────────────────────────── */
.section-alt h2 { margin-bottom: 12px; }

.timeline {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--border);
  padding-left: 28px;
  margin-left: 16px;
}

.timeline-item {
  position: relative;
  padding: 16px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-item.done::before { background: var(--done-fg); box-shadow: 0 0 0 2px var(--done-fg); }
.timeline-item.urgent::before { background: var(--urgent-fg); box-shadow: 0 0 0 2px var(--urgent-fg); }
.timeline-item.upcoming::before { background: var(--navy); box-shadow: 0 0 0 2px var(--navy-light); }

.tl-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grey-mid);
  white-space: nowrap;
  min-width: 140px;
  padding-top: 2px;
}

.timeline-item.done .tl-date { color: var(--done-fg); }
.timeline-item.urgent .tl-date { color: var(--urgent-fg); }

.tl-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.tl-content span {
  font-size: 0.82rem;
  color: var(--grey-text);
}

.tl-content em { color: var(--urgent-fg); font-style: normal; font-weight: 600; }

.timeline-note {
  font-size: 0.78rem;
  color: var(--grey-mid);
  font-style: italic;
  margin-top: 8px;
}

/* ── Author ────────────────────────────────────────────────────────────────── */
.author-section { background: var(--navy); }
.author-section .section-label { color: var(--gold); }
.author-section h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 4px; }
.author-section p { color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.author-section p strong { color: var(--white); }
.author-section p em { color: var(--gold-light); font-style: italic; }

.author-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 8px;
}

.author-title {
  color: var(--gold-light) !important;
  font-size: 0.9rem !important;
  margin-bottom: 20px !important;
}

/* ── Final CTA ─────────────────────────────────────────────────────────────── */
.cta-section { background: var(--grey-bg); }

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--grey-mid);
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 40px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-logo { font-weight: 700; color: var(--white); font-size: 0.9rem; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--gold); }

.footer-legal p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col        { grid-template-columns: 1fr; gap: 40px; }
  .deliverables   { grid-template-columns: 1fr; }
  .personas       { grid-template-columns: 1fr 1fr; }
  .author-inner   { flex-direction: column; gap: 24px; }
}

@media (max-width: 600px) {
  .section  { padding: 56px 0; }
  .hero     { padding: 72px 0 60px; }
  .personas { grid-template-columns: 1fr; }
  .timeline { padding-left: 20px; }
  .tl-date  { min-width: 120px; font-size: 0.75rem; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-meta { gap: 12px; flex-direction: column; align-items: center; }
  .notice-inner { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px 0; }
  .notice-divider { display: none; }
  .notice-text { font-size: 0.88rem; }
}
