/* ─── Reset & base ─────────────────────────────────────────────────────────── */

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

:root {
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --blue-light: #eff6ff;
  --navy:       #0f172a;
  --slate:      #334155;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --surface:    #f8fafc;
  --white:      #ffffff;
  --gold:       #f59e0b;
  --radius:     12px;
  --shadow:     0 1px 3px 0 rgb(0 0 0 / .08), 0 1px 2px -1px rgb(0 0 0 / .06);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / .08), 0 2px 4px -2px rgb(0 0 0 / .06);
  --shadow-lg:  0 10px 25px -3px rgb(0 0 0 / .10), 0 4px 6px -4px rgb(0 0 0 / .05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: .625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  text-decoration: none;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-dark);
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--surface); text-decoration: none; }
.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue-light); text-decoration: none; }
.btn--nav {
  background: var(--blue);
  color: var(--white);
  padding: .5rem 1rem;
  font-size: .875rem;
}
.btn--nav:hover { background: var(--blue-dark); text-decoration: none; }

/* ─── Nav ───────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255 255 255 / .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  text-decoration: none;
}
.logo__icon { font-size: 1.4rem; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: .9375rem;
  font-weight: 500;
}
.nav__links a { color: var(--slate); text-decoration: none; }
.nav__links a:hover { color: var(--blue); }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  text-align: center;
}
.hero__glow {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, #dbeafe 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: .8125rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  border: 1px solid #bfdbfe;
}
.hero__headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.hero__footnote {
  font-size: .8125rem;
  color: var(--muted);
}

/* ─── Strip ─────────────────────────────────────────────────────────────────── */

.strip {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 0;
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: .9375rem;
}
.strip__inner > span { opacity: .7; }
.strip__stats {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.strip__stats li { display: flex; flex-direction: column; align-items: center; }
.strip__stats strong { font-size: 1.25rem; font-weight: 700; }
.strip__stats li { font-size: .8125rem; opacity: .8; }

/* ─── Section ───────────────────────────────────────────────────────────────── */

.section { padding: 5rem 0; }
.section--alt { background: var(--surface); }
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}
.section__sub {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
}

/* ─── Steps ─────────────────────────────────────────────────────────────────── */

.steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
  counter-reset: steps;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.step p  { font-size: .9375rem; color: var(--muted); }
.step em { font-style: normal; font-family: monospace; background: #f1f5f9; padding: .1em .4em; border-radius: 4px; font-size: .9em; }

/* ─── Features ──────────────────────────────────────────────────────────────── */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.feature:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature__icon { font-size: 2rem; margin-bottom: 1rem; }
.feature h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.feature p  { font-size: .9375rem; color: var(--muted); }

/* ─── Europe ────────────────────────────────────────────────────────────────── */

.europe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.europe__eyebrow {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.europe__text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.europe__text > p { color: var(--muted); font-size: 1.0625rem; margin-bottom: 1.5rem; }
.europe__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.europe__list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: .9375rem;
  color: var(--muted);
}
.europe__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.europe__list strong { display: block; color: var(--navy); font-weight: 600; }

.europe__map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eu-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.eu-stars {
  font-size: 1.75rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .25em;
}
.eu-label {
  margin-top: .75rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
}

/* ─── Pricing ───────────────────────────────────────────────────────────────── */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}
.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.plan__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.plan__price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan__desc { font-size: .9375rem; color: var(--muted); }
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.plan__features li { font-size: .9375rem; color: var(--slate); }
.plan__features li.dim { color: var(--muted); opacity: .6; }

/* ─── CTA ───────────────────────────────────────────────────────────────────── */

.cta {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.cta__inner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.cta__inner > p {
  color: #94a3b8;
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta__form {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.cta__fields {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 280px;
}
.cta__form input {
  width: 100%;
  padding: .625rem 1rem;
  border-radius: 8px;
  border: 1px solid #475569;
  background: #1e293b;
  color: var(--white);
  font-size: .9375rem;
  outline: none;
  transition: border-color .15s;
}
.cta__form input:focus { border-color: var(--blue); }
.cta__form input::placeholder { color: #64748b; }

.feedback {
  margin-top: .75rem;
  font-size: .9375rem;
  padding: .625rem 1rem;
  border-radius: 8px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.feedback--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.cta__footnote {
  font-size: .8125rem;
  color: #64748b;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--navy);
}
.footer__tagline { color: var(--muted); font-size: .875rem; }
.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__links a { font-size: .875rem; color: var(--muted); }
.footer__links a:hover { color: var(--blue); text-decoration: none; }
.footer__copy { font-size: .8125rem; color: var(--muted); width: 100%; }

/* ─── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav__links { display: none; }

  .strip__inner { flex-direction: column; text-align: center; }
  .strip__stats { justify-content: center; gap: 1.5rem; }

  .europe { grid-template-columns: 1fr; }
  .europe__map { display: none; }

  .cta__form { flex-direction: column; align-items: center; }
  .cta__fields { width: 100%; max-width: 360px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .footer__copy { text-align: center; }
}
