/* ==========================================================================
   WASSET - Modern Fashion AI Landing Page Stylesheet
   Full Responsive Layout matching Wasset website layout.png
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #0A0817;
  --bg-dark-secondary: #0E0C22;
  --bg-dark-card: #15122E;
  --bg-light: #F8F9FE;
  --bg-white: #FFFFFF;

  --primary-purple: #6C47FF;
  --primary-purple-hover: #5832E6;
  --primary-violet: #8B5CF6;
  --accent-pink: #EC4899;
  --accent-cyan: #06B6D4;
  --accent-orange: #F97316;
  --accent-green: #10B981;

  --gradient-primary: linear-gradient(135deg, #7C4DFF 0%, #6C47FF 50%, #8B5CF6 100%);
  --gradient-dark-section: linear-gradient(180deg, #0E0A24 0%, #150F36 100%);

  /* Text Colors */
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-light-muted: #CBD5E1;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 35px rgba(108, 71, 255, 0.35);

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, #A78BFA 0%, #7C4DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #6C47FF 0%, #9333EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-purple {
  color: #A78BFA;
}

.text-purple-bold {
  color: var(--primary-purple);
  font-weight: 700;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 8, 23, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 8, 23, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.brand-group {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light-muted);
  padding-bottom: 4px;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #7C4DFF;
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-purple-pill {
  background: linear-gradient(135deg, #7C4DFF 0%, #6C47FF 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
  transition: var(--transition-smooth);
}

.btn-purple-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.6);
}

.btn-circle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #FFF;
  border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 71, 255, 0.25) 0%, rgba(10, 8, 23, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-bg-glow.glow-2 {
  top: 300px;
  left: -200px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, rgba(10, 8, 23, 0) 70%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--text-light-muted);
  margin-bottom: 36px;
}

/* 3 Horizontal Feature Cards */
.hero-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  max-width: 580px;
}

.feature-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(22, 17, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.feature-card-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.f-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  flex-shrink: 0;
}

.purple-box { background: linear-gradient(135deg, #7C4DFF, #6366F1); }
.pink-box { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.violet-box { background: linear-gradient(135deg, #8B5CF6, #A855F7); }

.f-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.f-info span {
  display: block;
  font-size: 0.7rem;
  color: #94A3B8;
  line-height: 1.2;
  margin-top: 2px;
}

/* Hero Actions Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #7C4DFF 0%, #6C47FF 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
  border: none;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(124, 77, 255, 0.6);
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-badge-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #000000;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #FFF;
  transition: var(--transition-smooth);
}

.store-badge-dark:hover {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text small {
  font-size: 0.62rem;
  text-transform: uppercase;
  color: #94A3B8;
  line-height: 1;
}

.badge-text span {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

/* HERO VISUAL COLUMN */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 540px;
}

.closet-backdrop-wrapper {
  position: absolute;
  top: 0;
  right: -20px;
  width: 105%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  z-index: 1;
}

.closet-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.65) contrast(1.1);
}

.closet-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0A0817 0%, rgba(10, 8, 23, 0.35) 40%, rgba(10, 8, 23, 0.1) 100%);
}

.phone-frame-wrapper {
  position: relative;
  z-index: 5;
  width: 300px;
  margin-right: 140px;
}

.hero-phone-img {
  width: 100%;
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 40px rgba(108, 71, 255, 0.35);
  animation: floatPhone 6s ease-in-out infinite;
}

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

/* See Wasset Action Pill Button */
.action-pill-card {
  position: absolute;
  top: 42%;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 10px;
  background: rgba(18, 12, 40, 0.9);
  border: 1.5px solid rgba(139, 92, 246, 0.5);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(124, 77, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.action-pill-card:hover {
  transform: scale(1.05);
  border-color: rgba(168, 85, 247, 0.8);
}

.play-btn-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #8B5CF6 0%, #6C47FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.6);
  flex-shrink: 0;
}

.play-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

/* Glass Quote Card (Bottom Right) */
.hero-glass-quote {
  position: absolute;
  bottom: 20px;
  right: 0px;
  z-index: 10;
  width: 300px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04));
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  backdrop-filter: blur(24px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.quote-sparkle {
  margin-bottom: 10px;
}

.quote-primary {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 8px;
}

.quote-secondary {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 2: FEATURES GRID (LIGHT THEME)
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

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

.feature-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(108, 71, 255, 0.12);
}

.card-icon-header {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #FFF;
}

.purple-theme { background: linear-gradient(135deg, #7C4DFF, #9333EA); }
.pink-theme { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.orange-theme { background: linear-gradient(135deg, #F97316, #FBBF24); }
.magenta-theme { background: linear-gradient(135deg, #D946EF, #8B5CF6); }
.green-theme { background: linear-gradient(135deg, #10B981, #059669); }
.blue-theme { background: linear-gradient(135deg, #3B82F6, #6366F1); }

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.card-mockup-mini {
  margin-top: auto;
  background: #F1F5F9;
  border-radius: var(--radius-md);
  padding: 16px;
}

.mini-grid {
  display: flex;
  gap: 8px;
}

.mini-item {
  flex: 1;
  height: 48px;
  background: #CBD5E1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

.outfit-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.outfit-badge {
  background: #DCFCE7;
  color: #166534;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
}

.shop-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-chip {
  font-weight: 800;
  color: var(--primary-purple);
}

.brand-tag {
  font-size: 0.8rem;
  color: #64748B;
}

.live-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-dot-pulse {
  color: #EF4444;
  font-weight: 700;
  font-size: 0.85rem;
}

.live-text {
  font-size: 0.8rem;
  color: #64748B;
}

.sell-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sold-badge {
  background: #3B82F6;
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.earned-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
}

.chart-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.val-label {
  font-size: 0.75rem;
  color: #64748B;
}

.val-amount {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.val-growth {
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 600;
}

/* ==========================================================================
   SECTION 3: HOW WASSET WORKS
   ========================================================================== */
.how-it-works-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.how-it-works-section .section-title {
  color: var(--text-dark);
}

.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.timeline-line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed #CBD5E1;
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7C4DFF, #9333EA);
  color: #FFF;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.3);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.step-img-box {
  width: 100%;
  height: 120px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-mock-graphic {
  font-size: 2.5rem;
}

/* ==========================================================================
   SECTION 4: LIVE VIDEO COMMERCE
   ========================================================================== */
.live-commerce-section {
  padding: 100px 0;
  background: var(--gradient-dark-section);
  color: var(--text-light);
}

.live-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.live-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #EF4444;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.live-red-dot {
  width: 8px;
  height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.live-info h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
}

.live-subtitle {
  font-size: 1.2rem;
  color: var(--text-light-muted);
  margin-bottom: 30px;
}

.live-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.live-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFF;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.glow-shadow {
  box-shadow: 0 0 30px rgba(108, 71, 255, 0.5);
}

.live-visuals {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-live-phone {
  max-width: 280px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.live-phone-img {
  width: 100%;
  border-radius: 28px;
}

.upcoming-shows-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.upcoming-shows-list h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light-muted);
  margin-bottom: 4px;
}

.show-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.show-time {
  font-size: 0.75rem;
  color: #A78BFA;
  font-weight: 700;
}

.show-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 4px 0;
}

.show-stylist {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.brands-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 24px;
}

.brand-item {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 2px;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.brand-item:hover {
  opacity: 1;
}

.label-more {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
}

/* ==========================================================================
   SECTION 5: REAL VALUE
   ========================================================================== */
.sell-value-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.sell-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sell-content .section-title {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.sell-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.sell-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.sell-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.s-icon {
  font-size: 1.3rem;
}

.flatlay-card-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.flatlay-img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.resale-tag-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: #FFF;
  display: flex;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.resale-tag-overlay strong {
  color: #A78BFA;
}

/* ==========================================================================
   SECTION 6: TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.testimonials-section .section-title {
  color: var(--text-dark);
}

.testimonials-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.user-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C47FF, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 800;
  font-size: 1rem;
}

.avatar-2 { background: linear-gradient(135deg, #EC4899, #F472B6); }
.avatar-3 { background: linear-gradient(135deg, #10B981, #059669); }

.user-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.user-info small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.5;
}

.stars {
  color: #F59E0B;
  font-size: 1.1rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  background: #FFF;
  color: var(--text-dark);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--primary-purple);
  color: #FFF;
  border-color: var(--primary-purple);
}

/* ==========================================================================
   SECTION 7: DOWNLOAD BANNER
   ========================================================================== */
.download-banner-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.cta-banner-card {
  background: linear-gradient(135deg, #251754 0%, #5832E6 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-glow);
}

.brand-icon-square {
  width: 52px;
  height: 52px;
  background: #FFF;
  color: var(--primary-purple);
  font-weight: 900;
  font-size: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-left h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-left p {
  font-size: 1.1rem;
  color: #E2E8F0;
  margin-bottom: 32px;
}

.cta-store-buttons {
  display: flex;
  gap: 16px;
}

.cta-right {
  display: flex;
  justify-content: flex-end;
}

.qr-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 240px;
}

.qr-box {
  background: #FFF;
  color: #0F172A;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.qr-card span {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.qr-card small {
  font-size: 0.75rem;
  color: #CBD5E1;
}

/* ==========================================================================
   SECTION 8: FOOTER
   ========================================================================== */
.footer {
  background-color: #070510;
  padding-top: 80px;
  color: var(--text-light-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 16px 0 24px 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}

.social-links a:hover {
  background: var(--primary-purple);
}

.footer-col h4 {
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.footer-col a:hover {
  color: #FFF;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-badge {
  padding: 8px 12px;
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

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

.video-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #15122E;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-glow);
}

.close-modal-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
}

.video-placeholder-demo {
  text-align: center;
  padding: 60px 20px;
}

.demo-play-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.8rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE, TABLET, DESKTOP)
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-feature-cards {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 40px;
  }

  .phone-frame-wrapper {
    margin-right: 0;
  }

  .action-pill-card {
    right: 20px;
  }

  .hero-glass-quote {
    right: 20px;
  }

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

  .steps-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-line {
    display: none;
  }

  .live-wrapper, .sell-wrapper, .cta-banner-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0E0A24;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-feature-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .testimonials-wrapper {
    grid-template-columns: 1fr;
  }

  .phone-frame-wrapper {
    width: 260px;
  }

  .action-pill-card {
    top: 30%;
    right: -10px;
  }

  .hero-glass-quote {
    bottom: -20px;
    right: -10px;
    width: 260px;
  }

  .cta-banner-card {
    padding: 32px 24px;
  }

  .cta-right {
    justify-content: center;
  }
}
