:root {
  --primary: #0f62fe;
  --primary-dark: #073cbe;
  --accent: #12b981;
  --accent-dark: #069669;
  --text: #111827;
  --muted: #5f6b7a;
  --surface: #f7fafc;
  --surface-strong: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.86);
  --border: #dce6f2;
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --bg: radial-gradient(circle at 0% 0%, #eef5ff 0%, #f8fcff 28%, #f3f8ff 52%, #f8fcff 100%);
  --hero-bg: linear-gradient(145deg, rgba(15, 98, 254, 0.08) 0%, rgba(18, 185, 129, 0.07) 50%, rgba(15, 98, 254, 0.03) 100%);
}

[data-theme="dark"] {
  --text: #e5eef9;
  --muted: #9aaec6;
  --surface: #071120;
  --surface-strong: #0f172a;
  --surface-muted: rgba(15, 23, 42, 0.84);
  --border: rgba(148, 163, 184, 0.24);
  --shadow-sm: 0 10px 26px rgba(2, 8, 23, 0.28);
  --shadow: 0 24px 74px rgba(2, 8, 23, 0.52);
  --bg: radial-gradient(circle at 0% 0%, #020817 0%, #04101f 36%, #07172e 72%, #091c33 100%);
  --hero-bg: linear-gradient(145deg, rgba(14, 116, 144, 0.2) 0%, rgba(15, 98, 254, 0.16) 45%, rgba(18, 185, 129, 0.1) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

a { text-decoration: none; }

.page-shell { min-height: 100vh; }

.announcement-bar {
  position: relative;
  z-index: 30;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(15, 98, 254, 0.1), rgba(18, 185, 129, 0.1));
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.72);
}

[data-theme="dark"] .announcement-pill {
  color: #d6e8ff;
  background: rgba(2, 6, 23, 0.5);
}

.announcement-text {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
  background: var(--hero-bg);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 98, 254, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 98, 254, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-one {
  width: 260px;
  height: 260px;
  top: -90px;
  left: -120px;
  background: rgba(15, 98, 254, 0.2);
}

.orb-two {
  width: 280px;
  height: 280px;
  top: 130px;
  right: -90px;
  background: rgba(18, 185, 129, 0.16);
}

.navbar-brand { color: var(--text) !important; }

.btn-link.text-dark,
.btn-link.text-dark:focus,
.btn-link.text-dark:hover {
  color: var(--text) !important;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.theme-toggle .icon-sun { display: none; }

[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline-block; }

.btn-pill {
  border-radius: 999px;
  padding-inline: 1.25rem;
}

.btn-primary {
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  border: 0;
  box-shadow: 0 12px 30px rgba(15, 98, 254, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(140deg, var(--primary-dark), #052f96);
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-color: var(--border);
  color: var(--primary);
  background: var(--surface-muted);
}

.btn-outline-primary:hover {
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}

.hero-copy .display-4 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.hero-badges .eyebrow { margin-bottom: 0; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: rgba(18, 185, 129, 0.15);
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-highlights i { color: var(--accent); }

.hero-media-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.metric-card {
  padding: 1rem 1rem 0.9rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.metric-label {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  background: rgba(15, 98, 254, 0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-mockup {
  position: relative;
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(220, 230, 242, 0.8);
  background: var(--surface-muted);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: float-card 6s ease-in-out infinite;
}

.mockup-window {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.mockup-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.toolbar-url {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.mockup-body {
  display: flex;
  min-height: 420px;
}

.mockup-sidebar {
  width: 28%;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, #eef4ff, #f8fbff);
}

[data-theme="dark"] .mockup-sidebar {
  background: linear-gradient(180deg, #0b1a33, #0a172b);
}

.sidebar-pill {
  width: 85%;
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.2);
}

.sidebar-pill.short { width: 54%; }

.mockup-content {
  flex: 1;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
}

.mockup-card {
  min-height: 72px;
  padding: 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 98, 254, 0.12);
  background: linear-gradient(140deg, rgba(15, 98, 254, 0.12), rgba(18, 185, 129, 0.1));
}

.mockup-card.large {
  min-height: 116px;
  display: grid;
  gap: 0.55rem;
}

.mockup-head {
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  height: 60px;
  gap: 0.45rem;
}

.mockup-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.mockup-chart span:nth-child(1) { height: 40%; }
.mockup-chart span:nth-child(2) { height: 72%; }
.mockup-chart span:nth-child(3) { height: 56%; }
.mockup-chart span:nth-child(4) { height: 88%; }

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

.mockup-label {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mockup-value {
  margin-top: 0.2rem;
  color: var(--text);
  font-weight: 700;
}

.mockup-floating {
  position: absolute;
  right: -10px;
  bottom: 22px;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 30px rgba(6, 150, 105, 0.33);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  margin-right: 0.45rem;
  display: inline-block;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  animation: pulse 1.6s infinite;
}

.section { padding: 6rem 0; }

.section-compact { padding: 1.5rem 0 0; }

.section-soft {
  background: linear-gradient(180deg, rgba(15, 98, 254, 0.03), rgba(255, 255, 255, 0));
}

[data-theme="dark"] .section-soft {
  background: linear-gradient(180deg, rgba(15, 98, 254, 0.07), rgba(2, 8, 23, 0));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.section-title {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.logo-strip {
  position: relative;
  z-index: 2;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--surface-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.logo-pill strong {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background: rgba(15, 98, 254, 0.1);
  font-size: 0.68rem;
}

.logo-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 98, 254, 0.35);
}

.feature-card,
.pricing-card,
.capture-card,
.system-card,
.process-step {
  border: 1px solid rgba(220, 230, 242, 0.85);
  border-radius: 24px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.pricing-card:hover,
.capture-card:hover,
.system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 98, 254, 0.35);
  box-shadow: var(--shadow);
}

.feature-card { padding: 2rem; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(15, 98, 254, 0.16), rgba(18, 185, 129, 0.18));
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--text);
}

.feature-list i { color: var(--accent); }

.system-card { padding: 1.2rem; }

.system-visual {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(140deg, var(--surface-strong), var(--surface));
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.visual-top,
.visual-panel {
  border-radius: 16px;
  border: 1px solid rgba(15, 98, 254, 0.11);
  background: linear-gradient(140deg, rgba(15, 98, 254, 0.12), rgba(18, 185, 129, 0.12));
}

.visual-top {
  min-height: 96px;
  padding: 1rem;
}

.visual-top h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.visual-top p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.visual-row {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1.35fr;
}

.visual-panel { min-height: 96px; }

.visual-panel.wide { min-height: 110px; }

.real-shot-card {
  padding: 0.85rem;
  display: grid;
  align-content: center;
  gap: 0.2rem;
}

.real-shot-card h4 {
  margin: 0;
  font-size: 0.77rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.real-shot-card strong {
  font-size: 1rem;
  color: var(--text);
}

.real-shot-card span {
  font-size: 0.76rem;
  color: var(--muted);
}

.capture-card { padding: 0.75rem; }

.capture-placeholder {
  min-height: 220px;
  border-radius: 18px;
  border: 1px dashed rgba(15, 98, 254, 0.25);
  background: linear-gradient(145deg, rgba(15, 98, 254, 0.12), rgba(18, 185, 129, 0.08));
  color: var(--primary-dark);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.capture-placeholder i {
  font-size: 1.7rem;
  color: var(--primary);
}

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

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

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

.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 98, 254, 0.2), rgba(18, 185, 129, 0.25));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(145deg, var(--primary), var(--accent));
}

.pricing-card { padding: 2rem; }

.pricing-card.featured {
  border-color: rgba(15, 98, 254, 0.35);
  background: linear-gradient(180deg, rgba(15, 98, 254, 0.07), rgba(255, 255, 255, 0.98));
  transform: translateY(-4px);
}

[data-theme="dark"] .pricing-card.featured {
  background: linear-gradient(180deg, rgba(15, 98, 254, 0.16), rgba(15, 23, 42, 0.94));
}

.recommended {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 185, 129, 0.18);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin: 0.3rem 0;
  font-size: 2.3rem;
  font-weight: 700;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
  display: grid;
  gap: 0.7rem;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}

.pricing-card li i { color: var(--accent); }

.app-card {
  border: 1px solid rgba(220, 230, 242, 0.85);
  border-radius: 24px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-sm);
}

.highlight-col {
  background: rgba(15, 98, 254, 0.08) !important;
  font-weight: 700;
}

.calculator-rate {
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  background: var(--surface);
}

.goal-track {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.35);
}

.goal-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.referral-spotlight {
  border: 1px solid rgba(15, 98, 254, 0.22);
  border-radius: 30px;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(15, 98, 254, 0.08), rgba(18, 185, 129, 0.08));
  box-shadow: var(--shadow-sm);
}

.referral-main,
.referral-proof {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  padding: 1.4rem;
}

.referral-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(15, 98, 254, 0.14);
  margin-bottom: 0.8rem;
}

.referral-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.referral-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--text);
}

.referral-benefits i {
  color: var(--accent);
}

.referral-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.referral-kpi-grid div {
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 0.7rem;
  background: var(--surface);
}

.referral-kpi-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.referral-kpi-grid strong {
  font-size: 1.05rem;
}

.five-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.five-steps::before {
  left: 10%;
  right: 10%;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--surface-muted);
}

.accordion-button {
  color: var(--text);
  font-weight: 600;
  box-shadow: none;
  background: transparent;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-dark);
  background: rgba(15, 98, 254, 0.06);
}

.cta-block {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 22px 60px rgba(15, 98, 254, 0.3);
}

.cta-strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cta-block .btn-light {
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.24);
}

.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 250, 255, 0.9));
}

[data-theme="dark"] .footer {
  background: linear-gradient(180deg, rgba(4, 13, 26, 0.72), rgba(2, 8, 23, 0.86));
}

.footer h3 {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.footer-social {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--primary);
  background: var(--surface-muted);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.video-frame {
  position: relative;
  width: min(100%, 850px);
  aspect-ratio: 16 / 9;
  margin: 1rem auto 1.35rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.video-fallback i {
  font-size: 2.5rem;
  color: var(--primary);
}

.landing-audio-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0.85rem 0.9rem;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@media (max-width: 991px) {
  .navbar .container {
    align-items: flex-start;
    gap: 0.7rem;
  }
  .navbar-brand {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .navbar .ms-auto {
    margin-left: 0 !important;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 0.45rem;
  }
  .navbar .ms-auto .btn-link {
    padding-left: 0;
    padding-right: 0.55rem;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid::before { display: none; }
  .five-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mockup-floating {
    right: auto;
    left: 1.25rem;
    bottom: -14px;
  }
  .video-frame {
    margin-top: 0.85rem;
    margin-bottom: 1.15rem;
  }
}

@media (max-width: 767px) {
  .navbar .container {
    gap: 0.55rem;
  }
  .navbar-brand {
    gap: 0.55rem !important;
    font-size: 1rem;
    line-height: 1.1;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex: 0 0 34px;
  }
  .navbar .ms-auto {
    gap: 0.35rem !important;
    align-items: center;
  }
  .navbar .ms-auto .btn-pill {
    width: 100%;
    text-align: center;
  }
  .section { padding: 4.5rem 0; }
  .hero-section { padding-bottom: 2.8rem; }
  .mockup-body { min-height: 320px; }
  .process-grid { grid-template-columns: 1fr; }
  .five-steps { grid-template-columns: 1fr; }
  .cta-block { padding: 1.5rem; }
  .footer { padding-top: 2.5rem; }
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .announcement-text {
    text-align: center;
    width: 100%;
  }
  .logo-pill {
    width: 100%;
    justify-content: flex-start;
  }
  .visual-row {
    grid-template-columns: 1fr;
  }
  .referral-benefits,
  .referral-kpi-grid {
    grid-template-columns: 1fr;
  }
  .video-frame {
    width: 100%;
    border-radius: 12px;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-mockup,
  .pulse-dot,
  .btn-primary {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
