/* ==============================================
   Async ONE — Design System
   ============================================== */

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Scroll Offset ---------- */
html {
  scroll-padding-top: 5rem;
}

/* ==============================================
   SCROLL REVEAL
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==============================================
   LAYOUT
   ============================================== */
.section-padding {
  padding: 3.5rem 0;
}

.section-padding-sm {
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .section-padding-sm {
    padding: 2.5rem 0;
  }
}

.container-xl {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container-xl {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-xl {
    padding: 0 2.5rem;
  }
}

.container-lg {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container-lg {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-lg {
    padding: 0 2rem;
  }
}

.two-col {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.four-col {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .four-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .four-col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

.three-col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .three-col {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .three-col {
    gap: 2rem;
  }
}

/* ==============================================
   TYPOGRAPHY
   ============================================== */
.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-heading {
    font-size: 2.75rem;
  }
}

.section-subheading {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.6;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .section-subheading {
    font-size: 1.125rem;
  }
}

.section-eyebrow {
  display: inline-block;
  padding: 0.3125rem 0.875rem;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.mx-auto-mobile {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .mx-auto-mobile {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  height: 2.5rem;
  padding: 0 1.125rem;
  font-size: 0.875rem;
  border-radius: 0.625rem;
}

.btn-primary {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
  background: white;
  border: 1.5px solid #e2e8f0;
  color: #334155;
}

.btn-secondary:hover {
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-white {
  background: white;
  color: #1d4ed8;
  font-weight: 700;
  height: 3.25rem;
  padding: 0 2.5rem;
  border-radius: 0.875rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

/* ==============================================
   CARDS
   ============================================== */
.card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid #f1f5f9;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: #e2e8f0;
}

.card-padded {
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .card-padded {
    padding: 2rem;
  }
}

.card-highlight {
  border: 2px solid #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.card-badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  background: #2563eb;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

/* ==============================================
   FEATURE CARDS
   ============================================== */
.feature-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid #f1f5f9;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: #e2e8f0;
}

.feature-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  overflow: visible;
}

.feature-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}


.feature-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.feature-card-desc {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  padding: 0.25rem 0;
}

.feature-list li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
}

.feature-card-link:hover {
  color: #1d4ed8;
  gap: 0.625rem;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feature-chip {
  padding: 0.3125rem 0.75rem;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

/* ==============================================
   ICON BOX
   ============================================== */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-sm {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
}

/* ==============================================
   TRUST BAR (hero bottom)
   ============================================== */
.trust-bar {
  margin-top: 2.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
}

@media (min-width: 640px) {
  .trust-bar {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
  }
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .trust-bar-inner {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }
}

.trust-bar-item {
  padding: 0.25rem 0;
}

@media (min-width: 640px) {
  .trust-bar-item {
    flex: 1;
    padding: 0 1.5rem;
    border-right: 1px solid #d1d5db;
  }

  .trust-bar-item:first-child {
    padding-left: 0;
  }

  .trust-bar-item:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.trust-bar-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .trust-bar-heading {
    font-size: 1.25rem;
    gap: 0.375rem;
  }
}

.trust-bar-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media (min-width: 640px) {
  .trust-bar-icon {
    width: 18px;
    height: 18px;
  }
}

.trust-bar-sub {
  font-size: 0.8125rem;
  color: #64748b;
}

/* ==============================================
   MOCKUPS
   ============================================== */
.mockup-window {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.mockup-titlebar {
  background: #f5f5f7;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.mockup-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-dot.red {
  background: #ff5f57;
}

.mockup-dot.yellow {
  background: #ffbd2e;
}

.mockup-dot.green {
  background: #28c840;
}

.mockup-title {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-left: 0.5rem;
  font-weight: 500;
}

.mockup-body {
  padding: 1.25rem;
}

.mockup-body-lg {
  padding: 1.5rem;
}

.mockup-sidebar {
  width: 140px;
  background: rgba(249, 250, 251, 0.8);
  border-right: 1px solid #f3f4f6;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex-shrink: 0;
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  cursor: pointer;
  transition: background 0.15s;
}

.mockup-nav-item:hover {
  background: #f3f4f6;
}

.mockup-nav-item.active {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 600;
}

.mockup-nav-item.bottom {
  margin-top: auto;
}

.mockup-content {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-app-layout {
  display: flex;
}

/* ==============================================
   STAT CARDS
   ============================================== */
.stat-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.stat-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.75rem;
}

.stat-card {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.stat-card-sm {
  padding: 0.5rem 0.75rem;
}

.stat-card-green {
  background: #dcfce7;
}

.stat-card-white {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.stat-value-sm {
  font-size: 0.875rem;
}

.stat-value-green {
  color: #16a34a;
}

.stat-value-brand {
  color: #2563eb;
}

.stat-sub {
  font-size: 0.625rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

/* ==============================================
   STATUS INDICATORS
   ============================================== */
.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: inline-block;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.protected {
  background: #16a34a;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.5);
}

.status-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ==============================================
   SCAN RING
   ============================================== */
.scan-ring {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: scanPulse 2s ease-in-out infinite;
}

@keyframes scanPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
  }
}

/* ==============================================
   PROGRESS BAR
   ============================================== */
.progress-bar {
  background: #f1f5f9;
  border-radius: 9999px;
  height: 0.5rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 9999px;
}

.progress-bar-fill.blue {
  background: #2563eb;
}

.progress-bar-fill.green {
  background: #16a34a;
}

/* ==============================================
   GRADIENTS
   ============================================== */
.gradient-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #eff6ff 100%);
}

.gradient-blue {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

.gradient-blue-subtle {
  background: linear-gradient(135deg, #f8fbff 0%, #eff6ff 50%, #f0f9ff 100%);
}

.gradient-vpn {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 40%, #e0e7ff 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==============================================
   NAVIGATION
   ============================================== */
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  border-radius: 0.5rem;
  transition: color 0.15s;
  text-decoration: none;
}

.nav-link:hover {
  color: #2563eb;
}

.dropdown-link {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: #334155;
  border-radius: 0.5rem;
  margin: 0 0.25rem;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.dropdown-link:hover {
  background: #eff6ff;
  color: #2563eb;
}

/* ==============================================
   DROPDOWN
   ============================================== */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown-trigger:hover .dropdown-menu,
.dropdown-trigger:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==============================================
   MOBILE MENU
   ============================================== */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 600px;
}

.mobile-menu-link {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.mobile-submenu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0.625rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mobile-submenu {
  padding-left: 0.75rem;
}

.mobile-submenu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s;
}

.mobile-submenu a:hover {
  color: #2563eb;
}

/* ==============================================
   FAQ
   ============================================== */
.faq-item {
  border: 1px solid #f1f5f9;
  border-radius: 0.875rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: #e2e8f0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.faq-trigger:hover {
  background: #f8fafc;
}

.faq-trigger-label {
  font-weight: 600;
  color: #0f172a;
  padding-right: 1rem;
  font-size: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-answer.open {
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #94a3b8;
}

.faq-icon.open {
  transform: rotate(45deg);
  color: #2563eb;
}

/* ==============================================
   PRICING
   ============================================== */
.pricing-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.pricing-card.highlighted {
  border: 2px solid #2563eb;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
}

.pricing-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.pricing-tagline {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.pricing-price.highlighted {
  color: #2563eb;
}

.pricing-period {
  font-size: 0.875rem;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #475569;
  padding: 0.3125rem 0;
}

.pricing-features .sub-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.25rem;
  padding-top: 0.5rem;
}

.pricing-toggle-group {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 0.75rem;
  padding: 0.25rem;
}

.pricing-toggle-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.625rem;
  color: #64748b;
  transition: all 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.pricing-toggle-btn.active {
  background: white;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.pricing-toggle-btn:hover:not(.active) {
  color: #334155;
}

/* ==============================================
   COMPARISON TABLE
   ============================================== */
.compare-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.compare-table th {
  text-align: left;
  padding: 1rem 1rem 1rem 0;
  font-weight: 600;
  color: #0f172a;
}

.compare-table th:not(:first-child) {
  text-align: center;
  padding: 1rem;
}

.compare-table th.highlighted {
  color: #2563eb;
}

.compare-table td {
  padding: 0.75rem 1rem 0.75rem 0;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.compare-table td:not(:first-child) {
  text-align: center;
  padding: 0.75rem 1rem;
}

.compare-table tr.alt {
  background: rgba(255, 255, 255, 0.5);
}

.check-mark {
  color: #16a34a;
  font-weight: 700;
}

.dash {
  color: #d1d5db;
}

/* ==============================================
   BENEFITS
   ============================================== */
.benefit-card {
  border-radius: 1.25rem;
  padding: 2rem;
}

@media (min-width: 640px) {
  .benefit-card {
    padding: 2.5rem;
  }
}

.benefit-card.negative {
  background: #f8fafc;
}

.benefit-card.positive {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f0ff 100%);
  border: 1px solid #bfdbfe;
}

.benefit-heading {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.benefit-heading.negative {
  color: #94a3b8;
}

.benefit-heading.positive {
  color: #2563eb;
}

.benefit-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-list .icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-list .label {
  color: #475569;
}

.benefit-card.positive .label {
  color: #0f172a;
  font-weight: 500;
}

/* ==============================================
   STEPS
   ============================================== */
.step-item {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.step-desc {
  color: #475569;
  line-height: 1.6;
}

/* ---------- Scan Steps (inline) ---------- */
.scan-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scan-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.scan-step-num.done {
  background: #16a34a;
}

.scan-step-text {
  display: flex;
  flex-direction: column;
}

.scan-step-label {
  font-weight: 600;
  color: #0f172a;
}

.scan-step-desc {
  color: #64748b;
  font-size: 0.875rem;
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonial-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid #f1f5f9;
  padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
  color: #f59e0b;
  font-size: 0.875rem;
}

.testimonial-quote {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
  font-size: 0.9375rem;
}

.testimonial-name {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.875rem;
}

.testimonial-role {
  color: #94a3b8;
  font-size: 0.8125rem;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: 1;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: white;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.8125rem;
  color: #64748b;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  color: #64748b;
  transition: color 0.15s;
}

.footer-social a:hover {
  color: white;
}

/* ==============================================
   CHECK LIST
   ============================================== */
.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #475569;
}

.check-list .check-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ==============================================
   TRUST INDICATORS
   ============================================== */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.875rem;
  color: #64748b;
}

@media (min-width: 1024px) {
  .trust-indicators {
    justify-content: flex-start;
  }
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ==============================================
   CTA ROW
   ============================================== */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .cta-row {
    justify-content: flex-start;
  }
}

/* ==============================================
   HERO IMAGE GLOW
   ============================================== */
.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 20px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  animation: heroGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* ==============================================
   TABBED FEATURE SECTION
   ============================================== */
.tab-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.tab-btn:hover {
  color: #2563eb;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.tab-btn.active {
  color: #2563eb;
  background: #eff6ff;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.25s ease;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tab-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.tab-desc {
  color: #475569;
  line-height: 1.6;
  max-width: 32rem;
  font-size: 1rem;
}

/* ==============================================
   SYSTEM REQUIREMENTS
   ============================================== */
.sys-req-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid #f1f5f9;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sys-req-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.sys-req-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
}

.sys-req-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.sys-req-value {
  font-size: 0.875rem;
  color: #64748b;
}

/* ==============================================
   TRUST / SECURITY BADGES
   ============================================== */
.trust-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-badge-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

/* ==============================================
   ABOUT SECTION
   ============================================== */
.about-logo-large {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* ==============================================
   GUARANTEE SECTION
   ============================================== */
.guarantee-card {
  background: linear-gradient(135deg, #f8fbff 0%, #eff6ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .guarantee-card {
    padding: 3.5rem;
  }
}

.guarantee-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

/* ==============================================
   SCROLLBAR
   ============================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ==============================================
   FOCUS
   ============================================== */
:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==============================================
   UTILITY
   ============================================== */
.bg-gray-subtle {
  background: #f8fafc;
}

.bg-white-soft {
  background: #fafbfc;
}

.text-navy {
  color: #0f172a;
}

.text-navy-muted {
  color: #475569;
}

.text-navy-subtle {
  color: #64748b;
}

.font-extrabold {
  font-weight: 700;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-soft {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.shadow-card {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.overflow-x-auto {
  overflow-x: auto;
}

.relative {
  position: relative;
}

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

.mb-16 {
  margin-bottom: 4rem;
}

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

.w-full {
  width: 100%;
}

.max-w-520 {
  max-width: 520px;
}

.max-w-440 {
  max-width: 440px;
}

.max-w-720 {
  max-width: 720px;
}

.drop-shadow-2xl {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}