:root {
  --blue:   #0052EA;
  --dark:   #03113D;
  --green:  #22C55E;
  --white:  #FFFFFF;
  --muted:  #6F767E;
  --border: #E2E8F0;
  --gray:   #F1F5F9;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--dark);
  min-height: 100vh;
}

/* =====================
   MOBILE LAYOUT (default)
   ===================== */
.page {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

/* ── LEFT / HERO PANEL ── */
.hero-panel {
  position: relative;
  height: 300px;
  background: var(--dark);
  overflow: hidden;
  flex-shrink: 0;
}

.hero-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(0,82,234,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(43,127,255,0.18) 0%, transparent 60%),
    linear-gradient(155deg, #03113D 0%, #071a52 50%, #0a2060 100%);
  z-index: 0;
}
.hero-panel::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-deco {
  position: absolute;
  font-size: 200px; line-height: 1;
  color: rgba(255,255,255,0.04);
  top: -30px; right: -20px;
  transform: rotate(-20deg);
  z-index: 1; user-select: none;
  pointer-events: none;
}

.slides-wrap {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 24px 38px;
}

.slide-content {
  display: none;
  animation: fadeUp 0.5s ease forwards;
}
.slide-content.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 13px;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.slide-headline {
  font-size: 24px; font-weight: 800;
  color: #fff; line-height: 1.18;
  margin-bottom: 10px;
}
.slide-sub {
  font-size: 13px; color: rgba(255,255,255,0.52);
  line-height: 1.6; max-width: 400px;
}

.dots-row {
  position: absolute; bottom: 14px; left: 24px;
  display: flex; gap: 7px; z-index: 3;
}
.dot {
  height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.35s;
}
.dot.on { background: #fff; width: 26px; }
.dot:not(.on) { width: 10px; }

/* ── RIGHT / CARD PANEL ── */
.card-panel {
  flex: 1;
  padding: 28px 22px 36px;
  display: flex; flex-direction: column;
  background: var(--white);
}

.card-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 6px;
}
.card-title {
  font-size: 20px; font-weight: 800;
  color: var(--dark); line-height: 1.25;
  margin-bottom: 8px;
}
.card-bar {
  width: 32px; height: 3px;
  background: var(--blue); border-radius: 2px;
  margin-bottom: 22px;
}

.steps { margin-bottom: 24px; }
.step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; position: relative;
}
.step + .step::before {
  content: '';
  position: absolute; top: 0; left: 36px; right: 0;
  height: 1px; background: var(--border);
}
.step-left {
  display: flex; flex-direction: column;
  align-items: center; flex-shrink: 0; padding-top: 2px;
}
.step-circle {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,82,234,0.1);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: var(--blue);
}
.step-vline {
  width: 1.5px; height: 22px;
  background: rgba(0,82,234,0.15); margin-top: 4px;
}
.step:last-child .step-vline { display: none; }
.step-lbl {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--blue); margin-bottom: 2px;
}
.step-txt { font-size: 14px; font-weight: 700; color: var(--dark); }
.step-hint {
  font-size: 12px; color: var(--muted);
  font-weight: 400; margin-top: 2px; line-height: 1.4;
}

.trust-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--muted);
}
.trust-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--blue); color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 17px 24px; border-radius: 50px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,82,234,0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}
.cta-btn:hover  { background: #0046d0; box-shadow: 0 10px 30px rgba(0,82,234,0.38); }
.cta-btn:active { transform: scale(0.97); }
.cta-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* =====================
   DESKTOP LAYOUT
   ===================== */
@media (min-width: 900px) {
  body { display: flex; align-items: stretch; }

  .page {
    flex-direction: row;
    min-height: 100vh;
    max-width: 100%;
  }

  .hero-panel {
    flex: 1;
    height: auto;
    min-height: 100vh;
    position: sticky;
    top: 0;
  }
  .hero-panel::before {
    background:
      radial-gradient(ellipse 80% 70% at 60% 30%, rgba(0,82,234,0.3) 0%, transparent 60%),
      radial-gradient(ellipse 60% 60% at 0% 90%, rgba(43,127,255,0.2) 0%, transparent 60%),
      linear-gradient(155deg, #03113D 0%, #071a52 50%, #0a2060 100%);
  }
  .hero-deco { font-size: 340px; top: -60px; right: -40px; }

  .slides-wrap {
    padding: 0 52px 60px;
    justify-content: flex-end;
  }
  .slide-headline { font-size: 38px; }
  .slide-sub { font-size: 15px; max-width: 480px; }
  .slide-tag { font-size: 12px; }
  .dots-row { left: 52px; bottom: 24px; }
  .dot.on { width: 32px; }

  .card-panel {
    width: 480px;
    min-width: 420px;
    max-width: 520px;
    flex-shrink: 0;
    min-height: 100vh;
    padding: 60px 48px;
    justify-content: center;
    border-left: 1px solid var(--border);
  }

  .card-title { font-size: 26px; }
  .step-txt { font-size: 15px; }

  .cta-btn {
    width: auto;
    align-self: stretch;
    font-size: 16px;
    padding: 18px 32px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,82,234,0.25);
  }
  .cta-btn:hover { border-radius: 14px; }

  .card-spacer { flex: 1; }

  .trust-row { margin-bottom: 32px; }
}