:root {
  --bg: #07111c;
  --bg-soft: #0d1927;
  --surface: rgba(12, 24, 39, 0.78);
  --surface-strong: rgba(14, 31, 48, 0.92);
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #aebdd0;
  --accent: #4ce1b6;
  --accent-strong: #89f3cf;
  --warning: #ffcf70;
  --shadow: 0 24px 80px rgba(4, 11, 20, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at left top, rgba(76, 225, 182, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 207, 112, 0.15), transparent 25%),
    linear-gradient(180deg, #08121d 0%, #050d16 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(7, 16, 26, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 10px 24px rgba(77, 198, 255, 0.22));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #08111c;
  box-shadow: 0 14px 34px rgba(76, 225, 182, 0.26);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0 32px;
}

.hero-copy,
.hero-panel,
.section,
.trust-strip,
.cta-banner {
  animation: rise 0.7s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  max-width: 10.5ch;
}

.hero-text,
.section-heading p,
.cta-banner p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.hero-panel,
.section,
.trust-strip,
.cta-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-panel,
.section,
.cta-banner {
  padding: 28px;
}

.signal-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(76, 225, 182, 0.13), rgba(255, 207, 112, 0.1)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.signal-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card h2 {
  margin: 16px 0 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.stats-grid,
.services-grid,
.pricing-grid,
.country-grid,
.workflow-grid,
.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.service-card,
.price-card,
.country-card,
.workflow-step,
.faq-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.stat-card.accent {
  background: rgba(76, 225, 182, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 12px 0 24px;
  padding: 18px 22px;
}

.trust-strip p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.section {
  margin-top: 24px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.section-heading p {
  margin: 12px 0 0;
  max-width: 60ch;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card h3,
.price-card h3,
.workflow-step h3,
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.service-card p,
.country-card p,
.workflow-step p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.featured {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.accent-card {
  background: rgba(76, 225, 182, 0.1);
}

.price-value {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 1.7rem;
}

.price-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.price-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.country-grid,
.workflow-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.country-card strong,
.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.country-card strong {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.workflow-step span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(76, 225, 182, 0.12);
  color: var(--accent-strong);
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
}

.cta-banner {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(76, 225, 182, 0.12), rgba(255, 207, 112, 0.09)),
    var(--surface-strong);
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar,
  .hero,
  .cta-banner {
    display: block;
  }

  .nav {
    margin: 14px 0;
    flex-wrap: wrap;
  }

  .hero-panel {
    margin-top: 20px;
  }

  .trust-strip,
  .services-grid,
  .country-grid,
  .workflow-grid,
  .faq-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner .button {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .topbar,
  .hero-panel,
  .section,
  .cta-banner {
    padding: 20px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.25rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .button,
  .button-small {
    width: 100%;
  }
}
