:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --ink: #111827;
  --muted: #5b6475;
  --line: rgba(15, 23, 42, 0.08);
  --brand: #4f46e5;
  --brand-2: #6d5dfc;
  --success: #22c55e;
  --navy: #0f172a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 26%),
    linear-gradient(180deg, #fcfcff 0%, #f5f7fb 48%, #eef2ff 100%);
}

.page-shell {
  max-width: 1240px;
  margin: 28px auto;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
}

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar-wrap.scrolled {
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.18);
}

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

.hero-badge,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

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

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #5b4cf6 45%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-visual {
  position: relative;
  padding: 1rem 1rem 0;
}

.hero-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 242, 255, 0.8));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
}

.float-panel {
  position: absolute;
  border-radius: 20px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.panel-top {
  top: 6%;
  left: -5%;
  width: 210px;
}

.panel-bottom {
  right: -3%;
  bottom: 6%;
  width: 220px;
}

.section-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.feature-tile,
.trust-tile,
.price-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-tile:hover,
.trust-tile:hover,
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(79, 70, 229, 0.25);
}

.icon-chip {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(59, 130, 246, 0.1));
  color: var(--brand);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-box {
  border-radius: 22px;
  border: 1px solid rgba(34, 197, 94, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 253, 244, 0.95));
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.logo-pill {
  border-radius: 18px;
  border: 1px dashed rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.85);
  min-height: 72px;
}

.video-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(79, 70, 229, 0.7)),
    url("source-reference.png") center/cover no-repeat;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.18));
}

.play-btn {
  width: 140px;
  height: 90px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  font-size: 1.8rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.price-card.active-plan {
  border-color: rgba(79, 70, 229, 0.38);
  box-shadow: 0 24px 50px rgba(79, 70, 229, 0.15);
}

.price-value {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.compare-table thead th {
  background: #f8faff;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.faq-item .accordion-button {
  font-weight: 700;
  padding: 1.15rem 1.25rem;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: rgba(79, 70, 229, 0.06);
}

.footer-shell {
  background: linear-gradient(180deg, #101a34 0%, #0b1328 100%);
}

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

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

@media (max-width: 991.98px) {
  .hero-grid,
  .stats-strip,
  .brand-logos {
    grid-template-columns: 1fr 1fr;
  }

  .panel-top,
  .panel-bottom {
    position: static;
    width: auto;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .page-shell {
    margin: 0;
    border-radius: 0;
  }

  .hero-grid,
  .stats-strip,
  .brand-logos {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}




.mobile-hero-preview {
  display: none;
  margin-top: 1.25rem;
  padding: 0.8rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.mobile-preview-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}

.mobile-dot {
  width: 8px;
  height: 8px;
  margin-right: 0.35rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.35);
}

.mobile-hero-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.float-panel {

.mobile-action-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 80;
  display: none;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: calc(100% - 24px);
  max-width: 420px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}
}

@media (max-width: 991.98px) {
@media (max-width: 767.98px) {
  body {
    background:
      radial-gradient(circle at top, rgba(79, 70, 229, 0.14), transparent 30%),
      linear-gradient(180deg, #fbfcff 0%, #eef3ff 100%);
  }

  .page-shell {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border: 0;
  }

  .navbar-wrap {
    padding: 0.75rem 0.75rem 0;
  }

  .navbar-wrap .navbar {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  }

  .navbar-brand,
  .nav-link,
  .navbar-toggler {
    color: var(--navy) !important;
  }

  .navbar-brand small,
  .nav-link {
    color: #667085 !important;
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }

  main section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-bottom: 1rem !important;
  }

  main section:first-of-type {
    padding-top: 1rem !important;
  }

  .section-card,
  .feature-tile,
  .trust-tile,
  .price-card,
  .faq-item {
    border-radius: 20px;
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-badge,
  .mini-tag {
    font-size: 0.62rem;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-card {
    display: none;
  }

  .mobile-hero-preview {
    display: block;
  }

  .float-panel {
    position: static;
    width: 100%;
    margin-top: 0.9rem;
    padding: 0.95rem 1rem;
  }

  .stats-strip {
    gap: 0.75rem;
  }

  .stat-box {
    padding: 1rem !important;
  }

  .brand-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .logo-pill {
    min-height: 58px;
    font-size: 0.88rem;
  }

  .row.g-4 {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.9rem;
  }

  .feature-tile,
  .trust-tile,
  .price-card {
    padding: 1rem !important;
  }

  .icon-chip {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.05rem;
  }

  .video-card {
    min-height: 240px;
    border-radius: 24px;
  }

  .play-btn {
    width: 84px;
    height: 84px;
    font-size: 1.4rem;
  }

  .price-value {
    font-size: 2.5rem;
  }

  .compare-table {
    min-width: 540px;
    font-size: 0.88rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.8rem 0.6rem;
  }

  .faq-item .accordion-button {
    padding: 1rem;
    font-size: 0.98rem;
  }

  .footer-shell {
    margin: 0 1rem 6rem;
    border-radius: 24px;
    padding: 1.5rem 1rem !important;
  }

  .mobile-action-bar {
    display: flex;
  }

  .toast-container {
    bottom: 88px !important;
  }
}
}

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

  .btn-lg,
  .btn-group > .btn {
    font-size: 0.92rem;
  }

  .brand-logos {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action-bar {
    padding: 0.7rem;
    gap: 0.5rem;
  }

  .mobile-action-bar .btn {
    flex: 1 1 0;
    white-space: nowrap;
  }
}

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

  .mobile-action-bar {
    width: calc(100% - 16px);
    bottom: 8px;
  }

  .footer-shell {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}
