/* ==========================================================================
   Become an Agent — Vision Court
   Modern blue luxury referral landing page
   ========================================================================== */

/* ── Variables ─────────────────────────────────────────────────────────── */
.vc-agent {
  --ag-blue: #2563eb;
  --ag-blue-dk: #1d4ed8;
  --ag-blue-lt: #60a5fa;
  --ag-blue-xlt: #bfdbfe;
  --ag-blue-pale: #eff6ff;
  --ag-navy: #0b1929;
  --ag-navy-mid: #122038;
  --ag-sky: #f0f7ff;
  --ag-cream: #faf7f1;
  --ag-white: #ffffff;
  --ag-text: #0f1c2e;
  --ag-body: #3d4f62;
  --ag-muted: #617082;
  --ag-border: #e2d8c8;
  --ag-warm-border: #ddd0b8;
  --ag-green: #22c55e;
  --ag-radius: 18px;
  --ag-radius-sm: 10px;
  --ag-shadow: 0 4px 24px rgba(11, 25, 41, 0.1);
  --ag-shadow-blue: 0 10px 40px rgba(37, 99, 235, 0.18);
  --ag-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ag-dur: 0.3s;
  font-family: inherit;
  color: var(--ag-text);
  overflow-x: hidden;
}

/* ── Container ──────────────────────────────────────────────────────────── */
.vca-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Labels ────────────────────────────────────────────────────────────── */
.vca-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ag-blue);
  margin-bottom: 12px;
}
.vca-label--light {
  color: var(--ag-blue-lt);
}

/* ── Section header ────────────────────────────────────────────────────── */
.vca-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.vca-section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ag-navy);
  margin: 0 0 16px;
}
.vca-section-header p {
  font-size: 1.05rem;
  color: var(--ag-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.vca-section-header--light h2 {
  color: #fff;
}
.vca-section-header--light p {
  color: rgba(255, 255, 255, 0.62);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.vca-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--ag-dur) var(--ag-ease);
  cursor: pointer;
  border: 2px solid transparent;
}
.vca-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.vca-btn--full {
  width: 100%;
}

.vca-btn--primary {
  background: var(--ag-blue);
  color: #fff;
}
.vca-btn--primary:hover {
  background: var(--ag-blue-dk);
  transform: translateY(-2px);
  box-shadow: var(--ag-shadow-blue);
  color: #fff;
}
.vca-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.vca-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
}
.vca-btn--white {
  background: #fff;
  color: var(--ag-navy);
  font-weight: 700;
}
.vca-btn--white:hover {
  background: var(--ag-sky);
  transform: translateY(-2px);
  color: var(--ag-navy);
}
.vca-btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}
.vca-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.vca-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Rich warm-navy gradient — feels grounded, not cold-tech */
  background: linear-gradient(
    145deg,
    #04091e 0%,
    #071428 35%,
    #0c1d42 60%,
    #060f24 100%
  );
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.vca-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Ccircle cx='45' cy='45' r='42' fill='none' stroke='rgba(255,255,255,0.045)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='28' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='14' fill='none' stroke='rgba(255,255,255,0.045)' stroke-width='0.8'/%3E%3C/svg%3E"),
    linear-gradient(
      100deg,
      rgba(4, 10, 28, 0.97) 0%,
      rgba(5, 13, 40, 0.9) 38%,
      rgba(7, 18, 54, 0.58) 62%,
      rgba(8, 22, 62, 0.24) 100%
    );
  background-size:
    90px 90px,
    cover;
  z-index: 1;
  pointer-events: none;
}

.vca-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 60px;
  align-items: center;
  padding: 190px 24px 80px;
}

.vca-hero__content {
  /* left column — no max-width constraint */
}

.vca-hero__sub {
  /* inherits left-alignment */
}

.vca-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.vca-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ag-green);
  box-shadow: 0 0 8px var(--ag-green);
  animation: vcaPulse 2s ease-in-out infinite;
}
@keyframes vcaPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.vca-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.vca-hero__accent {
  /* Lighter shade of blue — stands out on dark navy without being same tone */
  background: linear-gradient(135deg, #93c5fd 0%, var(--ag-blue-lt) 50%, #bfdbfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vca-hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
}

.vca-hero__highlights {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ag-radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  flex-wrap: nowrap;
}
}
.vca-hero__highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  flex: 1;
}
.vca-hero__highlight-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.vca-hero__highlight-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.vca-hero__highlight-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.vca-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero desktop mockup */
.vca-hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding-top: 20px; /* space for float badge */
  /* soft glow behind mockup */
  filter: drop-shadow(0 0 60px rgba(37, 99, 235, 0.35));
}
.vca-mockup {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.18);
  border: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Browser chrome */
.vca-mockup__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #dde0e8;
  padding: 10px 18px;
  border-bottom: 1px solid #c8ccd5;
}
.vca-mockup__traffic {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.vca-mockup__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
.vca-mockup__dot--r { background: #ff5f57; }
.vca-mockup__dot--y { background: #febc2e; }
.vca-mockup__dot--g { background: #28c840; }
.vca-mockup__urlbar {
  flex: 1;
  background: #fff;
  border-radius: 5px;
  padding: 5px 14px;
  font-size: 10.5px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1;
}
.vca-mockup__urlbar svg { flex-shrink: 0; color: #888; }
/* App screen */
.vca-mockup__screen {
  display: flex;
  flex: 1;
  overflow: hidden;
  min-height: 560px;
}
/* Sidebar */
.vca-mockup__sidebar {
  width: 200px;
  background: #eaeefc;
  flex-shrink: 0;
  padding: 18px 0 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid #d3daf0;
  transition: width 0.28s ease;
}
.vca-mockup__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 2px 18px 16px;
}
.vca-mockup__logo-mark {
  width: 34px;
  height: 34px;
  background: #0f3460;
  color: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.vca-mockup__logo-label {
  font-size: 10px;
  font-weight: 900;
  color: #1a3c8f;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vca-mockup__back-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  color: #5a6a9a;
  padding: 4px 18px 14px;
}
.vca-mockup__divider {
  height: 1px;
  background: #d0d8f0;
  margin: 7px 18px;
}
.vca-mockup__nav { display: flex; flex-direction: column; }
.vca-mockup__nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  color: #3a4a7a;
  padding: 7px 18px;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.3;
}
.vca-mockup__nav-item--active {
  background: #1a2b5a;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  margin: 1px 10px;
  padding: 7px 12px;
}
/* Main content */
.vca-mockup__main {
  flex: 1;
  background: #f0f2fa;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.vca-mockup__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vca-mockup__topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Sidebar toggle button */
.vca-mockup__sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #3a4a7a;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  flex-shrink: 0;
  line-height: 1;
}
.vca-mockup__sidebar-btn:hover {
  background: rgba(26, 43, 90, 0.12);
}
.vca-mockup__page-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a2b5a;
  line-height: 1;
}
.vca-mockup__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ag-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vca-mockup__welcome {
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
}
.vca-mockup__welcome-icon {
  font-size: 22px;
  background: #fff8e8;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.vca-mockup__welcome-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2b5a;
  line-height: 1.3;
}
.vca-mockup__welcome-sub {
  font-size: 11px;
  color: #6b7280;
  margin-top: 3px;
  line-height: 1.4;
}
.vca-mockup__section-label {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-top: 2px;
}
.vca-mockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.vca-mockup__card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
}
.vca-mockup__card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}
.vca-mockup__card-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vca-mockup__card-icon--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}
.vca-mockup__card-icon--orange {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.vca-mockup__card-lbl {
  font-size: 10px;
  color: #6b7280;
  line-height: 1.2;
}
.vca-mockup__card-val {
  font-size: 22px;
  font-weight: 800;
  color: #1a2b5a;
  line-height: 1;
}
.vca-mockup__card-val--green { color: #16a34a; }
.vca-mockup__card-link {
  font-size: 9.5px;
  color: var(--ag-blue);
  font-weight: 600;
  margin-top: 6px;
}
.vca-mockup__bar {
  height: 5px;
  background: #e9ecef;
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
}
/* Bar fill reused for animation */
.vca-hero__card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ag-blue), var(--ag-green));
  border-radius: 3px;
}
/* ── Mockup entrance + idle float animation ─────────────────── */
@keyframes vcaMockupEntrance {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes vcaMockupFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.vca-hero__visual {
  animation: vcaMockupEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.vca-hero__visual:hover .vca-mockup,
.vca-hero__visual:focus-within .vca-mockup {
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.65),
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.22);
  transition: box-shadow 0.35s ease;
}
/* Idle float — only when not hovered to avoid janky interaction */
@media (hover: hover) {
  .vca-mockup {
    animation: vcaMockupFloat 5s ease-in-out 1.2s infinite;
  }
  .vca-hero__visual:hover .vca-mockup {
    animation-play-state: paused;
  }
}
/* ── Sidebar collapsed state ───────────────────── */
.vca-mockup__screen.sidebar-collapsed .vca-mockup__sidebar {
  width: 52px;
}
.vca-mockup__screen.sidebar-collapsed .vca-mockup__logo {
  padding: 2px 0 16px;
  justify-content: center;
}
.vca-mockup__screen.sidebar-collapsed .vca-mockup__logo-label {
  display: none;
}
.vca-mockup__screen.sidebar-collapsed .vca-mockup__back-link {
  display: none;
}
.vca-mockup__screen.sidebar-collapsed .vca-mockup__divider {
  display: none;
}
.vca-mockup__screen.sidebar-collapsed .vca-mockup__nav-item {
  font-size: 0;
  gap: 0;
  padding: 7px 0;
  justify-content: center;
}
.vca-mockup__screen.sidebar-collapsed .vca-mockup__nav-item--active {
  margin: 1px 6px;
  padding: 7px 0;
  justify-content: center;
}

.vca-hero__float-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--ag-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--ag-shadow-blue);
}
.vca-hero__float-badge svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════════════ */
.vca-trust {
  background: var(--ag-white);
  border-bottom: 1px solid var(--ag-border);
}
.vca-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.vca-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--ag-border);
  transition: background var(--ag-dur) var(--ag-ease);
}
.vca-trust__item:hover {
  background: var(--ag-sky);
}
.vca-trust__item:last-child {
  border-right: none;
}
.vca-trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ag-blue-pale);
  color: var(--ag-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}
.vca-trust__icon svg {
  width: 24px;
  height: 24px;
}
.vca-trust__item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ag-navy);
  margin-bottom: 2px;
}
.vca-trust__item span {
  font-size: 0.78rem;
  color: var(--ag-muted);
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.vca-hiw {
  padding: 100px 0;
  background: var(--ag-sky);
}
.vca-hiw__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.vca-hiw__step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
}
.vca-hiw__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ag-blue), var(--ag-blue-dk));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.vca-hiw__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--ag-white);
  border: 1px solid var(--ag-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--ag-blue);
  box-shadow: 0 2px 10px rgba(11, 25, 41, 0.08);
}
.vca-hiw__icon svg {
  width: 28px;
  height: 28px;
}
.vca-hiw__step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ag-navy);
  margin: 0 0 10px;
}
.vca-hiw__step p {
  font-size: 0.88rem;
  color: var(--ag-body);
  line-height: 1.65;
  margin: 0;
}

.vca-hiw__connector {
  display: flex;
  align-items: center;
  padding-top: 36px;
  flex-shrink: 0;
}
.vca-hiw__connector svg {
  width: 80px;
  height: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   COMMISSIONS — DARK
═══════════════════════════════════════════════════════════════ */
.vca-commissions {
  position: relative;
  background: linear-gradient(145deg, #060e1c 0%, #0a1829 45%, #0e2240 100%);
  padding: 100px 0;
  overflow: hidden;
}
.vca-commissions__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Topographic survey-grid overlay — evokes land estate mapping */
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 59px,
      rgba(255, 255, 255, 0.025) 59px, rgba(255, 255, 255, 0.025) 60px
    ),
    repeating-linear-gradient(
      -25deg,
      transparent 0px, transparent 79px,
      rgba(255, 255, 255, 0.018) 79px, rgba(255, 255, 255, 0.018) 80px
    ),
    radial-gradient(
      ellipse 55% 60% at 90% 20%,
      rgba(196, 144, 42, 0.1) 0%,
      transparent 70%
    );
}

.vca-commissions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.vca-commission-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ag-radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--ag-dur) var(--ag-ease);
}
.vca-commission-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}
.vca-commission-card--featured {
  background: linear-gradient(135deg, var(--ag-blue), var(--ag-blue-dk));
  border-color: transparent;
}
.vca-commission-card--featured:hover {
  transform: translateY(-6px);
}
.vca-commission-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ag-blue-lt);
  margin-bottom: 16px;
}
.vca-commission-card--featured .vca-commission-card__badge {
  color: rgba(255, 255, 255, 0.7);
}
.vca-commission-card__rate {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  /* Light blue → white gradient: bold and crisp on dark navy */
  background: linear-gradient(135deg, #fff 0%, var(--ag-blue-lt) 60%, #bfdbfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vca-commission-card--featured .vca-commission-card__rate {
  background: linear-gradient(135deg, #fff, #bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vca-commission-card__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}
.vca-commission-card--featured .vca-commission-card__desc {
  color: rgba(255, 255, 255, 0.7);
}
.vca-commission-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.vca-commission-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.vca-commission-card__list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PERKS
═══════════════════════════════════════════════════════════════ */
.vca-perks {
  padding: 100px 0;
  background: var(--ag-white);
}
.vca-perks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vca-perk {
  background: var(--ag-white);
  border: 1px solid var(--ag-border);
  border-radius: var(--ag-radius);
  overflow: hidden;
  padding: 0;
  transition: all var(--ag-dur) var(--ag-ease);
}
.vca-perk:hover {
  transform: translateY(-4px);
  box-shadow: var(--ag-shadow);
  border-color: var(--ag-blue-xlt);
}
.vca-perk__img {
  width: 100%;
  height: auto;
  min-height: 200px;
  overflow: hidden;
  background: #f0f7ff;
  display: flex;
  align-items: stretch;
}
/* ── Perk Mockups ─────────────────────────────────────────────────────── */
.vca-perk__mockup {
  width: 100%;
  background: #f0f7ff;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vca-pm__topbar {
  display: flex;
  align-items: center;
  gap: 5px;
}
.vca-pm__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  display: inline-block;
  flex-shrink: 0;
}
.vca-pm__topbar .vca-pm__dot:nth-child(1) { background: #ff5f57; }
.vca-pm__topbar .vca-pm__dot:nth-child(2) { background: #febc2e; }
.vca-pm__topbar .vca-pm__dot:nth-child(3) { background: #28c840; }
.vca-pm__title {
  font-size: 10px;
  font-weight: 700;
  color: #374151;
  margin-left: 6px;
  letter-spacing: 0.02em;
}
/* Dashboard */
.vca-pm__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.vca-pm__stat {
  background: #fff;
  border-radius: 8px;
  padding: 9px 6px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(11,25,41,0.07);
}
.vca-pm__stat-val {
  font-size: 17px;
  font-weight: 800;
  color: #1a2b5a;
  line-height: 1;
}
.vca-pm__stat-val--green { color: #16a34a; }
.vca-pm__stat-lbl {
  font-size: 8px;
  color: #6b7280;
  margin-top: 3px;
}
.vca-pm__bar-row {
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 1px 4px rgba(11,25,41,0.07);
}
.vca-pm__bar-label {
  font-size: 9px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.vca-pm__bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}
.vca-pm__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 3px;
}
/* Referral Link */
.vca-pm__link-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 10px;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(11,25,41,0.07);
}
.vca-pm__link-url {
  font-size: 9px;
  color: #2563eb;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vca-pm__copy-btn {
  font-size: 8px;
  font-weight: 700;
  background: #2563eb;
  color: #fff;
  border-radius: 5px;
  padding: 4px 9px;
  flex-shrink: 0;
  display: inline-block;
}
.vca-pm__share-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vca-pm__share-lbl {
  font-size: 9px;
  color: #6b7280;
  white-space: nowrap;
}
.vca-pm__share-icons {
  display: flex;
  gap: 6px;
}
.vca-pm__share-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background: #6b7280;
}
.vca-pm__share-icon--wa { background: #25d366; }
.vca-pm__share-icon--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.vca-pm__share-icon--tw { background: #000; }
.vca-pm__share-icon--fb { background: #1877f2; }
.vca-pm__clicks {
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(11,25,41,0.07);
}
.vca-pm__clicks-val {
  font-size: 20px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}
.vca-pm__clicks-lbl {
  font-size: 9px;
  color: #6b7280;
}
/* Support Chat */
.vca-pm__chat-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.vca-pm__msg {
  font-size: 9px;
  line-height: 1.45;
  border-radius: 10px;
  padding: 7px 10px;
  max-width: 86%;
}
.vca-pm__msg--in {
  background: #fff;
  color: #374151;
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 3px rgba(11,25,41,0.08);
  align-self: flex-start;
}
.vca-pm__msg--out {
  background: #2563eb;
  color: #fff;
  border-bottom-right-radius: 2px;
  align-self: flex-end;
}
.vca-pm__chat-input {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 6px 12px;
  gap: 6px;
  margin-top: 2px;
}
.vca-pm__chat-placeholder {
  font-size: 9px;
  color: #9ca3af;
  flex: 1;
}
.vca-pm__send-btn {
  font-size: 11px;
  color: #2563eb;
  line-height: 1;
}
/* Performance chart */
.vca-pm__chart {
  background: #fff;
  border-radius: 8px;
  padding: 10px 10px 18px;
  box-shadow: 0 1px 4px rgba(11,25,41,0.07);
}
.vca-pm__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}
.vca-pm__chart-bar {
  flex: 1;
  background: #bfdbfe;
  border-radius: 3px 3px 0 0;
  position: relative;
}
.vca-pm__chart-bar--hi { background: #2563eb; }
.vca-pm__chart-bar span {
  font-size: 7px;
  color: #9ca3af;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.vca-pm__report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 9px;
  color: #6b7280;
  box-shadow: 0 1px 4px rgba(11,25,41,0.07);
}
.vca-pm__report-row strong {
  font-weight: 700;
  color: #1a2b5a;
  font-size: 10px;
}
.vca-pm__green { color: #16a34a !important; }
/* Work from anywhere */
.vca-pm__remote-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.vca-pm__device-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 9.5px;
  color: #374151;
  box-shadow: 0 1px 4px rgba(11,25,41,0.07);
}
.vca-pm__device-status {
  font-size: 8.5px;
  font-weight: 600;
  color: #9ca3af;
}
.vca-pm__device-status--on { color: #16a34a; }
.vca-pm__availability {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 9px;
  color: #15803d;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vca-pm__avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 5px rgba(34,197,94,0.6);
  flex-shrink: 0;
}
.vca-perk h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ag-navy);
  margin: 0 0 8px;
  padding: 20px 24px 0;
}
.vca-perk p {
  font-size: 0.88rem;
  color: var(--ag-body);
  line-height: 1.65;
  margin: 0;
  padding: 0 24px 24px;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.vca-testi {
  padding: 100px 0;
  background: var(--ag-navy);
}
.vca-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vca-testi__card {
  background: var(--ag-navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ag-radius);
  padding: 32px 24px;
  transition: all var(--ag-dur) var(--ag-ease);
}
.vca-testi__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ag-shadow-blue);
  background: #1a3058;
  border-color: rgba(255,255,255,0.14);
}
.vca-testi__card--featured,
.vca-testi__card--featured:hover {
  background: linear-gradient(135deg, var(--ag-blue), var(--ag-blue-dk));
  border-color: transparent;
}
.vca-testi__card--featured p,
.vca-testi__card--featured strong,
.vca-testi__card--featured .vca-testi__stars {
  color: #fff !important;
}
.vca-testi__card--featured span {
  color: rgba(255, 255, 255, 0.7) !important;
}
.vca-testi__card--featured .vca-testi__avatar {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.vca-testi__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.vca-testi__card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.vca-testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vca-testi__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d2040, #1a3a6a);
  color: var(--ag-blue-lt);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vca-testi__author strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
}
.vca-testi__author span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.vca-faq {
  padding: 100px 0;
  background: var(--ag-white);
}
.vca-faq__grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vca-faq__item {
  background: var(--ag-white);
  border: 1px solid var(--ag-border);
  border-radius: var(--ag-radius-sm);
  overflow: hidden;
  transition: border-color var(--ag-dur);
}
.vca-faq__item[open] {
  border-color: var(--ag-warm-border);
  background: var(--ag-white);
}
.vca-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ag-navy);
  list-style: none;
}
.vca-faq__question::-webkit-details-marker {
  display: none;
}
.vca-faq__question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ag-muted);
  transition: transform var(--ag-dur);
}
.vca-faq__item[open] .vca-faq__question svg {
  transform: rotate(180deg);
  color: var(--ag-blue);
}
.vca-faq__answer {
  padding: 0 22px 18px;
}
.vca-faq__answer p {
  font-size: 0.9rem;
  color: var(--ag-body);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   REGISTER CTA
═══════════════════════════════════════════════════════════════ */
.vca-register {
  position: relative;
  background: linear-gradient(145deg, #060e1c 0%, #0a1829 45%, #0e2240 100%);
  padding: 100px 0;
  overflow: hidden;
}
.vca-register__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Same topographic survey-grid texture as commissions section */
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 59px,
      rgba(255, 255, 255, 0.025) 59px, rgba(255, 255, 255, 0.025) 60px
    ),
    repeating-linear-gradient(
      -25deg,
      transparent 0px, transparent 79px,
      rgba(255, 255, 255, 0.018) 79px, rgba(255, 255, 255, 0.018) 80px
    ),
    radial-gradient(
      ellipse 55% 60% at 10% 80%,
      rgba(37, 99, 235, 0.14) 0%,
      transparent 70%
    );
}

.vca-register__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.vca-register__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.vca-register__text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 480px;
}
.vca-register__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vca-register__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.vca-register__checklist svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ag-green);
}

.vca-register__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ag-radius);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(16px);
}
.vca-register__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.vca-register__card > p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
  line-height: 1.5;
}
.vca-register__divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.vca-register__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.vca-register__divider span {
  position: relative;
  background: rgba(15, 23, 42, 0.9);
  padding: 0 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.vca-register__contact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}
.vca-register__contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.vca-register__contact a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */

/* ── Scroll-reveal base ─────────────────────────────────────────────────── */
.vca-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.vca-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.vca-reveal--left {
  transform: translateX(-40px);
}
.vca-reveal--left.is-visible {
  transform: translateX(0);
}
.vca-reveal--right {
  transform: translateX(40px);
}
.vca-reveal--right.is-visible {
  transform: translateX(0);
}
.vca-reveal--scale {
  transform: scale(0.92);
}
.vca-reveal--scale.is-visible {
  transform: scale(1);
}

/* Stagger delays */
.vca-reveal--d1 { transition-delay: 0.1s; }
.vca-reveal--d2 { transition-delay: 0.2s; }
.vca-reveal--d3 { transition-delay: 0.3s; }
.vca-reveal--d4 { transition-delay: 0.4s; }
.vca-reveal--d5 { transition-delay: 0.5s; }
.vca-reveal--d6 { transition-delay: 0.6s; }

/* ── Hero entrance ──────────────────────────────────────────────────────── */
.vca-hero__badge {
  animation: vcaHeroIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.1s;
}
.vca-hero__title {
  animation: vcaHeroIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.25s;
}
.vca-hero__sub {
  animation: vcaHeroIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.4s;
}
.vca-hero__highlights {
  animation: vcaHeroIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.52s;
}
.vca-hero__actions {
  animation: vcaHeroIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.64s;
}
.vca-hero__visual {
  animation: vcaHeroSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.45s;
}
@keyframes vcaHeroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vcaHeroSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Float badge ────────────────────────────────────────────────────────── */
.vca-hero__float-badge {
  animation: vcaFloat 3.5s ease-in-out infinite;
}
@keyframes vcaFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── HOW IT WORKS — step number pulse on hover ──────────────────────────── */
.vca-hiw__step:hover .vca-hiw__num {
  animation: vcaNumPop 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes vcaNumPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ── Shimmer on featured commission card ────────────────────────────────── */
.vca-commission-card--featured {
  position: relative;
  overflow: hidden;
}
.vca-commission-card--featured::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  animation: vcaShimmer 4s ease-in-out infinite;
}
@keyframes vcaShimmer {
  0%   { left: -60%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* ── Progress bar entrance ──────────────────────────────────────────────── */
.vca-hero__card-bar-fill {
  width: 0 !important;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s !important;
}
.vca-hero__card-bar-fill.vca-bar-animate {
  width: 72% !important;
}

/* ── Trust strip icon bounce ────────────────────────────────────────────── */
.vca-trust__item:hover .vca-trust__icon {
  animation: vcaBounce 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes vcaBounce {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-6px); }
  70%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

/* ── FAQ answer slide-down ──────────────────────────────────────────────── */
.vca-faq__answer {
  animation: none;
}
details[open] .vca-faq__answer {
  animation: vcaFaqOpen 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes vcaFaqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Respect reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .vca-reveal,
  .vca-hero__badge,
  .vca-hero__title,
  .vca-hero__sub,
  .vca-hero__highlights,
  .vca-hero__actions,
  .vca-hero__visual,
  .vca-hero__float-badge {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .vca-hero__card-bar-fill,
  .vca-hero__card-bar-fill.vca-bar-animate {
    width: 72% !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vca-hero__inner {
    padding: 140px 24px 60px;
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .vca-hero__visual {
    display: flex;
    width: 100%;
  }
  .vca-mockup__screen {
    min-height: 420px;
  }
  .vca-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vca-trust__item {
    border-right: none;
    border-bottom: 1px solid var(--ag-border);
  }
  .vca-hiw__grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .vca-hiw__connector {
    display: none;
  }
  .vca-commissions__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .vca-perks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vca-testi__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .vca-register__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* ── Hero ── */
  .vca-hero {
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 0;
  }
  .vca-hero__overlay {
    /* Uniform dark on mobile — directional gradient looks odd when stacked */
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Ccircle cx='45' cy='45' r='42' fill='none' stroke='rgba(255,255,255,0.045)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='28' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='14' fill='none' stroke='rgba(255,255,255,0.045)' stroke-width='0.8'/%3E%3C/svg%3E"),
      linear-gradient(180deg, rgba(4,10,28,0.88) 0%, rgba(5,13,40,0.82) 100%);
    background-size: 90px 90px, cover;
  }
  .vca-hero__inner {
    padding: 120px 20px 60px;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
  .vca-hero__visual {
    display: flex;
    margin-top: 40px;
    filter: none; /* drop-shadow too heavy on mobile */
  }
  .vca-mockup {
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.45),
      0 4px 12px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.14);
    border-radius: 12px;
  }
  .vca-mockup__chrome {
    padding: 7px 12px;
  }
  .vca-mockup__dot {
    width: 9px;
    height: 9px;
  }
  .vca-mockup__urlbar {
    font-size: 9px;
    padding: 4px 10px;
  }
  .vca-mockup__screen {
    min-height: 260px;
  }
  .vca-mockup__sidebar {
    width: 110px;
    padding: 12px 0 8px;
  }
  .vca-mockup__logo {
    padding: 2px 10px 10px;
    gap: 7px;
  }
  .vca-mockup__logo-mark {
    width: 24px;
    height: 24px;
    font-size: 8px;
    border-radius: 5px;
  }
  .vca-mockup__logo-label {
    font-size: 7px;
  }
  .vca-mockup__back-link,
  .vca-mockup__divider,
  .vca-mockup__nav .vca-mockup__nav-item:not(.vca-mockup__nav-item--active) {
    display: none;
  }
  .vca-mockup__nav-item--active {
    font-size: 8px;
    padding: 5px 8px;
    margin: 1px 6px;
  }
  .vca-mockup__main {
    padding: 12px 14px;
    gap: 8px;
  }
  .vca-mockup__page-title {
    font-size: 14px;
  }
  .vca-mockup__avatar {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  .vca-mockup__welcome {
    padding: 10px 12px;
    gap: 10px;
  }
  .vca-mockup__welcome-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 7px;
  }
  .vca-mockup__welcome-name {
    font-size: 11px;
  }
  .vca-mockup__welcome-sub {
    font-size: 9px;
  }
  .vca-mockup__cards {
    gap: 8px;
  }
  .vca-mockup__card {
    padding: 10px 10px;
    border-radius: 8px;
  }
  .vca-mockup__card-val {
    font-size: 15px;
  }
  .vca-mockup__card-lbl {
    font-size: 8px;
  }
  .vca-mockup__card-icon {
    width: 22px;
    height: 22px;
  }
  .vca-mockup__section-label {
    font-size: 9px;
  }
  .vca-hero__badge {
    margin-left: auto;
    margin-right: auto;
  }
  .vca-hero__sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vca-hero__highlights {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 16px 12px;
  }
  .vca-hero__highlight {
    padding: 8px 14px;
  }
  .vca-hero__highlight-sep {
    width: 1px;
    height: 32px;
    align-self: center;
  }
  .vca-hero__actions {
    justify-content: center;
  }
  /* other sections */
  .vca-hero__highlights {
    flex-direction: column;
    gap: 0;
  }
  .vca-hero__highlight {
    padding: 10px 0;
  }
  .vca-hero__highlight-sep {
    width: 48px;
    height: 1px;
    margin: 0 auto;
  }
  .vca-trust__grid {
    grid-template-columns: 1fr;
  }
  .vca-perks__grid {
    grid-template-columns: 1fr;
  }
  .vca-hiw {
    padding: 60px 0;
  }
  .vca-commissions {
    padding: 60px 0;
  }
  .vca-perks {
    padding: 60px 0;
  }
  .vca-testi {
    padding: 60px 0;
  }
  .vca-faq {
    padding: 60px 0;
  }
  .vca-register {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .vca-hero__inner {
    padding: 130px 16px 60px;
  }
  .vca-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
  }
  .vca-hero__highlights {
    padding: 14px 10px;
  }
  .vca-hero__highlight-num {
    font-size: 1.3rem;
  }
  .vca-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vca-btn {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .vca-container {
    padding: 0 14px;
  }
  .vca-hero__inner {
    padding: 120px 14px 56px;
  }
  .vca-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    letter-spacing: -0.01em;
  }
  .vca-hero__badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }
  .vca-hero__sub {
    font-size: 0.88rem;
  }
  .vca-hero__highlights {
    padding: 12px 8px;
  }
  .vca-hero__highlight-num {
    font-size: 1.15rem;
  }
  .vca-hero__highlight-label {
    font-size: 0.62rem;
  }
  .vca-hero__highlight {
    padding: 8px 0;
  }
  .vca-btn {
    font-size: 0.85rem;
    padding: 12px 18px;
  }
  /* Mockup even tighter */
  .vca-mockup__screen {
    min-height: 220px;
  }
  .vca-mockup__sidebar {
    width: 90px;
  }
  .vca-mockup__main {
    padding: 10px 10px;
  }
  .vca-mockup__page-title {
    font-size: 12px;
  }
  .vca-mockup__card-val {
    font-size: 13px;
  }
  /* Trust strip */
  .vca-trust__item {
    padding: 24px 14px;
  }
  /* Section headers */
  .vca-section-header h2 {
    font-size: clamp(1.5rem, 8vw, 1.9rem);
  }
  .vca-section-header p {
    font-size: 0.9rem;
  }
  /* HIW */
  .vca-hiw__step {
    padding: 0 14px;
  }
  /* Perks grid */
  .vca-perks__grid {
    gap: 16px;
  }
  /* Testi */
  .vca-testi__card {
    padding: 24px 18px;
  }
  /* FAQ */
  .vca-faq__question {
    font-size: 0.88rem;
    padding: 14px 16px;
  }
  .vca-faq__answer {
    padding: 0 16px 14px;
    font-size: 0.85rem;
  }
  /* Register */
  .vca-register__form {
    padding: 28px 18px;
  }
}

