/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #080b0a;
  --black-2: #0d110f;
  --black-3: #111814;
  --surface: #141a16;
  --surface-2: #1a2420;
  --border: rgba(255, 255, 255, 0.07);
  --green: #00e676;
  --green-mid: #00c853;
  --green-dark: #009624;
  --green-glow: rgba(0, 230, 118, 0.18);
  --green-glow-strong: rgba(0, 230, 118, 0.35);
  --text: #f0f7f2;
  --text-muted: #8fa89a;
  --text-faint: #4a5e54;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-green: 0 0 40px rgba(0, 230, 118, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8, 11, 10, 0.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 20px;
  color: var(--green);
}

/* FA icon sizing across sections */
.card-icon i {
  font-size: inherit;
  color: var(--green);
}

.comm-icon i {
  font-size: inherit;
  color: var(--green);
}

.widget-icon i {
  font-size: inherit;
  color: var(--green);
}

.zoom-icon i {
  font-size: 18px;
  color: #fff;
}

.mb-icon i {
  font-size: inherit;
  color: var(--green);
}

.perk-check i {
  font-size: 10px;
}

.p-badge i {
  font-size: 11px;
  color: var(--green);
  margin-right: 2px;
}

.hero-trust i {
  font-size: 11px;
  color: var(--green);
  margin-right: 3px;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.logo-accent {
  color: var(--green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--green);
  color: var(--black);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 100px 0 0;
  overflow: hidden;
}

/* Background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('hero_bg2.png') center center / cover no-repeat;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(8, 11, 10, 0.97) 0%,
      rgba(8, 11, 10, 0.88) 45%,
      rgba(8, 11, 10, 0.55) 70%,
      rgba(8, 11, 10, 0.75) 100%);
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0, 230, 118, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 118, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 35% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 2;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 230, 118, 0.1);
  top: -80px;
  left: 5%;
}

/* Two-column layout */
.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

/* LEFT: content */
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Floating Widgets (now relative inside content) */
.floating-widget {
  background: rgba(20, 26, 22, 0.82);
  border: 1px solid rgba(0, 230, 118, 0.25);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.widget-top {
  margin-bottom: 20px;
  animation: float 6s ease-in-out infinite;
}

.widget-bottom {
  margin-top: 28px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.pulse-dot,
.widget-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 230, 118, 0);
  }
}

.widget-icon {
  font-size: 18px;
}

.widget-content {
  display: flex;
  flex-direction: column;
}

.widget-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}

.widget-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* RIGHT: Video column */
.hero-video-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 230, 118, 0.2),
    0 0 60px rgba(0, 230, 118, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.6);
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 28px;
}

/* Sound toggle button */
.video-sound-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 11, 10, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--text);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.video-sound-btn:hover {
  background: rgba(0, 230, 118, 0.15);
  border-color: var(--green);
  color: var(--green);
}

.video-sound-btn svg {
  flex-shrink: 0;
}

.video-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 10vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.title-accent {
  background: linear-gradient(135deg, var(--green) 0%, #7bffbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: var(--black);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.3), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 230, 118, 0.5), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 230, 118, 0.3);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
}

.trust-dot {
  color: var(--text-faint);
}

/* === STATS STRIP === */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* === SECTION COMMON === */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-subtitle {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(0, 230, 118, 0.25);
  transform: translateY(-4px);
}

.card-large {
  grid-column: span 1;
  grid-row: span 2;
}

.card-medium {
  grid-column: span 1;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.card-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(0, 230, 118, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 24px;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Aim visual */
.card-visual {
  margin-top: 28px;
  height: 100px;
  position: relative;
  background: rgba(0, 230, 118, 0.04);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aim-line {
  position: absolute;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: aimScan 2.5s ease-in-out infinite;
}

@keyframes aimScan {

  0%,
  100% {
    transform: translateY(-20px) scaleX(0.6);
    opacity: 0.4;
  }

  50% {
    transform: translateY(20px) scaleX(1);
    opacity: 1;
  }
}

.aim-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: aimDot 2.5s ease-in-out infinite;
}

@keyframes aimDot {

  0%,
  100% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(30px);
  }
}

/* Trajectory visual */
.trajectory-visual {
  margin-top: 20px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
}

.traj-line {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  animation: trajDraw 2s ease-in-out infinite;
}

.traj-1 {
  width: 50%;
  left: 0;
  top: 40%;
  transform-origin: left;
}

.traj-2 {
  width: 35%;
  left: 48%;
  top: 60%;
  transform-origin: left;
  animation-delay: 0.5s;
}

@keyframes trajDraw {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

.traj-ball {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #fff 30%, var(--green) 100%);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 12px var(--green);
  animation: trajBall 2s ease-in-out infinite;
}

@keyframes trajBall {
  0% {
    left: 0;
    top: 35%;
  }

  50% {
    left: 47%;
    top: 50%;
  }

  100% {
    left: 80%;
    top: 65%;
  }
}

/* Radar visual */
.radar-visual {
  margin-top: 20px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.ring-1 {
  width: 60px;
  height: 60px;
}

.ring-2 {
  width: 40px;
  height: 40px;
  border-color: rgba(0, 230, 118, 0.3);
}

.ring-3 {
  width: 20px;
  height: 20px;
  border-color: rgba(0, 230, 118, 0.5);
}

.radar-sweep {
  position: absolute;
  width: 30px;
  height: 30px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 230, 118, 0.4) 60deg, transparent 60deg);
  border-radius: 50%;
  animation: radarSpin 2s linear infinite;
}

@keyframes radarSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.radar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  top: 40%;
  left: 55%;
  animation: radarBlink 2s ease-in-out infinite;
}

@keyframes radarBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* Micro card */
.feature-micro-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(0, 200, 83, 0.05) 100%);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.micro-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green) 0%, #7bffbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.micro-label {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-muted);
}

/* === COMMUNITY === */
.community {
  padding: 100px 24px;
  background: var(--black-2);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.community-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

.community-card:hover {
  border-color: rgba(0, 230, 118, 0.2);
  transform: translateY(-3px);
}

.community-card-highlight {
  border-color: rgba(0, 230, 118, 0.2);
  background: rgba(0, 230, 118, 0.04);
}

.comm-icon {
  font-size: 32px;
}

.comm-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.comm-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.comm-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-tag {
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* === SOCIAL PROOF CAROUSEL === */
.proof {
  padding: 100px 24px;
}

.proof-carousel-wrap {
  position: relative;
  padding: 0 48px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 26, 22, 0.9);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: rgba(0, 230, 118, 0.15);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.proof-carousel {
  overflow: hidden;
  border-radius: var(--radius);
}

.proof-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
}

.proof-track.grabbing {
  cursor: grabbing;
}

.proof-slide {
  flex: 0 0 calc(33.333% - 10px);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.proof-slide:hover {
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateY(-4px);
}

.proof-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  pointer-events: none;
  user-select: none;
}

.proof-slide:hover img {
  transform: scale(1.04);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.proof-slide:hover .slide-overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 22px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.proof-badge {
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-img-wrap {
  position: relative;
  z-index: 10;
  max-height: 90vh;
  max-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lbZoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-img {
  max-height: 90vh;
  max-width: 85vw;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.15), 0 30px 80px rgba(0, 0, 0, 0.8);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 26, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: rgba(230, 0, 0, 0.3);
  border-color: rgba(230, 0, 0, 0.5);
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20, 26, 22, 0.85);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: rgba(0, 230, 118, 0.15);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: rgba(20, 26, 22, 0.85);
  border: 1px solid rgba(0, 230, 118, 0.2);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* === PRICING === */
.pricing {
  padding: 100px 24px;
  background: var(--black-2);
  text-align: center;
}

.pricing-label {
  display: inline-block;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 200, 0, 0.06);
  border: 1px solid rgba(255, 200, 0, 0.15);
  color: #ffd54f;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 100px;
  margin: 28px 0 48px;
}

.urgency-dot,
.blink {
  width: 8px;
  height: 8px;
  background: #ffd54f;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.pricing-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 0 80px rgba(0, 230, 118, 0.08);
  text-align: left;
}

.price-display {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
  justify-content: center;
  flex-wrap: nowrap;
}

.price-currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 8px;
}

.price-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.price-cents {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  padding-bottom: 12px;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  padding-bottom: 12px;
  padding-left: 4px;
}

.pricing-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 16px;
}

.p-badge {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.pricing-perks h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.perk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perk-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.perk-check {
  width: 22px;
  height: 22px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.perk-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.perk-list li strong {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.perk-list li span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.money-back {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  background: rgba(0, 230, 118, 0.05);
  border: 1px solid rgba(0, 230, 118, 0.1);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.mb-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.money-back strong {
  color: var(--text);
}

/* === FOOTER === */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-faint);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 24px 60px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: left;
    padding: 40px 24px 60px;
  }

  .hero-video-col {
    order: 2;
    width: 100%;
  }

  .hero-video-wrap {
    max-width: 100%;
    border-radius: 20px;
  }

  .hero-video {
    aspect-ratio: 9/16;
    max-height: 420px;
    border-radius: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .feature-micro-card {
    grid-column: span 2;
  }

  .proof-carousel-wrap {
    padding: 0 36px;
  }

  .proof-slide {
    flex: 0 0 calc(50% - 7px);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 48px;
  }

  .hero-video-col {
    order: 2;
  }

  .hero-video {
    max-height: 340px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .card-large {
    grid-column: span 1;
  }

  .feature-micro-card {
    grid-column: span 1;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .proof-slide {
    flex: 0 0 calc(50% - 7px);
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .price-value {
    font-size: 64px;
  }

  .price-currency,
  .price-cents {
    font-size: 22px;
  }

  .price-period {
    font-size: 13px;
  }

  .pricing-badges {
    gap: 6px;
  }

  .p-badge {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* CTA button compact */
  .btn-full {
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Perks 2-column grid on mobile */
  .perk-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .perk-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
  }

  .perk-list li strong {
    font-size: 13px;
  }

  .perk-list li span {
    font-size: 12px;
  }

  .perk-check {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .money-back {
    padding: 14px;
    font-size: 12px;
    gap: 10px;
  }

  .mb-icon {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .proof-slide {
    flex: 0 0 calc(80% - 7px);
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-prev,
  .lightbox-next {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  /* Pricing extra-small */
  .pricing-card {
    padding: 24px 16px;
  }

  .price-value {
    font-size: 56px;
  }

  .price-currency,
  .price-cents {
    font-size: 18px;
  }

  .pricing-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .p-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ==============================
   CHECKOUT MODAL
============================== */
.co-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.co-overlay.open {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  pointer-events: all;
}

.co-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  overflow-y: auto;
  background: #101510;
  border: 1px solid rgba(0, 230, 118, 0.18);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 230, 118, 0.06);
  transform: translateY(32px) scale(0.96);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  scrollbar-width: none;
}

.co-modal::-webkit-scrollbar {
  display: none;
}

.co-overlay.open .co-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.co-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #6b7b70;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.co-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Header */
.co-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.co-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.co-title span {
  color: var(--green);
}

.co-sub {
  font-size: 13px;
  color: #6b7b70;
  margin-bottom: 0;
}

/* Price badge */
.co-price-badge {
  display: flex;
  align-items: baseline;
  gap: 2px;
  background: rgba(0, 230, 118, 0.07);
  border: 1px solid rgba(0, 230, 118, 0.18);
  border-radius: 14px;
  padding: 12px 16px;
  margin: 18px 0;
}

.co-cur {
  font-size: 14px;
  color: #6b7b70;
  font-weight: 600;
}

.co-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
}

.co-cts {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.co-per {
  font-size: 12px;
  color: #6b7b70;
  margin-left: 8px;
}

/* Form */
.co-field {
  margin-bottom: 14px;
}

.co-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #6b7b70;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.co-field label i {
  color: var(--green);
  margin-right: 4px;
}

.co-field input {
  width: 100%;
  background: #182018;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.co-field input:focus {
  border-color: rgba(0, 230, 118, 0.4);
}

.co-field input::placeholder {
  color: #3d4d42;
}

.co-error {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  margin-bottom: 14px;
}

.co-btn-pay {
  width: 100%;
  background: var(--green);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  transition: opacity 0.2s, transform 0.15s;
}

.co-btn-pay:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

.co-btn-pay:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.co-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
}

.co-trust span {
  font-size: 11px;
  color: #6b7b70;
  display: flex;
  align-items: center;
  gap: 4px;
}

.co-trust i {
  color: var(--green);
}

/* QR block */
.co-qr-wrap {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 14px;
  margin: 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.co-qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.co-copy-row {
  position: relative;
  margin-bottom: 14px;
}

.co-code-input {
  width: 100%;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.18);
  border-radius: 10px;
  padding: 11px 44px 11px 14px;
  color: var(--green);
  font-size: 11px;
  font-family: monospace;
  outline: none;
}

.co-copy-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--green);
  cursor: pointer;
  font-size: 15px;
  padding: 4px;
  transition: transform 0.2s;
}

.co-copy-btn:hover {
  transform: translateY(-50%) scale(1.2);
}

.co-timer-row {
  text-align: center;
  font-size: 13px;
  color: #6b7b70;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.co-timer-row i {
  color: var(--green);
}

.co-timer-row strong {
  color: var(--text);
}

.co-status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #6b7b70;
}

.co-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  animation: co-pulse 1.5s infinite;
}

@keyframes co-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* Confirmed */
.co-confirmed-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 230, 118, 0.12);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
  margin: 0 auto 20px;
  animation: co-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes co-pop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.co-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.co-btn-whatsapp:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Spinner */
.co-spin {
  animation: co-spin 0.7s linear infinite;
}

@keyframes co-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .co-modal {
    padding: 24px 18px;
  }

  .co-title {
    font-size: 19px;
  }

  .co-val {
    font-size: 30px;
  }
}
/* === MOBILE APP SECTION === */
.mobile-app {
  padding: 100px 24px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.mobile-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text Column */
.mobile-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.mobile-features li i {
  color: var(--green);
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* Video Column */
.mobile-video-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-video-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 230, 118, 0.2),
    0 0 60px rgba(0, 230, 118, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.6);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.mobile-video-wrap:hover {
  transform: rotate(0deg) scale(1.02);
}

.mobile-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .mobile-text-col {
    align-items: center;
  }

  .section-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  
  .mobile-video-wrap {
    transform: rotate(0deg);
    max-width: 280px;
  }
}

/* Mobile Compatibility Section Styles */
.mobile-app {
  padding: 100px 24px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.mobile-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Texture overlay for mobile section */
.mobile-app::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 230, 118, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 118, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
  pointer-events: none;
}

/* Text Column */
.mobile-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.mobile-text-col .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.mobile-features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.mobile-features li i {
  color: var(--green);
  font-size: 20px;
  width: 24px;
  text-align: center;
  filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.4));
}

/* Video Column */
.mobile-video-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mobile-video-wrap {
  position: relative;
  width: 100%;
  max-width: 300px; /* Phone width approx */
  border-radius: 32px; /* Phone rounded corners */
  overflow: hidden;
  box-shadow:
    0 0 0 8px #1a1a1a, /* Bezel */
    0 0 0 9px #333, /* Outer bezel border */
    0 20px 50px rgba(0,0,0,0.8), /* Shadow */
    0 0 60px rgba(0, 230, 118, 0.15); /* Glow */
  transform: rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #000;
}

.mobile-video-wrap:hover {
  transform: rotate(0deg) scale(1.02);
}

.mobile-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px; /* Inner screen radius */
}

/* Video Glow Effect */
.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .mobile-text-col {
    align-items: center;
  }
  
  .mobile-text-col .section-title {
    text-align: center;
  }

  .mobile-text-col .section-subtitle {
     margin-left: auto !important;
     margin-right: auto !important;
     text-align: center !important;
  }
  
  .mobile-features {
    align-items: flex-start;
    text-align: left;
    margin: 24px auto; 
    /* Center the list block, but items left aligned looks better usually, 
       or center them. Let's start with centering the block. */
    display: inline-flex; 
  }

  .mobile-video-wrap {
    transform: rotate(0deg);
    max-width: 260px;
    margin: 0 auto;
  }
  
  .mobile-app {
    padding: 60px 24px;
  }
}

/* Ensure hero video clears navbar on scroll */
#hero-video {
  scroll-margin-top: 100px;
}
