/* =============================================
   ExtraSeat&trade; – Custom Stylesheet
   Theme: Blue Gradient (#0077D8, #27A1F7)
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --blue1: #0077D8;
  --blue2: #27A1F7;
  --dark: #0a0f1e;
  --gray: #f4f7fb;
  --navbar-h: 84px;
}

/* ---- Base ---- */
* {
  font-family: 'Inter', sans-serif;
}

body {
  color: #1a1a2e;
  background: #fff;
  scroll-behavior: smooth;
}

/* ---- Navbar ---- */
header.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  animation: slideDown 0.4s ease forwards;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar {
  border-bottom: 1px solid #e8edf5;
  min-height: var(--navbar-h);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark) !important;
}

.nav-link {
  font-weight: 500;
  color: #444 !important;
  font-size: .92rem;
}

.nav-link:hover {
  color: var(--blue1) !important;
}

/* ---- Primary Button ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  border: none;
  color: #fff;
  font-weight: 600;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-size: .88rem;
  transition: .2s;
}

.btn-primary-custom:hover {
  opacity: .9;
  color: #fff;
}

/* Hero CTA buttons */
.btn-hero {
  font-size: .95rem;
  border-radius: 10px;
  font-weight: 600;
  padding-top: .85rem !important;
  padding-bottom: .85rem !important;
}

/* ---- Hero ---- */
.hero {
  min-height: calc(100vh - var(--navbar-h));
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero>.container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.hero>.container>.row {
  width: 100%;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(26, 140, 90, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 140, 90, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--dark);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  background: #fff;
  border: 1px solid #d0e6f8;
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue1);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.hero-stat {
  background: #fff;
  border: 1px solid #e2edf7;
  border-radius: 12px;
  padding: .75rem 1.2rem;
  text-align: center;
}

.hero-stat .num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.hero-stat .lbl {
  font-size: .72rem;
  color: #888;
  font-weight: 500;
}

.hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 119, 216, .1);
  border: 1px solid #e0eefc;
}

/* ---- Phone Mockup ---- */
.phone-mock {
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  border-radius: 36px;
  padding: 2rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 119, 216, .25);
  max-width: 280px;
  margin: 0 auto;
}

.phone-screen {
  background: #f4f7fb;
  border-radius: 24px;
  padding: 1.5rem;
  min-height: 320px;
}

/* ---- Section Labels ---- */
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue1);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--dark);
}

/* ---- HOW IT WORKS – Timeline ---- */
.how-it-works-section {
  background: var(--gray);
  padding: 5rem 0 2rem 0;
}

/* Outer wrapper: positions the track absolutely across all nodes */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /* nodes anchor at the bottom */
  padding: 240px 0 60px;
}

/* ---- Horizontal track ---- */
.timeline-track {
  position: absolute;
  bottom: 90px;
  /* 60px bottom-padding + 30px (half of 60px node) */
  left: 0;
  right: 0;
  height: 4px;
  background: #dde8f5;
  border-radius: 4px;
  overflow: hidden;
  z-index: 0;
}

.timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* ---- Each step wrapper ---- */
.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* ---- Node circle ---- */
.tl-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  position: relative;
  box-shadow: 0 0 0 6px #dde8f5;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

/* Pulse ring — only on active node */
.timeline-step.tl-active .tl-node {
  box-shadow: 0 0 0 6px rgba(0, 119, 216, 0.2);
  transform: scale(1.12);
}

.timeline-step.tl-active .tl-node::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(0, 119, 216, 0.35);
  animation: tl-pulse 1.4s ease-out infinite;
}

@keyframes tl-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ---- Cards ---- */
.tl-card {
  background: #fff;
  border: 1px solid #e2edf7;
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  width: 200px;
  height: 175px;
  /* equal height for all cards */
  text-align: center;
  position: absolute;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.45s ease, transform 0.45s ease,
    box-shadow 0.25s ease;
}

.tl-card h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}

.tl-card p {
  font-size: .76rem;
  color: #778;
  line-height: 1.55;
  margin: 0;
}

.tl-step-num {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue1);
  text-transform: uppercase;
  margin-bottom: .4rem;
}

/* All cards sit above the node */
.tl-card-top {
  bottom: calc(100% + 24px);
  transform: translateY(-18px);
}

/* Revealed state */
.timeline-step.tl-active .tl-card,
.timeline-step.tl-done .tl-card {
  opacity: 1;
  transform: translateY(0);
}

/* Hover — only once card is fully revealed */
.timeline-step.tl-done .tl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 119, 216, 0.15);
  border-color: #b8d9f8;
}

.timeline-step.tl-done .tl-node {
  box-shadow: 0 0 0 6px rgba(0, 119, 216, 0.15);
}

/* ---- Mobile: vertical stack ---- */
@media (max-width: 767px) {
  .timeline {
    flex-direction: column;
    padding: 2rem 0;
    align-items: flex-start;
    gap: 0;
  }

  .timeline-track {
    top: 0;
    left: 28px;
    right: auto;
    width: 4px;
    height: 100%;
    transform: none;
  }

  .timeline-progress {
    width: 4px !important;
    height: 0%;
    transition: height 0.5s ease;
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    width: 100%;
  }

  .tl-card {
    position: static;
    width: auto;
    flex: 1;
    text-align: left;
    transform: translateX(20px);
    opacity: 0;
  }

  .tl-card-top,
  .tl-card-bottom {
    bottom: auto;
    top: auto;
  }

  .timeline-step.tl-active .tl-card,
  .timeline-step.tl-done .tl-card {
    transform: translateX(0);
    opacity: 1;
  }
}



/* ---- Feature Bento Grid ---- */
.feat-bento {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feat-bento-row {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

/* Base card */
.feat-bento-card {
  background: linear-gradient(150deg, #f8feff 50%, #e7f2ff 100%);
  border: 1px solid #c8dff5;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feat-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 119, 216, 0.15);
  border-color: #89c0f0;
  border-top-color: var(--blue2);
}

/* Width variants */
.feat-bento-wide {
  flex: 7;
}

.feat-bento-narrow {
  flex: 4;
}

.feat-bento-third {
  flex: 1;
}

/* Card content */
.feat-bento-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 .6rem;
}

.feat-bento-card p {
  font-size: .82rem;
  color: #667;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Tags */
.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.2rem;
}

.feat-tag {
  font-size: .68rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 100px;
  background: #f0f8ff;
  color: var(--blue1);
  border: 1px solid #cce5fa;
}

/* Colored icon chips */
.feat-icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.chip-teal {
  background: #d4f5ee;
  color: #0d9e7a;
}

.chip-dark {
  background: #1e2a3a;
  color: #fff;
}

.chip-amber {
  background: #fff3d4;
  color: #c97d00;
}

.chip-orange {
  background: #ffe8d4;
  color: #d05a00;
}

.chip-blue {
  background: #ddeeff;
  color: var(--blue1);
}

.chip-red {
  background: #ffe0e0;
  color: #c0392b;
}

.chip-purple {
  background: #ece8ff;
  color: #6c3fce;
}

/* Responsive */
@media (max-width: 767px) {
  .feat-bento-row {
    flex-direction: column;
  }

  .feat-bento-wide,
  .feat-bento-narrow,
  .feat-bento-third {
    flex: none;
    width: 100%;
  }
}



/* ---- Stats / Impact Section ---- */
.stats-section {
  background: linear-gradient(160deg, #060d1f 0%, #0a1628 60%, #081535 100%);
  padding: 6rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative glowing blobs */
.stats-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.stats-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 119, 216, 0.18) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.stats-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(39, 161, 247, 0.12) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

/* White line grid overlay */
.stats-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

/* Heading block */
.stats-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: .6rem;
}

.stats-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.5px;
  color: #fff;
  margin-bottom: .75rem;
}

.stats-sub {
  font-size: .92rem;
  color: #7a9cc4;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Stat tiles row */
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 1rem;
  margin-bottom: 4rem;
  gap: 0;
}

.stat-tile {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.stat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 119, 216, 0.18);
  color: var(--blue2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0 auto .75rem;
}

.stat-val {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 30%, var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-lbl {
  font-size: .75rem;
  color: #7a9cc4;
  font-weight: 500;
  margin-top: .4rem;
  letter-spacing: .3px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Bottom two-col layout */
.stats-bottom {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.stats-bottom-text {
  flex: 1;
}

.stats-bottom-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.stats-bottom-text p {
  font-size: .88rem;
  color: #7a9cc4;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Impact pill boxes */
.impact-pills {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}

.impact-pill {
  flex: 1;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--blue1);
  border-radius: 14px;
  padding: 1rem 1.25rem;
}

.impact-pill-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.impact-pill-lbl {
  font-size: .72rem;
  color: #7a9cc4;
  margin-top: .3rem;
  line-height: 1.4;
}

/* Image side */
.stats-bottom-img {
  flex: 1.1;
  position: relative;
}

.stats-bottom-img img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(.85) saturate(1.1);
  display: block;
}

.stats-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.stats-img-badge i {
  color: #ffc107;
}

/* Responsive */
@media (max-width: 767px) {
  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stats-bottom {
    flex-direction: column;
  }

  .co2-grid {
    grid-template-columns: 1fr;
  }
}

/* Stat source note */
.stat-note {
  font-size: .65rem;
  color: rgba(122, 156, 196, 0.7);
  margin-top: .3rem;
  font-style: italic;
}

/* ---- CO2 Benefits Section ---- */
.co2-section {
  margin-bottom: 4rem;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-top: 3px solid #22c55e;
  border-radius: 24px;
  padding: 2.5rem;
  background: linear-gradient(150deg, rgba(20, 83, 45, 0.18) 0%, rgba(5, 46, 22, 0.12) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.06) inset;
}

.co2-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
}

.co2-globe-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.35);
}

.co2-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #86efac;
  margin: 0 0 .3rem;
}

.co2-header p {
  font-size: .83rem;
  color: #6ee7b7;
  opacity: .75;
  margin: 0;
}

.co2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 991px) {
  .co2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.co2-card {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-top: 2px solid rgba(34, 197, 94, 0.5);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.co2-card:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
  border-top-color: #22c55e;
  transform: translateY(-4px);
}

.co2-card h6 {
  font-size: .88rem;
  font-weight: 700;
  color: #86efac;
  margin: .8rem 0 .5rem;
}

.co2-card p {
  font-size: .75rem;
  color: #a7f3d0;
  opacity: .8;
  line-height: 1.65;
  margin: 0;
}


.co2-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.co2-icon-blue {
  background: rgba(0, 119, 216, 0.2);
  color: #60b8ff;
}

.co2-icon-orange {
  background: rgba(255, 140, 0, 0.18);
  color: #ffaa44;
}

.co2-icon-green {
  background: rgba(20, 160, 80, 0.18);
  color: #4dca80;
}

.co2-icon-red {
  background: rgba(220, 60, 60, 0.18);
  color: #ff7070;
}



/* ---- Role Cards (Two-col) ---- */
.role-card {
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
}

.role-card.giver {
  background: linear-gradient(135deg, #e8f3fd, #d0e8fa);
}

.role-card.taker {
  background: linear-gradient(135deg, #f0f8ff, #e0effc);
}

.check-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}

.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue1), var(--blue2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-dot i {
  font-size: .55rem;
  color: #fff;
}

/* ---- Testimonials ---- */
.testi-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 1.5rem;
}

.stars {
  color: #ffc107;
  font-size: .85rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ---- FAQ / Accordion ---- */
.custom-accordion .accordion-item {
  border: 1px solid #e8edf5 !important;
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  border-color: var(--blue1) !important;
  box-shadow: 0 8px 24px rgba(0, 119, 216, 0.05);
}

.custom-accordion .accordion-button {
  padding: 1.4rem 1.6rem;
  font-size: 1rem;
  color: var(--dark);
  background: #fff;
  border: none;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--blue1);
  background: #fff;
  padding-bottom: 1rem;
}

.custom-accordion .accordion-body {
  padding: 0 1.6rem 1.6rem;
  color: #667;
  font-size: .92rem;
  line-height: 1.7;
}

.custom-accordion .accordion-button::after {
  background-size: 1.1rem;
  transition: transform 0.3s ease;
}


/* ---- CTA Section ---- */
.cta-section {
  background: #0a0f1e; /* Fallback */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/cta-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
  filter: saturate(0.8) contrast(1.1);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(10, 15, 30, 0.9) 0%, rgba(17, 24, 39, 0.7) 100%);
  z-index: 1;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Speed streak particles */
.particle {
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  border-radius: 20px;
  pointer-events: none;
  width: 100px;
  height: 1px;
  z-index: 2;
}

.p1 { top: 20%; left: -10%; animation: speed-streak 4s infinite linear; }
.p2 { top: 60%; left: -15%; animation: speed-streak 6s infinite linear 1s; }
.p3 { top: 40%; left: -20%; animation: speed-streak 3s infinite linear 2s; }
.p4 { top: 80%; left: -10%; animation: speed-streak 5s infinite linear 0.5s; }
.p5 { top: 10%; left: -25%; animation: speed-streak 7s infinite linear 1.5s; }

@keyframes speed-streak {
  0% { transform: translateX(0) scaleX(0.5); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateX(120vw) scaleX(2); opacity: 0; }
}
.cta-section .container {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cta-section .row {
  flex: 1;
}

/* Ensure the image sits flush at the bottom */
.cta-section img {
  display: block;
  margin-top: auto;
  margin-bottom: 0 !important;
  filter: drop-shadow(0 -10px 40px rgba(0, 119, 216, 0.3));
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .cta-section {
    padding-bottom: 0 !important;
  }
  .cta-section .container {
    padding-bottom: 0 !important;
  }
}



/* App UI Mockup Styling */
.phone-screen {
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  position: relative;
}

.avatar-sm {
  background: #e2e8f0;
}

.bg-light {
  background-color: #f8fafc !important;
}

.text-primary {
  color: var(--blue1) !important;
}

.btn-primary.btn-sm {
  background: var(--blue1);
  border: none;
  font-size: .75rem;
  font-weight: 600;
}


.btn-download {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(39, 161, 247, 0.2);
}

/* ---- Footer ---- */
footer {
  background: #06090f;
}

footer a {

  color: #7a8599;
  text-decoration: none;
  font-size: .88rem;
  line-height: 2;
}

footer a:hover {
  color: #fff;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

/* ---- Animations ---- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float {
  animation: float 5s ease-in-out infinite;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: #fff;
  border-top: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
  padding: .75rem 0;
}

.trust-item {
  font-size: .8rem;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ---- Govt Advisory Banner ---- */
.govt-advisory {
  background: #0d1117;
  border-top: 1px solid #1e2a42;
  padding: 1.1rem 0;
  position: relative;
  z-index: 1;
}

.govt-advisory-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.govt-advisory-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 153, 0, 0.12);
  border: 1px solid rgba(255, 153, 0, 0.35);
  border-radius: 6px;
  padding: .35rem .75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.govt-advisory-badge i {
  color: #ff9900;
  font-size: .95rem;
}

.govt-advisory-badge span {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff9900;
  text-transform: uppercase;
}

.govt-advisory-divider {
  width: 1px;
  height: 36px;
  background: #2a3550;
  flex-shrink: 0;
}

.govt-advisory-body {
  flex: 1;
  min-width: 0;
}

.govt-advisory-source {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .8px;
  color: #7a9cc4;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.govt-advisory-text {
  font-size: .82rem;
  color: #c8d6e8;
  line-height: 1.55;
  margin: 0;
}

.govt-advisory-flag {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  align-self: stretch;
  justify-content: center;
}

.flag-stripe {
  width: 5px;
  border-radius: 3px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-stripe.saffron {
  background: #FF9933;
}

.flag-stripe.white {
  background: #f0f0f0;
  color: #000080;
  font-size: .3rem;
}

.flag-stripe.green {
  background: #138808;
}

/* ---- Inner Page Banner ---- */
.inner-banner {
  background: linear-gradient(160deg, #0a0f1e 0%, #111827 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.inner-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/cta-bg.png'); /* Reuse the cinematic bg */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.breadcrumb-custom {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-custom li {
  color: #7a9cc4;
}

.breadcrumb-custom li a {
  color: var(--blue2);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-custom li a:hover {
  color: #fff;
}

.breadcrumb-custom li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: #3d4a6b;
}

.page-content {
  padding: 5rem 0;
  background: #fff;
}
