/* ============================================
   PocketCollect Landing Page — Styles
   Colors: Yellow #F9BD17 / Purple #333B5A
   ============================================ */

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

:root {
  --yellow: #F9BD17;
  --yellow-light: #FDD85D;
  --yellow-dark: #D9A00E;
  --purple: #333B5A;
  --purple-deep: #252B42;
  --purple-light: #4A5478;
  --purple-surface: #3D4666;
  --white: #FFFFFF;
  --gray-100: #F7F8FA;
  --gray-200: #E8EAF0;
  --gray-300: #C5C9D6;
  --gray-400: #9298AC;
  --gray-500: #6B7280;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 60px rgba(249, 189, 23, 0.3);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--white);
  background: var(--purple-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* --- Text Gradient --- */
.text-gradient {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: var(--radius-full);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-full);
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--purple-deep);
}

.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

/* --- Section --- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(37, 43, 66, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 32px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--white);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: var(--yellow);
  top: -200px;
  right: -100px;
  opacity: 0.15;
}

.hero-glow--2 {
  width: 500px;
  height: 500px;
  background: #6366f1;
  bottom: -200px;
  left: -100px;
  opacity: 0.1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(249, 189, 23, 0.12);
  border: 1px solid rgba(249, 189, 23, 0.25);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.hero-stat span {
  font-size: 13px;
  color: var(--gray-400);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Hero Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone {
  position: relative;
  z-index: 2;
}

.hero-phone-frame {
  width: 280px;
  background: var(--purple);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 20px 60px rgba(0,0,0,0.4),
    0 0 80px rgba(249, 189, 23, 0.1);
}

.hero-phone-screen {
  width: 100%;
  aspect-ratio: 645 / 1265;
  background: var(--purple-deep);
  border-radius: 30px;
  overflow: hidden;
}

.hero-phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  z-index: 1;
}

.floating-card--1 {
  top: 40px;
  right: -20px;
  width: 100px;
  height: 140px;
}

.floating-card--2 {
  bottom: 60px;
  left: -10px;
  width: 90px;
  height: 126px;
}

.floating-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.floating-card--1 .floating-card-inner {
  background: linear-gradient(135deg, var(--yellow) 0%, #F97316 100%);
  animation: float1 6s ease-in-out infinite;
}

.floating-card--2 .floating-card-inner {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  animation: float2 7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-16px) rotate(-9deg); }
}

/* Hero Price Widget */
.hero-price-widget {
  position: absolute;
  top: 30px;
  right: -30px;
  z-index: 3;
  animation: float1 6s ease-in-out infinite;
}

.hero-price-widget-inner {
  background: rgba(37, 43, 66, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 20px;
  width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-price-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.hero-price-widget-label {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

.hero-price-widget-change {
  font-size: 11px;
  font-weight: 700;
  color: #34D399;
}

.hero-price-widget-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-price-curve {
  width: 100%;
  height: 40px;
  display: block;
}

.hero-price-curve-line {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  animation: drawCurve 2.5s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-price-curve-fill {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 2s;
}

@keyframes drawCurve {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-line {
  width: 2px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ============================================
   FEATURES — Showcase (3 grosses features)
   ============================================ */
.features {
  background: var(--purple-deep);
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}

.feature-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-showcase-item--reverse {
  direction: rtl;
}

.feature-showcase-item--reverse > * {
  direction: ltr;
}

.feature-showcase-content {
  max-width: 480px;
}

.feature-showcase-content h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-showcase-content p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.7;
}

.feature-showcase-mockup {
  display: flex;
  justify-content: center;
}

.feature-phone-frame {
  width: 260px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    0 0 60px rgba(249, 189, 23, 0.08);
  transition: var(--transition);
}

.feature-phone-frame:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    0 0 80px rgba(249, 189, 23, 0.12);
}

.feature-phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Price chart mockup (feature 3) */
.feature-phone-frame--chart {
  background: var(--purple);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9/16;
}

.price-chart-mockup {
  width: 100%;
}

.price-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.price-chart-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.price-chart-change {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(52, 211, 153, 0.15);
  color: #34D399;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.price-chart-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}

.price-chart-curve {
  width: 100%;
  height: 100px;
  display: block;
}

.price-chart-curve-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawCurve 2.5s ease-out forwards;
  animation-delay: 0.5s;
}

.price-chart-curve-fill {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 2s;
}

/* Features — "Et aussi..." label */
.features-other-label {
  text-align: center;
  margin-bottom: 32px;
}

.features-other-label span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  position: relative;
  padding: 0 24px;
}

.features-other-label span::before,
.features-other-label span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.features-other-label span::before {
  right: 100%;
}

.features-other-label span::after {
  left: 100%;
}

/* Features — Grid (petites cards) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(249, 189, 23, 0.2);
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(249, 189, 23, 0.12);
  color: var(--yellow);
  margin-bottom: 20px;
}

.feature-card-icon--purple {
  background: rgba(99, 102, 241, 0.12);
  color: #818CF8;
}

.feature-card-icon--green {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
}

.feature-card-icon--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60A5FA;
}

.feature-card-icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #FB923C;
}

.feature-card-icon--pink {
  background: rgba(236, 72, 153, 0.12);
  color: #F472B6;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(249, 189, 23, 0.15);
  color: var(--yellow);
  vertical-align: middle;
  margin-left: 6px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}

@keyframes barGrow {
  to { transform: scaleY(1); }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--purple);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 24px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin-top: 28px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--purple);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(249, 189, 23, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-content {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-avatar--1 { background: linear-gradient(135deg, #F9BD17, #F97316); }
.testimonial-avatar--2 { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.testimonial-avatar--3 { background: linear-gradient(135deg, #14B8A6, #06B6D4); }
.testimonial-avatar--4 { background: linear-gradient(135deg, #EC4899, #F43F5E); }

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 12px;
  color: var(--gray-500);
}

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}

.testimonials-cta-text {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--purple-deep);
}

/* Pricing Toggle */
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: -32px;
  margin-bottom: 64px;
}

.pricing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: var(--transition);
}

.pricing-toggle-label--active {
  color: var(--white);
}

.pricing-toggle-badge {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #34D399;
}

.pricing-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  background: var(--yellow);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.pricing-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  transform: translateX(20px);
}

.pricing-toggle.monthly {
  background: rgba(255,255,255,0.2);
}

.pricing-toggle.monthly .pricing-toggle-thumb {
  transform: translateX(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--pro {
  background: rgba(249, 189, 23, 0.06);
  border-color: rgba(249, 189, 23, 0.25);
}

.pricing-card--pro:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 40px rgba(249, 189, 23, 0.15);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--yellow);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
}

.pricing-card-header {
  margin-bottom: 32px;
}

.pricing-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.pricing-card--pro .pricing-amount {
  color: var(--yellow);
}

.pricing-period {
  font-size: 16px;
  color: var(--gray-400);
  margin-left: 4px;
}

.pricing-savings {
  font-size: 13px;
  color: #34D399;
  font-weight: 500;
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.pricing-feature--disabled {
  opacity: 0.35;
}

.pricing-feature--disabled svg {
  color: var(--gray-500);
}

/* ============================================
   SOCIAL / COMMUNAUTÉ
   ============================================ */
.social {
  background: var(--purple);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  text-align: center;
}

.social-card:hover {
  transform: translateY(-4px);
}

.social-card--discord:hover {
  border-color: rgba(88, 101, 242, 0.5);
}

.social-card--instagram:hover {
  border-color: rgba(228, 64, 95, 0.5);
}

.social-card--tiktok:hover {
  border-color: rgba(37, 244, 238, 0.5);
}

.social-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.social-card:hover .social-card-icon {
  transform: scale(1.1);
}

.social-card-icon--discord {
  background: linear-gradient(135deg, #5865F2, #4752C4);
}

.social-card-icon--instagram {
  background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-card-icon--tiktok {
  background: linear-gradient(135deg, #000000, #25F4EE);
}

.social-card-text h3 {
  font-size: 18px;
  font-weight: 700;
}

.social-card-text p {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 4px;
}

.social-card-meta {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 80px 0 120px;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  background: var(--purple);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--yellow);
  border-radius: 50%;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(150px);
  opacity: 0.15;
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--purple-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--yellow);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--yellow);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 120px 0 80px;
  min-height: 60vh;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page .legal-subtitle {
  font-size: 1.1rem;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 24px;
}

.legal-page .legal-date {
  margin-top: 40px;
  font-style: italic;
  opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--purple-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

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

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--gray-300);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--gray-400);
  transition: var(--transition);
}

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

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--gray-500);
  transition: var(--transition);
}

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

.footer-disclaimer {
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 24px;
  opacity: 0.7;
}

/* ============================================
   ANIMATIONS (Scroll-triggered)
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .feature-showcase-item {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feature-showcase-item--reverse {
    direction: ltr;
  }

  .feature-showcase-content {
    max-width: 100%;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(37, 43, 66, 0.95);
    backdrop-filter: blur(16px);
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .navbar-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-phone-frame {
    width: 240px;
  }

  .floating-card,
  .hero-price-widget {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .features-showcase {
    gap: 60px;
  }

  .feature-showcase-content h3 {
    font-size: 24px;
  }

  .feature-phone-frame {
    width: 220px;
  }

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

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }

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

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

  .cta-card {
    padding: 48px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

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