:root {
  --bg: #0f0b1b;          /* deep violet-gray background */
  --bg-2: #181025;        /* slightly lighter secondary background */
  --card: #1f1533;        /* card surface */
  --brand: #8b5cf6;       /* lavender primary */
  --brand-2: #6366f1;     /* indigo secondary */
  --text: #f5f3ff;        /* soft white text */
  --muted: #b6aee0;       /* light lavender-gray for body text */
  --line: rgba(255, 255, 255, 0.12);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --shadow: 0 12px 36px rgba(139, 92, 246, 0.25);
  --maxw: 1200px;
}


/* Reset / base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 38%, #020617 100%);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.95));
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid.two-cols {
    grid-template-columns: 1fr;
  }
}

/* Header / nav */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(3, 7, 18, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: conic-gradient(
    from 200deg,
    var(--brand),
    var(--brand-2),
    #8b5cf6,
    var(--brand)
  );
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.35);
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 18px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav a:hover {
  background: rgba(148, 163, 184, 0.15);
  transform: translateY(-1px);
}

/* Nav-right */

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}


.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.65);
}

.btn.ghost {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.14), rgba(15, 23, 42, 0.8));
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.45);
}

.btn.ghost:hover {
  background: rgba(30, 64, 175, 0.8);
  border-color: rgba(191, 219, 254, 0.7);
}

.btn.small {
  padding: 9px 16px;
  font-size: 13px;
}

.btn.full {
  width: 100%;
}

/* Badge / labels */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at left, rgba(56, 189, 248, 0.2), transparent 45%),
    rgba(15, 23, 42, 0.9);
  color: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.muted {
  color: var(--muted);
}

.lead {
  color: var(--muted);
  max-width: 760px;
  margin: 8px auto 32px;
  text-align: center;
}

/* Hero */

.hero {
  padding-top: 84px;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(30, 64, 175, 0.6), #020617 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.05;
  margin: 16px 0 12px;
}

.hero-left p {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-note {
  margin-top: 12px;
  font-size: 13px;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  max-width: 360px;
}

/* Card */

.card {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.96));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease,
    background 0.2s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: -40%;
  opacity: 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.36), transparent 60%);
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.8);
  border-color: rgba(56, 189, 248, 0.66);
}

.card:hover::before {
  opacity: 1;
}

/* Hero card content */

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--muted);
}

.hero-stat-value {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-2);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(15, 118, 110, 0.2);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: #bef264;
}

.hero-preview {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.status-pill {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.status-pill.success {
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.7);
}

/* Kicker / heading */

.kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 6px;
  text-align: center;
}

.section > .container > h2 {
  font-size: clamp(26px, 3vw, 34px);
  text-align: center;
  margin: 0 0 10px;
}

/* Service cards */

.service-card {
  min-height: 100%;
}

.service-card.highlight {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.service-list li {
  margin-bottom: 6px;
}

/* Panel / bullet list */

.panel {
  min-height: 100%;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 10px;
}

.bullet-list li {
  margin-bottom: 6px;
}

.bullet-list li strong {
  color: var(--text);
}

.subheading {
  margin-top: 16px;
  font-size: 15px;
}

/* Tags */

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.9);
}

.small-note {
  font-size: 13px;
}

/* Partners roller */

.partner-wrapper {
  margin-top: 26px;
  padding: 16px 0 32px;
  overflow: hidden;
  position: relative;
}

.partner-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll 32s linear infinite;
}

.partner-track.reverse {
  animation-direction: reverse;
  animation-duration: 40s;
  margin-top: 12px;
}

.partner-card {
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.25), transparent 60%),
    rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text);
  opacity: 0.88;
  backdrop-filter: blur(10px);
}

.partner-card span {
  white-space: nowrap;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* BM Types */

.bm-card {
  padding-top: 22px;
}

.bm-card.accent {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.3), transparent 50%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

@media (max-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  padding-top: 24px;
}

.price-card.highlight {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 45%),
    linear-gradient(180deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 1));
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 30px;
  font-weight: 800;
}

.price-note {
  font-size: 13px;
}

.pricing-note {
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
}

/* Steps */

.steps-list {
  margin: 10px 0 16px;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
}

.steps-list li {
  margin-bottom: 6px;
}

/* Support card */

.support-card {
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
}

/* Footer */

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 36px;
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 1), #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 22px;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.footer a {
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}

.footer a:hover {
  color: var(--text);
}

.copyright {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* Language switcher */

.language-switcher {
  position: relative;
  margin-left: 4px;
}

.language-btn {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text);
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.language-options {
  position: absolute;
  top: 110%;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 6px 0;
  box-shadow: var(--shadow);
  min-width: 130px;
  display: none;
  z-index: 30;
}

.language-options.active {
  display: block;
}

.language-option {
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
}

.language-option:hover {
  background: rgba(30, 64, 175, 0.6);
}

.language-option.active {
  color: var(--brand);
}

/* Mobile nav */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(3, 7, 18, 0.98);
    padding: 18px 20px 24px;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav a {
    width: 100%;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.95);
    padding: 12px 16px;
  }

  .language-switcher {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4px;
  }

  .language-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }

  .language-options {
    width: 100%;
    right: auto;
    left: 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 84px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .partner-wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
}

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card::before,
.partner-wrapper::before,
.partner-track,
.partner-card,
.hero-card::before {
  pointer-events: none;
}

.btn,
a.btn {
  position: relative;
  z-index: 10;
}

.partner-wrapper {
  position: relative;
  z-index: 0;
}

.section::before,
.section::after,
.hero::before,
.hero::after {
  pointer-events: none;
}