:root {
  --green: #00a66a;
  --green-dark: #047a51;
  --blue: #19008f;
  --blue-dark: #10005c;
  --ink: #12131a;
  --muted: #657083;
  --soft: #f6f8fb;
  --line: #e8edf3;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(18, 19, 26, 0.08);
  --shadow-soft: 0 10px 24px rgba(18, 19, 26, 0.055);
  --radius: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f8fafc 100%);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(232,237,243,0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img,
.footer-brand img,
.hero-logo img,
.mini-logo img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
  transition: color 220ms ease;
}

.nav-links a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(0, 166, 106, 0.18);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(0, 166, 106, 0.22);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(25, 0, 143, 0.16);
}

.button-ghost {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(18,19,26,0.04);
}

.hero {
  position: relative;
  padding: 86px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(0,166,106,0.09);
  border: 1px solid rgba(0,166,106,0.16);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: fadeUp 700ms ease both;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0,166,106,0.15);
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
  color: var(--blue-dark);
}

h1 {
  margin-top: 0;
  font-size: clamp(3rem, 7.8vw, 6.65rem);
  max-width: 880px;
  animation: fadeUp 780ms ease 80ms both;
}

.accent {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.accent::after {
  content: none;
}

.hero-copy {
  max-width: 720px;
  margin: 38px 0 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.38rem);
  animation: fadeUp 780ms ease 160ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  animation: fadeUp 780ms ease 240ms both;
}

.proof-actions {
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  animation: fadeUp 780ms ease 320ms both;
}

.meta-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(18,19,26,0.03);
  overflow: hidden;
}

.meta-card::before,
.card::before,
.faq::before {
  content: "";
  display: block;
  height: 4px;
  margin: -18px -18px 16px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.meta-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: var(--blue);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.meta-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

.hero-panel {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatIn 850ms ease 160ms both;
}

.hero-panel::before {
  content: none;
}

.panel-inner {
  position: relative;
  border-radius: 12px;
  min-height: 540px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  color: white;
  background:
    linear-gradient(145deg, rgba(16,0,92,0.92), rgba(25,0,143,0.82) 56%, rgba(0,166,106,0.84)),
    url("https://images.unsplash.com/photo-1601562990548-34f9b42808af?auto=format&fit=crop&w=1200&q=80") center/cover;
  overflow: hidden;
}

.panel-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.35;
}

.hero-logo,
.prompt-box,
.panel-title {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.panel-title h2 {
  color: white;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.panel-title p {
  max-width: 410px;
  color: rgba(255,255,255,0.94);
  font-size: 1.14rem;
  margin: 32px 0 0;
}

.prompt-box {
  margin-top: 28px;
  padding: 20px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.prompt-box small {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prompt-box p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

section { padding: 82px 0; }

.section-heading {
  max-width: 790px;
  margin-bottom: 46px;
}

.kicker {
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

h2 { font-size: clamp(2.2rem, 4.7vw, 4.4rem); }

.lead {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 1.22rem;
  max-width: 760px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.035);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  overflow: hidden;
}

.card::before {
  margin: -30px -30px 26px;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0,166,106,0.22);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}

.card p,
.country-card p,
.step p,
.faq p,
.route p,
.proof p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 0;
}

.country-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.035);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.country-card::before {
  content: "";
  display: block;
  height: 4px;
  margin: -30px -30px 26px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.country-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0,166,106,0.22);
}

.country-card .kicker {
  margin-bottom: 18px;
}

.country-card h3 {
  margin-bottom: 22px;
}

.country-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: stretch;
}

.proof {
  height: 100%;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proof .lead {
  margin-top: 42px;
}

.proof-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
  margin-bottom: 42px;
}

.routes {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 16px;
  align-content: stretch;
}

.route {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.025);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.route::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.route:hover {
  transform: translateX(2px);
  border-color: rgba(25,0,143,0.22);
  box-shadow: var(--shadow-soft);
}

.route-number {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue) 52%, var(--green));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.cta-band h2 { color: #fff; }
.cta-band p {
  margin: 32px 0 0;
  color: rgba(255,255,255,0.94);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 760px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18,19,26,0.025);
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  height: auto;
  margin: 0 0 28px;
  color: var(--green);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.seo-text {
  padding: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  columns: 2 340px;
  column-gap: 48px;
}

.seo-text h2 {
  column-span: all;
  margin-bottom: 38px;
}

.seo-text p {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq {
  position: relative;
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.faq::before {
  content: "";
  display: block;
  height: 4px;
  margin: -26px -26px 22px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

footer {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  background: #fbfcff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 28px;
}
.footer p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 680px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .split, .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-panel { animation: floatIn 850ms ease both; }
  .cards-grid, .country-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 34px; }
  .cta-actions { justify-content: flex-start; }
  .floating-cta { display: block; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand img { width: 150px; }
  .button { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-meta, .cards-grid, .country-grid, .steps, .faq-grid { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
  .panel-inner { min-height: 470px; padding: 22px; }
  .proof { padding: 26px; }
  .seo-text { padding: 26px; }
  .footer-links { justify-content: flex-start; }
  .floating-cta { left: 14px; right: 14px; }
}
