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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #e5e7eb;
  background: #020617;
  line-height: 1.6;
}

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

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

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

/* HEADER */

.vx-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.vx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}

.vx-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.vx-logo-img {
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.vx-logo-img-lg {
  width: 120px;
  height: 120px;
}

.vx-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.vx-logo-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: #f97316;
}

.vx-logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #cbd5f5;
  letter-spacing: 0.18em;
}

.vx-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.vx-nav a {
  color: #e5e7eb;
  opacity: 0.75;
  position: relative;
}

.vx-nav a.active,
.vx-nav a:hover {
  opacity: 1;
}

.vx-nav a.active::after,
.vx-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f97316, #facc15);
  border-radius: 999px;
}

.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle at 10% 0%, #f97316, #facc15);
  color: #02101f;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.25), 0 18px 45px rgba(15, 23, 42, 0.95);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.vx-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.4), 0 22px 55px rgba(15, 23, 42, 1);
}

.vx-btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

.vx-btn-light {
  background: #e5e7eb;
  color: #111827;
}

.vx-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vx-btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: #f97316;
  transform: translateY(-1px);
}

/* HERO */

.vx-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: stretch;
  color: #f9fafb;
  background-size: cover;
  background-position: center;
}

.vx-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(248, 250, 252, 0.12), transparent 45%),
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.96));
}

.vx-hero-inner {
  position: relative;
  z-index: 1;
  padding: 5.2rem 1.5rem 4.2rem;
}

.vx-hero-copy {
  max-width: 640px;
}

.vx-hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.vx-hero p {
  font-size: 1rem;
  color: #e5e7eb;
  max-width: 38rem;
}

.vx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}

.vx-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

.vx-hero-meta div {
  display: flex;
  flex-direction: column;
}

.vx-hero-meta strong {
  font-size: 1.2rem;
}

.vx-hero-meta-ev {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vx-ev-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 10% 0%, #f97316, #facc15);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.9);
}

.vx-ev-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #111827;
  stroke-width: 2;
}

/* SECTIONS */

.vx-section {
  padding: 3.6rem 0;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  color: #e5e7eb;
}

.vx-section-alt {
  background: radial-gradient(circle at top right, rgba(15, 23, 42, 0.95), #020617);
}

.vx-section-cta {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #0f172a;
}

.vx-section-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.vx-section-title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.vx-section-lead {
  max-width: 40rem;
  font-size: 0.98rem;
  color: #cbd5f5;
  margin-bottom: 1.8rem;
}

.vx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.vx-grid-3.vx-why-extra {
  margin-top: 2.2rem;
}

/* CARDS & ELEMENTS */

.vx-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.25rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.vx-card-glow {
  position: relative;
  overflow: hidden;
}

.vx-card-glow::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.vx-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.vx-step {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(248, 250, 252, 0.06);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

/* COMPARE BAR */

.vx-compare-wrap {
  margin-top: 1.2rem;
}

.vx-compare-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 0.9rem;
}

.vx-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  color: #e5e7eb;
}

.vx-pill-hot {
  border-color: transparent;
  background: radial-gradient(circle at 20% 0, #f97316, #f59e0b);
  color: #111827;
}

.vx-compare-meta {
  font-size: 0.8rem;
  color: #cbd5f5;
  margin-top: 0.2rem;
}

.vx-compare-bar {
  position: relative;
  margin-top: 0.8rem;
  height: 40px;
  display: flex;
  align-items: center;
}

.vx-compare-bar-inner {
  flex: 1;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 0%, rgba(249, 115, 22, 0.2), rgba(15, 23, 42, 1));
  border: 1px solid rgba(249, 115, 22, 0.6);
  padding: 2px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
}

.vx-compare-bar-glow {
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f97316, #fbbf24, #f97316);
  box-shadow:
    0 0 18px rgba(249, 115, 22, 0.9),
    0 0 40px rgba(249, 115, 22, 0.7);
}

.vx-compare-bar-tail {
  width: 18%;
  height: 10px;
  margin-left: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.5), rgba(15, 23, 42, 1));
  border: 1px solid rgba(30, 64, 175, 0.5);
}

.vx-compare-foot {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* CTA & FOOTER */

.vx-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  padding: 1.8rem 0;
  color: #9ca3af;
  font-size: 0.85rem;
}

.vx-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vx-footer-links {
  display: flex;
  gap: 1.25rem;
}

.vx-footer-links a {
  opacity: 0.8;
}

.vx-footer-links a:hover {
  opacity: 1;
}

.vx-footer-meta {
  opacity: 0.75;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .vx-header-inner {
    align-items: center;
  }
  .vx-logo-img-lg {
    width: 88px;
    height: 88px;
  }
  .vx-nav {
    display: none;
  }
  .vx-section-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .vx-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vx-compare-labels {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .vx-hero-inner {
    padding-top: 4.4rem;
  }
  .vx-hero {
    min-height: 78vh;
  }
  .vx-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vx-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.vx-partner-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vx-handshake-icon {
  width: 32px;
  height: 32px;
  stroke: #00e676;
  filter: drop-shadow(0 0 4px rgba(0, 230, 118, 0.5));
}

.vx-partner-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 20px;
  padding: 26px;
  max-width: 420px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.vx-partner-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #ffffff;
}

.vx-partner-card p {
  color: #a4b0c3;
  margin: 12px 0 22px;
  line-height: 1.5;
}
