:root {
  /* ── Navrex brand palette ── */
  --navy:           #0D2750;
  --navy-mid:       #173A6E;
  --cyan:           #20C4E8;
  --cyan-dim:       rgba(32, 196, 232, 0.14);
  --cyan-border:    rgba(32, 196, 232, 0.35);

  /* ── Legacy aliases (keep for other pages) ── */
  --primary-color:  #20C4E8;
  --secondary-color:#1A73E8;
  --dark-blue:      #0D2750;
  --text-dark:      #212529;
  --text-muted:     #6c757d;
  --bg-light:       #F4F7FB;

  /* ── Navbar tokens ── */
  --nb-height:      68px;
  --nb-bg:          #ffffff;
  --nb-border:      #EDF1F7;
  --nb-link:        #3D5278;
  --nb-link-hover:  var(--navy);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  padding-top: var(--nb-height);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

/* ════════════════════════════════════════════════
   Navigation Bar  —  Navrex redesign
   ════════════════════════════════════════════════ */

/* ── Shell ────────────────────────────────────── */
.navbar-custom {
  background: var(--nb-bg);
  border-bottom: 1px solid var(--nb-border);
  height: var(--nb-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow 0.2s ease;
}

.navbar-custom.scrolled {
  box-shadow: 0 2px 16px rgba(13, 39, 80, 0.08);
}

/* ── Brand / Logo ─────────────────────────────── */
.navbar-brand-custom {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.navbar-brand-custom:hover { opacity: 0.82; }

.navbar-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── Nav links ────────────────────────────────── */
.navbar-nav-custom {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  color: var(--nb-link);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.nav-link-custom:hover {
  color: var(--nb-link-hover);
  background: var(--cyan-dim);
}

.nav-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.65;
}

/* ── Auth section ─────────────────────────────── */
.navbar-auth-custom {
  flex-shrink: 0;
}

/* Avatar button (logged in) */
.btn-nav-account {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--nb-border);
  background: var(--bg-light);
  text-decoration: none;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-nav-account:hover {
  border-color: var(--cyan-border);
  background: var(--cyan-dim);
  color: var(--navy);
}

.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  user-select: none;
}

.nav-avatar-name {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Logout button */
.btn-nav-logout {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-nav-logout svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-nav-logout:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.07);
  border-color: rgba(220, 53, 69, 0.2);
}

/* Login / Register (guest) */
.btn-nav-login {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--nb-link);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.btn-nav-login:hover {
  color: var(--navy);
  background: var(--cyan-dim);
}

.btn-nav-register {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a5fa8 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(13, 39, 80, 0.25);
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.btn-nav-register:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}

/* ── Mobile toggle ────────────────────────────── */
.navbar-toggler-custom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: transparent;
  border: 1px solid var(--nb-border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.navbar-toggler-custom:hover {
  border-color: var(--cyan-border);
  background: var(--cyan-dim);
}

.navbar-toggler-custom span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* X animation when open */
.navbar-toggler-custom.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler-custom.open span:nth-child(2) { opacity: 0; }
.navbar-toggler-custom.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile dropdown menu ─────────────────────── */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--nb-border);
  background: var(--nb-bg);
  padding: 0.75rem 0 1rem;
  box-shadow: 0 8px 24px rgba(13, 39, 80, 0.08);
}

.mobile-menu.show { display: block; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.mobile-nav-links .nav-link-custom {
  padding: 0.65rem 0.5rem;
  border-radius: 0;
  border-bottom: 1px solid var(--nb-border);
  font-size: 0.9rem;
}

.mobile-nav-links .nav-link-custom:last-child { border-bottom: none; }

.mobile-auth-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.mobile-auth-row .btn-nav-login,
.mobile-auth-row .btn-nav-register,
.mobile-auth-row .btn-nav-account,
.mobile-auth-row .btn-nav-logout {
  flex: 1;
  justify-content: center;
}

/* ── Scroll shadow trigger ────────────────────── */

/* Auth Modal */
.auth-modal {
  border-radius: 16px;
  border: 1px solid #e9ecef;
  box-shadow: 0 20px 60px rgba(13, 39, 80, 0.15);
}

/* .btn-login — used in login modal for OAuth social buttons */
.btn-login {
  color: var(--navy);
  background: var(--bg-light);
  border: 1px solid var(--nb-border) !important;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-login:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan-border) !important;
  color: var(--navy);
}



.auth-modal .modal-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.auth-modal .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.auth-modal .btn-close {
  background-size: 12px;
  box-shadow: none;
}

.auth-modal .modal-body {
  padding: 1.5rem;
}

.auth-form .form-label {
  font-weight: 500;
  color: var(--text-dark);
}

.auth-form .form-control {
  border-radius: 10px;
  border: 1px solid #dbe2ea;
  padding: 0.75rem 1rem;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(32, 190, 255, 0.15);
}

.auth-form .btn-primary-custom {
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  border-radius: 12px;
}

.auth-page {
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, rgba(32, 190, 255, 0.05), rgba(26, 115, 232, 0.08));
  padding: 120px 1rem 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 25px 60px rgba(11, 61, 145, 0.15);
  padding: 2.5rem 2.25rem;
  text-align: center;
}

.auth-card__header {
  margin-bottom: 1.75rem;
}

.auth-card .auth-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(32, 190, 255, 0.15), rgba(26, 115, 232, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card .auth-icon svg {
  width: 30px;
  height: 30px;
  color: var(--secondary-color);
}

.auth-card .auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.auth-card .auth-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.auth-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.auth-card__subtitle {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.auth-card__form {
  text-align: left;
}

.auth-alert {
  background: rgba(255, 82, 82, 0.08);
  border: 1px solid rgba(255, 82, 82, 0.3);
  color: #d62839;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.auth-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.auth-field-group:last-of-type {
  margin-bottom: 0.75rem;
}

.auth-field-error {
  color: #d62839;
  font-size: 0.85rem;
}

.auth-field-error span + span {
  margin-left: 0.35rem;
}

.auth-card__actions {
  margin-top: 0;
}

.auth-card__footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.auth-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-link-muted {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-link-muted:hover {
  color: var(--secondary-color);
}

.auth-card .form-control {
  border-radius: 12px;
  border: 1px solid #dbe2ea;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-card .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(32, 190, 255, 0.15);
}

.auth-card__footer span {
  color: var(--text-muted);
}

.auth-page .auth-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
}

.auth-page .auth-icon svg {
  width: 32px;
  height: 32px;
}

.logout-modal .logout-message {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.auth-modal .auth-icon,
.auth-modal .logout-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(32, 190, 255, 0.15), rgba(26, 115, 232, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-modal .auth-icon svg,
.auth-modal .logout-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary-color);
}

.auth-modal .auth-logo,
.modal-auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.auth-modal .auth-logo-img,
.modal-auth-logo .auth-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logout-modal .logout-confirm-form {
  margin: 0;
}

.logout-modal .logout-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.btn-danger-custom {
  background: linear-gradient(135deg, #ff5252, #d62839);
  border: none;
  color: white;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 12px rgba(214, 40, 57, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.btn-danger-custom:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(214, 40, 57, 0.35);
}

.btn-ghost-neutral {
  background: rgba(32, 190, 255, 0.08);
  color: var(--secondary-color);
  border: 1px solid rgba(32, 190, 255, 0.2);
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.btn-ghost-neutral:hover {
  background: rgba(32, 190, 255, 0.14);
  border-color: rgba(32, 190, 255, 0.35);
  color: var(--secondary-color);
}

.login-modal .modal-header {
  padding-top: 1.25rem;
}

.login-modal .modal-title {
  font-size: 1.2rem;
}

.auth-form {
  text-align: left;
}

.auth-form .auth-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.auth-form .auth-field-group:last-of-type {
  margin-bottom: 0.75rem;
}

.auth-form .auth-actions {
  margin-top: 0;
}

.auth-secondary-action {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-secondary-action .auth-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}

.auth-secondary-action .auth-link:hover {
  text-decoration: underline;
}

/* Telegram Modal Styles */
.telegram-instructions {
  background: rgba(32, 190, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(32, 190, 255, 0.15);
  color: var(--text-dark);
  line-height: 1.6;
}

.telegram-instructions ol {
  margin-bottom: 0;
}

.telegram-instructions code {
  background: rgba(26, 115, 232, 0.1);
  color: var(--secondary-color);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.telegram-qr-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.telegram-qr-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  border: 2px solid rgba(32, 190, 255, 0.2);
  box-shadow: 0 4px 12px rgba(32, 190, 255, 0.15);
}

.telegram-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.2s ease;
  text-decoration: none;
  vertical-align: middle;
}

.telegram-link-icon:hover {
  color: var(--primary-color);
  transform: scale(1.15);
}

.telegram-link-icon svg {
  display: block;
}

@media (max-width: 575px) {
  .telegram-qr-image {
    max-width: 220px;
  }

  .telegram-instructions {
    padding: 0.85rem 1rem;
  }
}

@media (max-width: 575px) {
  .auth-page {
    padding: 110px 1rem 60px;
  }

  .auth-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .auth-card__title {
    font-size: 1.35rem;
  }

  .auth-card .form-control {
    padding: 0.85rem 0.95rem;
  }

  .auth-hero {
    min-height: auto;
    display: block;
    padding-top: 120px;
    padding-bottom: 60px;
  }
}


/* ════════════════════════════════════════════════
   Landing Page  —  Navrex redesign
   ════════════════════════════════════════════════ */

/* ── Shared section ─────────────────────────────── */
.lp-section {
  padding: 88px 0;
}

.lp-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lp-section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.lp-section-title--left { text-align: left; }

.lp-section-sub {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ── CTA buttons ─────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a5fa8 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(13,39,80,.28);
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s ease, transform .15s ease;
}

.lp-btn-primary:hover {
  opacity: .88;
  transform: translateY(-1px);
  color: #fff;
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--nb-border);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}

.lp-btn-ghost svg { width: 16px; height: 16px; flex-shrink: 0; }

.lp-btn-ghost:hover {
  border-color: var(--cyan-border);
  background: var(--cyan-dim);
  color: var(--navy);
}

/* legacy class used elsewhere */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity .2s ease;
}
.btn-primary-custom:hover { opacity: .88; color: #fff; }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--nb-border);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.btn-outline-custom:hover {
  border-color: var(--cyan-border);
  background: var(--cyan-dim);
  color: var(--navy);
}

/* ── HERO ────────────────────────────────────────── */
.lp-hero {
  background: #fff;
  padding: 80px 0 90px;
  border-bottom: 1px solid var(--nb-border);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,196,232,.07) 0%, transparent 65%);
  pointer-events: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,107,.05) 0%, transparent 65%);
  pointer-events: none;
}

.lp-beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  font-size: 0.78rem;
  font-weight: 700;
  color: #0a7ea4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.lp-beta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  animation: beta-pulse 2s ease-in-out infinite;
}

@keyframes beta-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(32,196,232,.45); }
  50%      { box-shadow: 0 0 0 5px rgba(32,196,232,0); }
}

.lp-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.lp-hero-accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.25rem;
}

.lp-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* trust pills */
.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lp-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-light);
  border: 1px solid var(--nb-border);
  font-size: 0.78rem;
  font-weight: 500;
  color: #475569;
}

.lp-trust-pill svg { width: 13px; height: 13px; color: var(--cyan); flex-shrink: 0; }

/* hero visual (mock card) */
.lp-hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.lp-mock-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--nb-border);
  box-shadow: 0 8px 32px rgba(13,39,80,.1);
  padding: 1.5rem;
}

.lp-mock-card--main { width: 100%; }

.lp-mock-card--mini {
  position: absolute;
  padding: 0.85rem 1.1rem;
  min-width: 130px;
}

.lp-mock-card--tl { top: -18px; right: -18px; }
.lp-mock-card--br { bottom: -18px; left: -18px; }

.lp-mock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9aafc9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.lp-mock-dot--cyan { background: var(--cyan); }

.lp-mock-badge {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(32,196,232,.15);
  color: #0a7ea4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lp-mock-balance {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.lp-mock-balance span { font-size: 1.2rem; color: #9aafc9; }

.lp-mock-change {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lp-mock-change svg { width: 13px; height: 13px; }
.lp-mock-change--up { color: #198754; }

.lp-sparkline { width: 100%; height: 40px; display: block; }

/* ── FEATURES ────────────────────────────────────── */
.lp-features { background: var(--bg-light); }

.lp-feat-card {
  background: #fff;
  border: 1px solid var(--nb-border);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  text-decoration: none;
  color: inherit;
}

.lp-feat-card:hover {
  box-shadow: 0 8px 28px rgba(13,39,80,.1);
  transform: translateY(-3px);
  border-color: var(--cyan-border);
}

.lp-feat-card--link { cursor: pointer; }

.lp-feat-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.lp-feat-icon svg { width: 22px; height: 22px; }

.lp-feat-icon--navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--cyan);
}

.lp-feat-icon--cyan {
  background: linear-gradient(135deg, rgba(32,196,232,.18), rgba(32,196,232,.08));
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
}

.lp-feat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-feat-arrow { width: 13px; height: 13px; opacity: 0.5; }

.lp-feat-desc {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── HOW IT WORKS ────────────────────────────────── */
.lp-hiw { background: #fff; }

.lp-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.lp-step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cyan-dim);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}

.lp-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.lp-step-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ── SECURITY ────────────────────────────────────── */
.lp-security { background: var(--bg-light); }

.lp-security-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.lp-security-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-top: 1rem;
}

.lp-security-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--nb-border);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.lp-security-item:hover {
  border-color: var(--cyan-border);
  box-shadow: 0 4px 16px rgba(13,39,80,.07);
}

.lp-security-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

.lp-security-icon svg { width: 18px; height: 18px; }

.lp-security-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.lp-security-sub {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

/* ── Auth hero (login/register pages) ────────────── */
.auth-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: calc(100vh - var(--nb-height));
  display: flex;
  align-items: center;
  background: #fff;
}

.auth-hero > .container { flex: 1 0 auto; }

.auth-hero .lp-hero-sub { max-width: 460px; }

.auth-hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
  color: var(--text-dark);
  font-size: 1rem;
}

.auth-hero-list li {
  position: relative;
  padding-left: 28px;
}

.auth-hero-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--navy-mid));
}

.hero-auth-card-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-auth-card-wrapper { justify-content: flex-end; }
}

.hero-auth-card { width: 100%; max-width: 420px; }

/* legacy hero classes (used by other pages) */
.hero-section {
  background: #fff;
  padding: 80px 0 88px;
  border-bottom: 1px solid var(--nb-border);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-content, .hero-image { position: relative; z-index: 1; }

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(13,39,80,.12);
}

/* legacy feature classes kept for compatibility */
.features-section { padding: 80px 0; background: var(--bg-light); }
.feature-card {
  padding: 1.75rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--nb-border);
  transition: box-shadow .2s ease, transform .2s ease;
  height: 100%;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(13,39,80,.08); }
.feature-card-link { text-decoration: none; color: inherit; display: block; }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--cyan);
}
.feature-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.feature-description { color: #64748b; line-height: 1.6; margin-bottom: 0; font-size: .9rem; }



/* Footer Section */
.footer-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 60px 0 30px;
  margin-top: 0;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 350px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(32, 190, 255, 0.3);
}

.footer-bottom {
  border-top: 1px solid #dee2e6;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }


  .auth-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .auth-hero-list {
    margin-top: 1.25rem;
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
  }

  .hero-section {
    padding: 50px 0 40px;
  }

  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-brand,
  .footer-links-section {
    margin-bottom: 2rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* =====================
   Messages / Toast
   ===================== */
.mv-toast-container {
  position: fixed;
  top: 96px;
  right: 1.25rem;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
  width: calc(100vw - 2.5rem);
}

.mv-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(11, 61, 145, 0.13);
  border-left: 4px solid transparent;
  animation: mv-toast-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mv-toast--hiding {
  opacity: 0;
  transform: translateX(30px);
}

/* variants */
.mv-toast--error   { border-left-color: #dc3545; }
.mv-toast--success { border-left-color: #198754; }
.mv-toast--warning { border-left-color: #ffc107; }
.mv-toast--info,
.mv-toast--debug   { border-left-color: var(--primary-color); }

.mv-toast__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}
.mv-toast__icon svg { width: 22px; height: 22px; display: block; }

.mv-toast--error   .mv-toast__icon { color: #dc3545; }
.mv-toast--success .mv-toast__icon { color: #198754; }
.mv-toast--warning .mv-toast__icon { color: #e6a800; }
.mv-toast--info    .mv-toast__icon,
.mv-toast--debug   .mv-toast__icon { color: var(--secondary-color); }

.mv-toast__body {
  flex: 1;
  min-width: 0;
}

.mv-toast__text {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.45;
  word-break: break-word;
}

.mv-toast__close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-muted);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.mv-toast__close:hover { opacity: 1; }
.mv-toast__close svg { width: 18px; height: 18px; }

@keyframes mv-toast-in {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 576px) {
  .mv-toast-container {
    top: auto;
    bottom: 1.25rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-width: none;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(32, 190, 255, 0.1), rgba(26, 115, 232, 0.12));
  border: 1px solid rgba(32, 190, 255, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #20BEFF;
  animation: badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(32, 190, 255, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(32, 190, 255, 0); }
}

/* Trust Strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 1.5rem;
}

.trust-item svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.trust-separator {
  width: 1px;
  height: 20px;
  background: #dee2e6;
}

@media (max-width: 767px) {
  .trust-separator {
    display: none;
  }

  .trust-item {
    padding: 0.25rem 1rem;
  }
}

/* ============================================================
   Hero Mockup (browser frame with dark dashboard inside)
   ============================================================ */

.hero-mockup-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-app-frame {
  width: 100%;
  max-width: 520px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(11, 61, 145, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-app-frame:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0.5deg);
  box-shadow:
    0 32px 80px rgba(11, 61, 145, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

.app-frame-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.frame-dots {
  display: flex;
  gap: 5px;
}

.frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.frame-url-bar {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 0.22rem 0.75rem;
  font-size: 0.72rem;
  color: #94A3B8;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  flex: 1;
  max-width: 200px;
}

.app-frame-body {
  background: #0B1628;
}

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-stat-item {
  padding: 0.85rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-stat-item:last-child {
  border-right: none;
}

.mockup-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F1F5F9;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.mockup-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.mockup-assets {
  padding: 0.25rem 0;
}

.mockup-asset {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-asset:last-child {
  border-bottom: none;
}

.mockup-chain {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.mockup-chain::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
}

.mockup-chain.eth { background: rgba(98, 126, 234, 0.2); }
.mockup-chain.eth::after { background: #627EEA; }
.mockup-chain.btc { background: rgba(247, 147, 26, 0.2); }
.mockup-chain.btc::after { background: #F7931A; }
.mockup-chain.sol { background: rgba(153, 69, 255, 0.2); }
.mockup-chain.sol::after { background: #9945FF; }

.mockup-asset-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
  flex: 0 0 68px;
}

.mockup-asset-addr {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mockup-asset-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}

.mockup-chart-area {
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-chart-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.mockup-chart-svg {
  width: 100%;
  height: 52px;
  display: block;
}

/* Trust Section */
.trust-section {
  background: white;
  border-bottom: 1px solid #EEF2F7;
}

/* ============================================================
   Landing page shared section header
   ============================================================ */

.lp-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lp-section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0B1426;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.lp-section-subtitle {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 0;
}

/* ============================================================
   How It Works section
   ============================================================ */

.hiw-section {
  background: #F8FAFC;
  padding: 80px 0;
  border-top: 1px solid #EEF2F7;
  border-bottom: 1px solid #EEF2F7;
}

.hiw-step {
  padding: 0;
}

.hiw-num {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1.25rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(26, 115, 232, 0.3);
}

.hiw-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0B1426;
  margin-bottom: 0.65rem;
}

.hiw-desc {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   Security section
   ============================================================ */

.security-section {
  background: white;
  padding: 80px 0;
}

.security-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.security-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0B1426;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.security-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.security-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.security-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26, 115, 232, 0.07);
  border: 1px solid rgba(26, 115, 232, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary-color);
}

.security-icon svg {
  width: 18px;
  height: 18px;
}

.security-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 0.2rem;
}

.security-item-desc {
  font-size: 0.83rem;
  color: #64748B;
  line-height: 1.5;
}

/* ============================================================
   Responsive overrides
   ============================================================ */

@media (max-width: 991px) {
  .hero-mockup-wrapper {
    justify-content: center;
    margin-top: 1rem;
  }

  .hero-app-frame {
    transform: none;
    max-width: 460px;
  }

  .hero-app-frame:hover {
    transform: none;
    box-shadow: 0 24px 64px rgba(11, 61, 145, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .hero-subtitle {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .hero-app-frame {
    display: none;
  }

  .hero-section {
    padding: 60px 0 50px;
  }

  .hero-title {
    font-size: 2.4rem;
    letter-spacing: -0.02em;
  }

  .lp-section-title {
    font-size: 1.6rem;
  }

  .hiw-step {
    text-align: center;
  }

  .security-section .offset-lg-1 {
    margin-top: 2rem;
  }
}
