:root {
  --bg: #f4f7fb;
  --text: #082d6d;
  --muted: #4b5567;
  --line: #d9e2f0;
  --primary: #0a4ea8;
  --primary-dark: #062d74;
  --secondary: #ff8a00;
  --secondary-dark: #ef6c00;
  --light-blue: #eaf2ff;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(8, 45, 109, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1150px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 18%, rgba(122, 77, 243, 0.14), transparent 18%),
    radial-gradient(circle at 80% 15%, rgba(245, 190, 98, 0.18), transparent 16%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.4;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 600;
  white-space: nowrap;
}

.pill-btn:hover { transform: translateY(-1px); }

.pill-btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 24px rgba(122, 77, 243, 0.22);
}

.pill-btn.primary:hover { background: var(--primary-dark); }

.pill-btn.ghost {
  background: transparent;
  color: var(--text);
}

.pill-btn.cta-light {
  background: rgba(255,255,255,.18);
  color: white;
  border: 1px solid rgba(255,255,255,.35);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(122, 77, 243, 0.08);
  color: var(--muted);
  font-size: 13px;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 0;
  position: relative;
}

h1, h2, h3, p { margin: 0; }

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .96;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 750;
}

.section-copy {
  color: var(--muted);
  max-width: 640px;
  font-size: 1rem;
  margin-top: 16px;
}

.center-copy {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 248, 250, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

.nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: conic-gradient(from 180deg, var(--primary), var(--secondary), #ff9f43, var(--primary));
  transform: rotate(45deg);
  box-shadow: 0 4px 18px rgba(122, 77, 243, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

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

.menu-toggle {
  display: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero {
  padding: 48px 0 44px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-copy p {
  margin-top: 18px;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.collage-wrap {
  position: relative;
  min-height: 630px;
}

.glow {
  position: absolute;
  inset: auto auto 20px 40px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,190,98,.34) 0%, rgba(122,77,243,.16) 44%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.people-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 92px;
  gap: 14px;
}

.photo-card,
.skill-card,
.benefit-card,
.task-accordion,
.step-card,
.quote-card,
.cta-banner,
.faq-item,
.banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-card {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 18, 31, 0.02), rgba(16, 18, 31, 0.45)), var(--bg-img, linear-gradient(135deg, #d6d6dc, #bdbfc8));
  background-size: cover;
  background-position: center;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 18, 31, 0.04), rgba(16, 18, 31, 0.46));
}

.photo-card span,
.skill-card .label,
.benefit-card .label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.skill-card {
  position: relative;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.skill-card.yellow { background: var(--secondary); color: #2a2036; }
.skill-card.orange { background: #f08e4f; }
.skill-card.purple { background: #0a4ea8; }

.span-r2 { grid-row: span 2; }
.span-r3 { grid-row: span 3; }
.span-c2 { grid-column: span 2; }

.center-intro {
  text-align: center;
  padding-top: 76px;
}

.avatar-row {
  display: inline-flex;
  margin-bottom: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  box-shadow: 0 10px 24px rgba(30, 28, 55, 0.12);
  background: linear-gradient(135deg, #d6d6dc, #bdbfc8);
  background-size: cover;
  background-position: center;
}

.avatar:first-child { margin-left: 0; }

.center-intro .cta-center {
  margin-top: 26px;
  display: inline-flex;
}

.testimonial-wrap {
  padding-top: 34px;
}

.section-title-center {
  text-align: center;
  margin-bottom: 26px;
}

.quote-card {
  background: white;
  border: 1px solid rgba(122, 77, 243, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 300px;
}

.quote-photo {
  background: linear-gradient(135deg, #c8cbd8, #9da0ad);
  background-size: cover;
  background-position: center;
}

.quote-body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.quote-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.quote-name { font-weight: 700; }

.dots {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #9bbcf0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.dots button.active {
  background: var(--primary);
  transform: scale(1.12);
}

.benefits-section {
  padding-top: 80px;
}

.ghost-title {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: rgba(72, 74, 118, 0.05);
  letter-spacing: -0.07em;
  pointer-events: none;
  user-select: none;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
  align-items: stretch;
  position: relative;
}

.benefit-grid-bottom {
  margin-top: 16px;
  grid-template-columns: 2fr 1fr;
}

.benefit-card {
  min-height: 240px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  background: white;
  overflow: hidden;
}

.benefit-card.image {
  padding: 0;
  background: linear-gradient(180deg, rgba(16, 18, 31, 0.02), rgba(16, 18, 31, 0.44)), var(--bg-img, linear-gradient(135deg, #c8cbd8, #a2a7b6));
  background-size: cover;
  background-position: center;
}

.benefit-card.image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 18, 31, 0.04), rgba(16, 18, 31, 0.58));
}

.benefit-card.image > * { position: relative; z-index: 1; }

.benefit-card.yellow { background: #ff9a1a; }
.benefit-card.pink { background: #0a4ea8; }
.benefit-card.purple { background: #dbe9ff; }

.benefit-card p {
  margin-top: 8px;
  font-size: .96rem;
  color: inherit;
  opacity: .88;
  max-width: 320px;
}

.benefit-stack {
  display: grid;
  gap: 16px;
}

.benefit-overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 24px;
}

.tall { min-height: 500px; }
.wide { min-height: 240px; }

.tasks-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.task-accordion {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.task-btn,
.faq-btn {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 18px;
}

.task-btn strong,
.faq-btn strong {
  font-size: 1rem;
  font-weight: 650;
}

.plus, .chev {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.plus::before { width: 14px; height: 2px; }
.plus::after { width: 2px; height: 14px; }

.chev::before {
  content: "⌄";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 16px;
  transition: transform .2s ease;
}

.task-content,
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--muted);
  padding: 0 22px;
}

.task-accordion.open .task-content,
.faq-item.open .faq-content {
  max-height: 200px;
  padding: 0 22px 22px;
}

.task-accordion.open .plus::after { opacity: 0; }
.faq-item.open .chev::before { transform: rotate(180deg); }

.banner-card {
  position: relative;
  min-height: 290px;
  background: linear-gradient(180deg, rgba(16, 18, 31, 0.18), rgba(16, 18, 31, 0.48)), var(--banner-img, linear-gradient(135deg, #d1d3dc, #aaadba));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  padding: 32px;
}

.banner-inner {
  max-width: 720px;
  color: white;
}

.banner-inner p {
  margin-top: 12px;
  opacity: .9;
}

.banner-inner .pill-btn { margin-top: 20px; }

.steps-head {
  text-align: center;
  margin-bottom: 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.step-card h3 { font-size: 1.28rem; }
.step-card p { color: var(--muted); }

.screen {
  width: 100%;
  margin-top: auto;
  border-radius: 22px;
  padding: 14px;
  background: #eef5ff;
  border: 1px solid #d7e6ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.screen.yellow { background: #fff2e2; border-color: #ffd29a; }
.screen.pink { background: #eef5ff; border-color: #d6e5ff; }

.browser-top {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.browser-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(122, 77, 243, .35);
}

.mini-ui {
  border-radius: 16px;
  background: white;
  padding: 14px;
  display: grid;
  gap: 12px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(30, 28, 55, 0.08);
}

.line {
  height: 10px;
  border-radius: 999px;
  background: #dbe6f5;
}

.line.sm { width: 40%; }
.line.md { width: 65%; }
.line.lg { width: 100%; }

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chip {
  border-radius: 12px;
  padding: 8px 10px;
  background: #f1f6ff;
  font-size: 12px;
  color: var(--muted);
}

.chip.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  font-weight: 700;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
}

.faq-index {
  color: var(--muted);
  min-width: 34px;
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}

.cta-section {
  padding-top: 20px;
}

.cta-banner {
  padding: 28px 30px;
  background: linear-gradient(90deg, #0a4ea8 0%, #ff8a00 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 18px 40px rgba(122, 77, 243, 0.22);
}

.cta-banner h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.site-footer {
  padding: 30px 0 50px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .tasks-grid,
  .quote-card,
  .benefit-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy { order: 1; }
  .collage-wrap { min-height: 540px; }
  .quote-card { min-height: unset; }
  .quote-photo { min-height: 280px; }
  .benefit-stack { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { gap: 18px; }
  .benefit-grid-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-actions .pill-btn.ghost {
    display: none;
  }

  .menu-toggle { display: inline-flex; }

  .nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    left: 24px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
  }

  .nav-panel.open { display: block; }

  .nav-panel .nav-links {
    display: grid;
    gap: 14px;
  }

  .nav-panel .nav-links a {
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel .nav-links a:last-child { border-bottom: 0; }

  .people-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 110px;
  }

  .ghost-title { display: none; }

  .cta-banner,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 52px 0; }
  .hero { padding-top: 24px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .pill-btn { width: 100%; }
  .people-grid { gap: 10px; grid-auto-rows: 90px; }

  .quote-body,
  .step-card,
  .benefit-card,
  .cta-banner {
    padding: 20px;
  }

  .step-card { min-height: unset; }

  .benefit-stack { grid-template-columns: 1fr; }

  .task-btn,
  .faq-btn {
    padding: 18px;
  }
}


.logo-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 76px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 62px;
}

.brand-mark {
  display: none;
}

.site-header {
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(10, 78, 168, 0.08);
}

.pill-btn.primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #ff6a00 100%);
  color: white;
  box-shadow: 0 12px 24px rgba(255, 138, 0, 0.25);
}

.pill-btn.primary:hover {
  background: linear-gradient(135deg, #ff7c00 0%, #ef6500 100%);
}

.pill-btn.cta-light {
  background: rgba(255,255,255,.14);
  color: white;
  border: 1px solid rgba(255,255,255,.35);
}

.eyebrow {
  border: 1px solid rgba(10, 78, 168, 0.10);
  color: var(--primary-dark);
}

.skill-card.yellow,
.benefit-card.yellow {
  color: white;
}

.benefit-card.purple,
.benefit-card.pink {
  color: white;
}

.cta-banner {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 100%);
  box-shadow: 0 18px 40px rgba(8, 45, 109, 0.18);
}

.brand {
  color: var(--primary-dark);
}

@media (max-width: 860px) {
  .brand-logo { height: 58px; }
  .footer-logo { height: 50px; }
}

@media (max-width: 620px) {
  .brand-logo { height: 48px; }
  .footer-logo { height: 44px; }
}


/* Updated onboarding steps section */
.steps-head {
  text-align: center;
  margin-bottom: 40px;
}

.steps-advanced {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,138,0,0.75), rgba(10,78,168,0.75));
  z-index: 0;
  pointer-events: none;
}

.connector-1 {
  left: 22%;
  width: 18%;
}

.connector-2 {
  left: 60%;
  width: 18%;
}

.step-advanced-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(8, 45, 109, 0.08);
  border: 1px solid rgba(10, 78, 168, 0.08);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  z-index: 1;
  overflow: hidden;
}

.step-advanced-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,138,0,0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(10,78,168,0.10), transparent 32%);
  opacity: 0.9;
  pointer-events: none;
}

.step-advanced-card > * {
  position: relative;
  z-index: 1;
}

.step-advanced-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(8, 45, 109, 0.16);
  border-color: rgba(255, 138, 0, 0.22);
}

.step-badge {
  display: inline-flex;
  align-self: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), #ff6a00);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(255,138,0,0.22);
}

.step-advanced-card h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.step-advanced-card p {
  color: var(--muted);
  line-height: 1.65;
}

.step-mock {
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(10, 78, 168, 0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  display: grid;
  gap: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-advanced-card:hover .step-mock {
  transform: scale(1.02);
  box-shadow: 0 16px 35px rgba(8, 45, 109, 0.08);
}

.profile-mock {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.verify-mock {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
  border-color: rgba(255, 138, 0, 0.22);
}

.test-mock {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.mock-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
}

.mock-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-input {
  height: 46px;
  border-radius: 14px;
  background: #eef3fb;
  border: 1px solid #d9e6f5;
}

.mock-input.short {
  width: 70%;
}

.mock-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.mock-cta {
  margin-top: 6px;
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary) 0%, #ff6a00 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 26px rgba(255,138,0,0.18);
}

.mock-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 30px rgba(255,138,0,0.24);
}

.mock-cta-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 12px 26px rgba(10,78,168,0.18);
}

.mock-cta-blue:hover {
  box-shadow: 0 16px 30px rgba(10,78,168,0.26);
}

.verify-banner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(8, 45, 109, 0.08);
}

.verify-banner strong,
.verify-banner span {
  display: block;
}

.verify-banner strong {
  color: var(--primary-dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.verify-banner span {
  color: var(--muted);
  font-size: 14px;
}

.verify-icons {
  display: flex;
  gap: 10px;
}

.verify-icons span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 138, 0, 0.10);
  font-size: 20px;
}

.upload-zone {
  min-height: 190px;
  border-radius: 20px;
  border: 2px dashed rgba(255, 138, 0, 0.75);
  background: rgba(255, 138, 0, 0.04);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}

.upload-arrow {
  font-size: 32px;
  color: var(--secondary-dark);
  line-height: 1;
}

.upload-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-dark);
  max-width: 220px;
}

.progress-track {
  height: 12px;
  border-radius: 999px;
  background: #dde8f6;
  overflow: hidden;
}

.progress-fill {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 999px;
}

.mock-pill {
  height: 46px;
  border-radius: 14px;
  background: #eef3fb;
  border: 1px solid #d9e6f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .steps-advanced {
    grid-template-columns: 1fr;
  }

  .steps-connector {
    display: none;
  }
}

@media (max-width: 620px) {
  .step-advanced-card {
    padding: 20px;
    border-radius: 22px;
  }

  .step-mock {
    padding: 14px;
    border-radius: 18px;
  }

  .mock-grid.two {
    grid-template-columns: 1fr;
  }

  .verify-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.compact-verify {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.verify-copy-row {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.compact-verify .verify-icons {
  justify-content: center;
}
