/* Overall layout tweak for this page */
.layout__content--verify {
  padding: 32px 40px 40px;
  background: radial-gradient(circle at top left, #f5fbff 0, #f4f6fb 40%, #f5f7fc 100%);
}

/* Header */
.vo-header {
  text-align: center;
  margin-bottom: 32px;
}

.vo-header__icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d2ff, #00c38a);
  box-shadow: 0 14px 30px rgba(0, 190, 255, 0.25);
}

.vo-header__shield {
  font-size: 32px;
}

.vo-header__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.vo-header__subtitle {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

/* Benefits row */
.vo-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.vo-benefit-card {
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  background: #f9fafb;
}

.vo-benefit-card--blue {
  background: #ecf9ff;
}

.vo-benefit-card--purple {
  background: #f7ecff;
}

.vo-benefit-card--green {
  background: #e9fbf3;
}

.vo-benefit-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.vo-benefit-card__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.vo-benefit-card__body {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* Steps section */
.vo-steps {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 28px 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
}

.vo-steps__title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.vo-step + .vo-step {
  border-top: 1px solid #eef1f7;
  margin-top: 18px;
  padding-top: 18px;
}

.vo-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 18px;
  align-items: flex-start;
}

.vo-step__bullet {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #e5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vo-step__bullet--purple {
  background: #f2e6ff;
}

.vo-step__bullet--green {
  background: #e2f8ed;
}

.vo-step__bullet-num {
  font-weight: 600;
  color: #111827;
}

.vo-step__heading {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.vo-step__text {
  margin: 0 0 8px;
  font-size: 14px;
  color: #4b5563;
}

/* Tip / callout blocks */
.vo-tip {
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff7e6;
  font-size: 13px;
  display: inline-flex;
  gap: 4px;
}

.vo-tip__label {
  font-weight: 600;
  color: #92400e;
}

.vo-tip__text {
  color: #92400e;
}

.vo-callout {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
}

.vo-callout--purple {
  background: #f6edff;
  color: #5b21b6;
}

.vo-callout--green {
  background: #e3f7eb;
  color: #065f46;
}

/* CTA */
.vo-cta {
  text-align: center;
  margin-top: 8px;
}

.vo-cta__button {
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #00d2ff, #00c38a);
  box-shadow: 0 16px 35px rgba(0, 191, 255, 0.3);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.vo-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.35);
}

.vo-cta__button:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0, 191, 255, 0.25);
}

.vo-cta__note {
  margin: 8px 0 0;
  font-size: 13px;
  color: #6b7280;
}

/* Simple stacking on smaller widths (if you resize the window) */
@media (max-width: 1100px) {
  .vo-benefits {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   Mobile-only: hide sidebar + add bottom nav spacing + dropdown
------------------------------------------------------------ */

.reg-mobile-menu-btn,
.reg-mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  /* Hide the sidebar completely on mobile */
  #side-nav {
    display: none !important;
  }

  /* Remove any left offset reserved for sidebar */
  .layout__content--verify {
    margin-left: 0 !important;
    padding-bottom: calc(84px + env(safe-area-inset-bottom)) !important;
  }

  /* Header row that holds the dashboard icon (top-right) */
  .reg-header-row {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 8px 0;
    margin-bottom: 6px;
  }

  .reg-mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
  }

  .reg-mobile-menu {
    display: none;
    position: absolute;
    top: 52px;
    right: 8px;
    width: 210px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 9999;
  }

  .reg-mobile-menu.is-open {
    display: block;
  }

  .reg-mobile-menu__item {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: #0b1020;
    font-weight: 600;
    font-size: 14px;
  }

  .reg-mobile-menu__item:hover {
    background: rgba(0,0,0,0.04);
  }

  .reg-mobile-menu__item.is-active {
    background: rgba(0, 180, 170, 0.10);
  }
}
