/* ==========================================
   FRAME LANDING PAGE STYLESHEET
   Aesthetics: Rich Dark, Neon Green (#b5ff1a),
   Glassmorphism, Micro-interactions & Glows.
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* HSL Color Tokens */
  --bg-darker: 210 20% 3%;      /* #050708 */
  --bg-dark: 210 18% 5%;        /* #070a0c */
  --bg-card: 210 15% 8%;        /* #0b0f13 */
  --accent: 79 100% 55%;        /* #b5ff1a (Vivid Lime Neon) */
  --accent-rgb: 181, 255, 26;
  --accent-dark: 79 60% 12%;    /* Dark olive green for borders/tints */
  --text-primary: 0 0% 100%;    /* #ffffff */
  --text-secondary: 210 12% 70%;/* #adb5bd */
  --text-muted: 210 10% 45%;     /* #6c757d */
  
  --border-light: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(181, 255, 26, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-glow-bg: rgba(181, 255, 26, 0.02);
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: hsl(var(--bg-darker));
  color: hsl(var(--text-primary));
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: hsl(var(--bg-darker));
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 2px solid hsl(var(--bg-darker));
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--accent));
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-accent {
  color: hsl(var(--accent));
  text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.25);
}

.text-secondary {
  color: hsl(var(--text-secondary));
}

.text-muted {
  color: hsl(var(--text-muted));
}

.uppercase-label {
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: hsl(var(--accent));
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

/* ==========================================
   LAYOUT CONTAINERS
   ========================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(var(--accent-rgb), 0.25);
  background: var(--glass-glow-bg);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5),
              0 0 20px 0 rgba(var(--accent-rgb), 0.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: hsl(var(--accent));
  color: #000;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(var(--accent-rgb), 0.5);
  background-color: #c9ff4d;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}

.btn-white {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}


.btn-pill {
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 100px;
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 7, 8, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
  transition: var(--transition-normal);
}

.header-scrolled {
  padding: 0.75rem 0;
  background: rgba(5, 7, 8, 0.9);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 28px;
  height: 28px;
  border: 3.5px solid hsl(var(--accent));
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon::after {
  content: '';
  width: 6px;
  height: 6px;
  background: hsl(var(--accent));
  border-radius: 50%;
}

.logo-icon-svg,
.logo-icon-img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* simple responsive for now */
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--text-secondary));
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: hsl(var(--accent));
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background: linear-gradient(to bottom, rgba(5, 7, 8, 0.5) 0%, rgba(5, 7, 8, 0.2) 65%, hsl(var(--bg-darker)) 100%),
              url('assets/panel1_bg.png') no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: hsl(var(--accent));
  border-radius: 50%;
  box-shadow: 0 0 10px hsl(var(--accent));
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

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

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

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

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

.hero-desc {
  font-size: 1.15rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 2.5rem;
  max-width: 580px;
}

@media (max-width: 991px) {
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 991px) {
  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }
}

.hero-btn-arrow {
  color: hsl(var(--text-secondary));
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.hero-btn-arrow:hover {
  color: hsl(var(--accent));
}

.hero-btn-arrow svg {
  transition: transform var(--transition-fast);
}

.hero-btn-arrow:hover svg {
  transform: translateY(3px);
}

/* Three overlapping phones animation in Hero */
.hero-mockups {
  position: relative;
  height: 480px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.phone-mockup {
  position: absolute;
  width: 230px;
  border-radius: 36px;
  background: #000;
  border: 10px solid #1c232b;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
              0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-slow);
}

.phone-screen {
  position: relative;
  aspect-ratio: 9/19;
  width: 100%;
  background: #0c0f13;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-screen-header {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-screen-logo {
  font-size: 0.6rem;
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.phone-screen-badge {
  font-size: 0.45rem;
  background: hsl(var(--accent));
  color: #000;
  padding: 0.15rem 0.4rem;
  border-radius: 100px;
  font-weight: 700;
}

.phone-video-container {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
}

.phone-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.phone-video-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.phone-video-subtitle {
  font-size: 0.5rem;
  color: #adb5bd;
}

.phone-video-tag {
  font-size: 0.4rem;
  text-transform: uppercase;
  color: hsl(var(--accent));
  font-weight: 700;
  letter-spacing: 0.05em;
}

.phone-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition-fast);
}

.phone-video-play svg {
  fill: #fff;
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

.phone-mockup:hover {
  transform: translateY(-10px) scale(1.03);
  z-index: 10 !important;
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 35px 70px -10px rgba(0, 0, 0, 0.9),
              0 0 25px 0 rgba(var(--accent-rgb), 0.15);
}

.phone-mockup-1 {
  left: 0;
  top: 60px;
  z-index: 2;
  transform: rotate(-6deg);
}

.phone-mockup-2 {
  left: 50%;
  transform: translateX(-50%) scale(1.08);
  top: 0;
  z-index: 3;
}

.phone-mockup-3 {
  right: 0;
  top: 80px;
  z-index: 1;
  transform: rotate(8deg);
}

@media (max-width: 480px) {
  .hero-mockups {
    height: 380px;
  }
  .phone-mockup {
    width: 170px;
  }
  .phone-mockup-1 {
    top: 50px;
  }
  .phone-mockup-2 {
    top: 0;
  }
  .phone-mockup-3 {
    top: 70px;
  }
}

/* ==========================================
   STATS GRID & TICKS
   ========================================== */

.stats-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: hsl(var(--bg-darker));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

.stat-num {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: hsl(var(--text-secondary));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticker-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 3rem;
}

@media (max-width: 991px) {
  .ticker-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
  }
}

@media (max-width: 576px) {
  .ticker-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.ticker-item {
  font-family: var(--font-title);
  font-size: 0.875rem; /* Increased from 0.75rem (+2 pts) */
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  text-align: center; /* Horizontally centers both lines of text */
  line-height: 1.35; /* Professional spacing for 2-row wrap */
  flex: 1;
  max-width: 220px;
}

@media (max-width: 991px) {
  .ticker-item {
    flex: none;
  }
}

.ticker-separator {
  width: 2.5px;
  height: 36px; /* Continuous vertical bar spanning both rows */
  background-color: hsl(var(--accent));
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.65); /* Rich neon bar glow */
  flex-shrink: 0;
  border-radius: 4px; /* Smooth rounded caps */
}

@media (max-width: 991px) {
  .ticker-separator {
    display: none; /* Hide separators on tablet and mobile */
  }
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.problem {
  background: radial-gradient(circle at 10% 50%, rgba(255, 0, 0, 0.02) 0%, transparent 50%);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.problem-left h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.problem-desc {
  font-size: 1.05rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 3.5rem;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.problem-item {
  display: flex;
  gap: 1.5rem;
}

.problem-icon-wrapper {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  background: rgba(var(--accent-rgb), 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

.problem-item-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.problem-item-content p {
  font-size: 0.95rem;
  color: hsl(var(--text-secondary));
}

.problem-right {
  position: relative;
}

.problem-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

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

/* TikTok UI Overlay */
.tiktok-overlay {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  width: 230px;
  pointer-events: none;
  transform: rotate(2deg);
}

.tiktok-screen {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body);
}

.tiktok-video-placeholder {
  width: 100%;
  aspect-ratio: 9/14;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tiktok-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-actions {
  position: absolute;
  right: 0.5rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
}

.tiktok-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.tiktok-action-item span {
  font-size: 0.5rem;
  font-weight: 600;
}

.tiktok-bottom-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  color: #fff;
}

.tiktok-user {
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tiktok-caption {
  font-size: 0.55rem;
  line-height: 1.3;
  color: #f1f3f5;
}

.quote-bubble {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  right: 2rem;
  background: rgba(11, 15, 19, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  padding: 1.75rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

@media (max-width: 576px) {
  .quote-bubble {
    position: static;
    margin-top: 2rem;
  }
  .tiktok-overlay {
    display: none;
  }
}

.quote-bubble p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.quote-bubble span {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: hsl(var(--accent));
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */

.how-it-works {
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.03) 0%, transparent 60%);
  border-top: 1px solid var(--border-light);
}

.how-it-works .section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem auto;
}

.how-it-works h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.steps-pipeline-container {
  position: relative;
  margin-bottom: 6rem;
}

/* Pipeline Connector Grid */
.steps-grid-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .steps-grid-pipeline {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.pipeline-line {
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: linear-gradient(to right, rgba(181, 255, 26, 0.05), rgba(181, 255, 26, 0.8) 50%, rgba(181, 255, 26, 0.05));
  z-index: 1;
}

.pipeline-glow-pulse {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100px;
  background: radial-gradient(circle, rgba(181,255,26,1) 0%, transparent 70%);
  animation: movePulse 6s infinite linear;
}

@keyframes movePulse {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@media (max-width: 991px) {
  .pipeline-line {
    display: none; /* remove pipeline on portrait */
  }
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: hsl(var(--bg-dark));
  border: 2px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 8px rgba(5,7,8, 1);
  transition: var(--transition-normal);
}

.step-card:hover .step-num {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
  box-shadow: 0 0 0 8px rgba(5,7,8, 1),
              0 0 20px 0 rgba(var(--accent-rgb), 0.4);
}

.step-icon-inner {
  position: absolute;
  top: -15px;
  background: hsl(var(--accent));
  color: #000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 0.9rem;
  color: hsl(var(--text-secondary));
  max-width: 250px;
}

/* Social platforms ticker */
.social-ticker-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.ticker-text {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: hsl(var(--text-secondary));
  text-transform: uppercase;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-item-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.social-icon-img {
  height: 46px; /* High fidelity tall height so brand name in image is crisp & clear */
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: brightness(0.85);
  transition: all var(--transition-fast);
}

.social-item-logo:hover .social-icon-img {
  opacity: 1;
  filter: brightness(1) drop-shadow(0 0 8px rgba(181, 255, 26, 0.4)); /* Sleek neon green glow matching accent color */
  transform: translateY(-2px) scale(1.05); /* Premium interactive hover float */
}

@media (max-width: 768px) {
  .social-icons-row {
    gap: 2rem;
  }
  .social-icon-img {
    height: 36px; /* Proportionately smaller on mobile screens */
  }
}

.ticker-verification-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: hsl(var(--text-secondary));
  margin-top: 1.5rem;
}

.ticker-verification-line svg {
  color: hsl(var(--accent));
}

/* ==========================================
   WHAT YOU GET SECTION (FEATURES GRID)
   ========================================== */

.what-you-get {
  background: hsl(var(--bg-darker));
  border-top: 1px solid var(--border-light);
}

.what-you-get .section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem auto;
}

.what-you-get h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 3rem 2.5rem;
}

.feature-icon-wrapper {
  margin-bottom: 2rem;
  color: hsl(var(--accent));
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: hsl(var(--text-secondary));
}

/* ==========================================
   THE RESULT SECTION
   ========================================== */

.result {
  background: radial-gradient(circle at 90% 80%, rgba(var(--accent-rgb), 0.05) 0%, transparent 60%);
  border-top: 1px solid var(--border-light);
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .result-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.result-left h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.result-desc {
  font-size: 1.05rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 3.5rem;
}

/* Interactive Before/After Slider */
.interactive-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  user-select: none;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-before {
  z-index: 1;
}

.slider-after {
  z-index: 2;
  /* initial visible width */
  width: 50%;
  /* force image to maintain aspect ratio inside clipped container */
  object-position: left;
}

/* Slider Controls */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: hsl(var(--accent));
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.8);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: hsl(var(--accent));
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.5),
              0 4px 10px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.9rem;
  pointer-events: none;
  font-weight: 700;
}

.slider-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
}

.slider-btn-label {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.slider-btn-label:hover {
  background: rgba(181, 255, 26, 0.08);
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3);
  transform: translateY(-1px);
}

.slider-btn-label:active {
  transform: translateY(1px);
}

.slider-instruction {
  font-family: var(--font-title);
  font-size: 0.925rem; /* Increased by 2 pts from 0.8rem */
  font-weight: 700;
  color: hsl(var(--accent)); /* Green accent matching headings */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.35); /* Accent neon glow */
}

@media (max-width: 480px) {
  .slider-header-row {
    margin-bottom: 1.25rem;
    gap: 0.5rem;
  }
  .slider-instruction {
    font-size: 0.775rem; /* Proportionally scaled for mobile */
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  .slider-btn-label {
    padding: 0.4rem 0.9rem;
    font-size: 0.65rem;
  }
}

/* Slider Input Overlay */
.slider-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: ew-resize;
}

/* Custom Staircase Phone UI Mockup (Overlay or Secondary Graphic) */
.phone-staircase-ui {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  background: rgba(11, 15, 19, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.phone-ui-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-ui-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid hsl(var(--accent));
}

.phone-ui-meta h4 {
  font-size: 0.75rem;
  margin-bottom: 0.1rem;
}

.phone-ui-meta p {
  font-size: 0.6rem;
  color: hsl(var(--text-secondary));
}

.phone-ui-btn {
  font-size: 0.7rem;
  font-family: var(--font-title);
  font-weight: 700;
  color: #000;
  background: hsl(var(--accent));
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Voice Note Player Mockup */
.voice-note-player {
  background: rgba(181, 255, 26, 0.02);
  border: 1px dashed rgba(var(--accent-rgb), 0.25);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  transition: var(--transition-normal);
}

.voice-note-player:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(181, 255, 26, 0.04);
}

.voice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.voice-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice-mic {
  color: hsl(var(--accent));
}

.voice-title {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.voice-time {
  font-size: 0.8rem;
  color: hsl(var(--text-secondary));
  font-family: monospace;
}

.voice-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.voice-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(var(--accent));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
}

.voice-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 18px rgba(var(--accent-rgb), 0.5);
}

.voice-waveform-svg {
  flex: 1;
  height: 32px;
}

.voice-wave-bar {
  fill: rgba(255, 255, 255, 0.2);
  transition: fill var(--transition-fast);
}

.voice-wave-bar.active {
  fill: hsl(var(--accent));
}

.voice-transcript {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #f1f3f5;
  font-style: italic;
  border-left: 3px solid hsl(var(--accent));
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.voice-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--text-secondary));
}

.voice-status svg {
  color: hsl(var(--accent));
}

/* Steps bullet rows next to mockup */
.result-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.result-bullet-item {
  display: flex;
  gap: 1.25rem;
}

.bullet-icon-wrapper {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition-fast);
}

.result-bullet-item:hover .bullet-icon-wrapper {
  border-color: hsl(var(--accent));
  background: rgba(var(--accent-rgb), 0.05);
  color: hsl(var(--accent));
}

.bullet-content h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.bullet-content p {
  font-size: 0.85rem;
  color: hsl(var(--text-secondary));
}

/* Problem/Result dark blockquote wrapper styling */
.blockquote-row {
  margin-top: 5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
}

.blockquote-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.blockquote-wrapper p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
}

.blockquote-wrapper p::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 4rem;
  position: absolute;
  left: -2rem;
  top: -1.5rem;
  color: rgba(var(--accent-rgb), 0.2);
}

.blockquote-wrapper span {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: hsl(var(--accent));
  text-transform: uppercase;
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing {
  background: hsl(var(--bg-darker));
  border-top: 1px solid var(--border-light);
}

.pricing .section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem auto;
}

.pricing h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.pricing-card {
  max-width: 580px;
  margin: 0 auto;
  padding: 4rem 3.5rem;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%),
              var(--glass-bg);
}

@media (max-width: 576px) {
  .pricing-card {
    padding: 3rem 2rem;
  }
}

.pricing-card h3 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: hsl(var(--text-secondary));
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-currency {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  vertical-align: super;
}

.pricing-amount {
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: hsl(var(--text-secondary));
  margin-left: 0.25rem;
}

.pricing-sub {
  font-size: 0.8rem;
  color: hsl(var(--text-muted));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  display: block;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 3.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 3rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.pricing-feature-item svg {
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 1.25rem;
}

.pricing-footer-text {
  font-size: 0.75rem;
  color: hsl(var(--text-muted));
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
  background: radial-gradient(circle at 10% 90%, rgba(var(--accent-rgb), 0.03) 0%, transparent 60%);
  border-top: 1px solid var(--border-light);
}

.testimonials .section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem auto;
}

.testimonials h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: hsl(var(--accent));
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #f1f3f5;
  margin-bottom: 3rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.testimonial-info p {
  font-size: 0.75rem;
  color: hsl(var(--text-secondary));
}

/* ==========================================
   CTA ONBOARDING FORM SECTION
   ========================================== */

.cta-section {
  background: hsl(var(--bg-darker));
  border-top: 1px solid var(--border-light);
  padding-bottom: 8rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.cta-left h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 3.5rem;
  max-width: 540px;
}

/* Sleek Dark Form */
.onboarding-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: hsl(var(--accent));
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.form-input::placeholder {
  color: hsl(var(--text-muted));
}

.onboarding-form .btn {
  width: 100%;
  padding: 1.1rem;
  margin-top: 1rem;
}

.form-terms {
  font-size: 0.75rem;
  color: hsl(var(--text-muted));
  line-height: 1.4;
  text-align: center;
  margin-top: 1rem;
}

.form-terms a {
  color: hsl(var(--text-secondary));
  text-decoration: underline;
}

.form-terms a:hover {
  color: hsl(var(--accent));
}

/* Success Modal Overlay */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal {
  max-width: 440px;
  width: 90%;
  padding: 3rem 2.5rem;
  text-align: center;
}

.success-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  border: 2px solid hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.25);
}

.success-modal h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.success-modal p {
  font-size: 0.95rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 2rem;
}

/* Right Column with Builder Image and Glassmorphic Stats Chart */
.cta-right {
  position: relative;
}

.cta-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.cta-image-wrapper img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: brightness(0.8);
}

/* Floating Stats Chart Panel */
.stats-chart-panel {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
  width: 280px;
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  animation: floatPanel 4s ease-in-out infinite alternate;
}

@keyframes floatPanel {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@media (max-width: 1200px) {
  .stats-chart-panel {
    left: 1.5rem;
    right: 1.5rem;
    width: auto;
  }
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.chart-title {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-sparkline {
  width: 80px;
  height: 24px;
}

.chart-stat-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chart-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: hsl(var(--text-secondary));
  text-transform: uppercase;
}

.chart-val {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: hsl(var(--accent));
  text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.2);
}

.chart-sublabel {
  font-size: 0.65rem;
  color: hsl(var(--text-muted));
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  border-top: 1px solid var(--border-light);
  background: hsl(var(--bg-darker));
  padding: 4rem 0;
  font-size: 0.85rem;
  color: hsl(var(--text-secondary));
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 576px) {
  .footer .container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-weight: 800;
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav-link:hover {
  color: hsl(var(--accent));
}

.footer-copyright {
  color: hsl(var(--text-muted));
}

/* ==========================================
   SCROLL ENTRANCE ANIMATIONS
   ========================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   VIDEO MODAL (POPUP)
   ========================================== */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.video-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal {
  position: relative;
  width: 90%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-aspect-ratio: 9/16) {
  .video-modal {
    width: auto;
    height: 85vh;
    aspect-ratio: 9 / 16;
  }
}

.video-container-9x16 {
  width: 100%;
  height: 100%;
}

.video-container-9x16 iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s, transform 0.2s;
}

.video-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

