  *,*::before,*::after{ box-sizing: border-box; }

  /* ═══════════════════════════════════════════════════════════
     FORCE LIGHT MODE - Override any dark theme interference
     ═══════════════════════════════════════════════════════════ */
  :root,
  [data-theme="light"],
  [force-theme="light"] {
    --pad-x: clamp(24px, 8vw, 120px);
    --section-pad-y: clamp(80px, 12vh, 140px);
    --nav-blur: 20px;
    --card-gap: clamp(18px, 3.2vh, 28px);
    --card-pad: clamp(16px, 2.6vh, 22px);
    --sticky-top: clamp(72px, 12vh, 160px);
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-soft: 0 4px 24px rgba(0,0,0,.08);
    --shadow-medium: 0 8px 40px rgba(0,0,0,.12);
    --shadow-strong: 0 20px 60px rgba(0,0,0,.2);

    /* Force light mode text colors */
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #6e6e73;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-tertiary: #f8f9fa;

    /*color-scheme: light;*/
  }

  body{
    margin:0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--surface, #f8f9fa) !important;
    color: var(--text, #1d1d1f) !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img, video { display: block; max-width: 100%; }
  h1, h2, h3, h4 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary, #1d1d1f);
  }
  p {
    margin: 0;
  }
  section { padding: var(--section-pad-y) var(--pad-x); }


  /* ═══════════════════════════════════════════════════════════
     FORCE LIGHT MODE TEXT COLORS ON ALL SECTIONS
     ═══════════════════════════════════════════════════════════ */
  .why-expo h2,
  .why-expo h3,
  .how-it-works h2,
  .how-it-works h3,
  .features-section h2,
  .features-section h3,
  .pricing-section h2,
  .pricing-section h3,
  .testimonials-section h2,
  .testimonials-section h3,
  .testimonials-section h4,
  .community-content h2 {
    color: #1d1d1f !important;
  }

  .why-expo p,
  .how-it-works p,
  .features-section p,
  .pricing-section p,
  .testimonials-section p,
  .community-content p {
    color: #86868b !important;
  }

  .section-eyebrow {
    color: #6e6e73 !important;
  }

  .pricing-card h3,
  .pricing-card .pricing-desc,
  .pricing-features li,
  .testimonial-text {
    color: #1d1d1f !important;
  }

  /* ═══════════════════════════════════════════════════════════
     UTILITIES
     ═══════════════════════════════════════════════════════════ */
  .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .section-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ui-accent, #6e6e73);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.5;
    color: #86868b;
  }

  .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(48px, 8vh, 80px) auto;
  }

  /* ═══════════════════════════════════════════════════════════
     BUTTONS
     ═══════════════════════════════════════════════════════════ */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #0071e3 0%, #0077ed 100%);
    color: #fff;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(0,113,227,.35);
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left 0.5s ease;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, #0077ed 0%, #0066cc 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,113,227,.45);
  }

  .btn-primary:hover::before {
    left: 100%;
  }

  .btn-primary i {
    transition: transform 0.3s ease;
  }

  .btn-primary:hover i {
    transform: translateX(4px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #0071e3;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
  }

  .btn-secondary:hover {
    color: #0077ed;
  }

  .btn-secondary i {
    transition: transform 0.3s var(--transition-smooth);
  }

  .btn-secondary:hover i {
    transform: translateX(4px);
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #1d1d1f;
    border: 2px solid #1d1d1f;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
  }

  .btn-outline:hover {
    background: #1d1d1f;
    color: #fff;
  }


  /* ═══════════════════════════════════════════════════════════
     Note: Navigation styles moved to header.css
     ═══════════════════════════════════════════════════════════ */

  /* ═══════════════════════════════════════════════════════════
     HERO SECTION
     ═══════════════════════════════════════════════════════════ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: #000;
  }

  .hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transform: scale(1.1);
    will-change: transform;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.3) 0%,
      rgba(0,0,0,0.1) 50%,
      rgba(0,0,0,0.6) 100%);
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--pad-x);
    max-width: 1000px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
  }

  .hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #30d158;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
  }

  .hero-title {
    color: #fff;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }

  .hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
  }

  .hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 40px auto;
    opacity: 0;
    transform: translateY(20px);
  }

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
  }

  .hero-cta .btn-primary {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #1d1d1f;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    font-weight: 600;
  }

  .hero-cta .btn-primary::before {
    background: linear-gradient(90deg, transparent, rgba(0,0,0,.05), transparent);
  }

  .hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
  }

  .hero-cta .btn-secondary {
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero-cta .btn-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
  }

  .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
  }

  .hero-scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    position: relative;
  }

  .hero-scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
  }

  @keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  /* ═══════════════════════════════════════════════════════════
     WHY EXPO SECTION
     ═══════════════════════════════════════════════════════════ */
  .why-expo {
    background: #fff;
    padding: clamp(80px, 12vh, 140px) var(--pad-x);
  }

  .why-expo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 4vw, 48px);
    max-width: 1200px;
    margin: 0 auto;
  }

  .why-expo-item {
    text-align: center;
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(30px);
  }

  .why-expo-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    color: #1d1d1f;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform 0.4s var(--transition-bounce);
  }

  .why-expo-item:hover .why-expo-icon {
    transform: scale(1.1) rotate(-5deg);
  }

  .why-expo-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
  }

  .why-expo-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #86868b;
  }

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

  @media (max-width: 500px) {
    .why-expo-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     TV SECTION (mockup sticky)
     ═══════════════════════════════════════════════════════════ */
  .tv-section {
    position: relative;
    padding: var(--section-pad-y) 0;
    background: #f5f5f7;
  }

  .tv-section.dark {
    background: #1d1d1f;
    color: #fff;
  }

  .tv-section.dark .tv-lead {
    color: rgba(255,255,255,0.7);
  }

  .tv-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
    padding: 0 var(--pad-x);
    max-width: 1400px;
    margin: 0 auto;
  }

  .tv-content-wrapper {
    position: relative;
  }

  .tv-text {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section-pad-y) 0;
    opacity: 0.3;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(-20px);
  }

  .tv-text.is-active {
    opacity: 1;
    transform: translateX(0);
  }

  .tv-intro {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    margin-bottom: clamp(16px, 2vh, 24px);
    line-height: 1.1;
    color: #1d1d1f;
  }

  .tv-section.dark .tv-intro {
    color: #fff;
  }

  .tv-lead {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.6;
    max-width: 52ch;
    color: #86868b;
  }

  .tv-section.dark .tv-lead {
    color: rgba(255,255,255,0.7);
  }

  .tv-mockup-wrapper {
    position: relative;
    height: 100%;
  }

  .tv-mockup {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    will-change: transform;
    max-width: 100%;
  }

  .tv-mockup img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.5s var(--transition-smooth);
  }

  .tv-mockup:hover img {
    transform: scale(1.02);
  }

  .tv-mockup .carousel-dots {
    position: static;
    transform: none;
    margin-top: 16px;
    display: flex;
    gap: 10px;
    justify-content: center;
    pointer-events: auto;
  }

  .tv-mockup .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
  }

  .tv-mockup .dot:hover {
    transform: scale(1.2);
  }

  .tv-mockup .dot.is-active {
    background: #0071e3;
    transform: scale(1.1);
  }

  .tv-mockup .mockup-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  @media (max-width: 980px) {
    .tv-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .tv-mockup-wrapper {
      order: -1;
    }
    .tv-mockup {
      position: relative;
      top: 0;
      transform: none;
    }
    .tv-text {
      min-height: auto;
      transform: none;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     HOW IT WORKS SECTION
     ═══════════════════════════════════════════════════════════ */
  .how-it-works {
    background: #fff;
    padding: clamp(100px, 15vh, 160px) var(--pad-x);
  }

  .steps-container {
    display: flex;
    justify-content: center;
    gap: clamp(40px, 6vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .steps-container::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8e8ed 10%, #e8e8ed 90%, transparent);
  }

  .step-item {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
  }

  .step-number {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px auto;
    background: linear-gradient(135deg, #f5f5f7 0%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #0071e3;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--transition-bounce);
  }

  .step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0,113,227,.2);
  }

  .step-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
  }

  .step-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #86868b;
  }

  @media (max-width: 768px) {
    .steps-container {
      flex-direction: column;
      align-items: center;
    }
    .steps-container::before {
      display: none;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     FEATURES GRID (Studio/Premium)
     ═══════════════════════════════════════════════════════════ */
  .features-section {
    padding: var(--section-pad-y) var(--pad-x);
    background: linear-gradient(180deg, #f5f5f7 0%, #fff 100%);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
  }

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

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

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

  .feature-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(28px, 4vw, 44px);
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,.04);
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .feature-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0,0,0,.12);
    border-color: rgba(0,113,227,.1);
  }

  .feature-card:hover::before {
    opacity: 1;
  }

  .feature-card .plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 980px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #fff;
  }

  .feature-card .plan-badge.studio {
    background: linear-gradient(135deg, #667eea 0%, #7c8ff5 100%);
  }

  .feature-card .plan-badge.premium {
    background: linear-gradient(135deg, #764ba2 0%, #9b59b6 100%);
  }

  .feature-card h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #1d1d1f;
  }

  .feature-card p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5;
    color: #86868b;
    margin: 0;
  }

  .feature-card .feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.4s var(--transition-bounce);
  }

  .feature-card .feature-icon i {
    font-size: 32px;
    color: #667eea;
  }

  .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--gradient-primary);
    box-shadow: 0 8px 24px rgba(102,126,234,.35);
  }

  .feature-card:hover .feature-icon i {
    color: #fff;
  }

  /* ═══════════════════════════════════════════════════════════
     DEMO VIDEO SECTION
     ═══════════════════════════════════════════════════════════ */
  .demo-video-section {
    background: #000;
    padding: clamp(100px, 15vh, 160px) var(--pad-x);
    text-align: center;
    overflow: hidden;
  }

  .demo-video-section .section-header {
    color: #fff;
    margin-bottom: clamp(48px, 8vh, 80px);
  }

  .demo-video-section .section-title {
    color: #fff;
  }

  .demo-video-section .section-subtitle {
    color: rgba(255,255,255,0.7);
  }

  .demo-device {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  .demo-device-frame {
    position: relative;
    background: linear-gradient(180deg, #3a3a3c 0%, #1d1d1f 100%);
    border-radius: 20px;
    padding: 16px 16px 40px 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,.5);
  }

  .demo-device-notch {
    width: 80px;
    height: 8px;
    background: #1d1d1f;
    border-radius: 4px;
    margin: 0 auto 12px auto;
  }

  .demo-device-screen {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
  }

  .demo-device-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .demo-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1d1d1f;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }

  .demo-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
  }

  .demo-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
  }

  /* ═══════════════════════════════════════════════════════════
     TESTIMONIALS SECTION
     ═══════════════════════════════════════════════════════════ */
  .testimonials-section {
    background: linear-gradient(180deg, #f5f5f7 0%, #fff 100%);
    padding: clamp(100px, 15vh, 160px) var(--pad-x);
    overflow: hidden;
  }

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

  .testimonial-card {
    background: #fff;
    border-radius: 28px;
    padding: 44px 36px;
    border: 1px solid rgba(0,0,0,.04);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 72px;
    font-family: Georgia, serif;
    color: rgba(0,113,227,.08);
    line-height: 1;
  }

  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 56px rgba(0,0,0,.12);
    border-color: rgba(0,113,227,.1);
  }

  .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #FFB800;
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 17px;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 28px;
    font-style: italic;
  }

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

  .testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
  }

  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1d1d1f;
  }

  .testimonial-info p {
    font-size: 14px;
    color: #86868b;
  }

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

  /* ═══════════════════════════════════════════════════════════
     TEMPLATES GALLERY SECTION
     ═══════════════════════════════════════════════════════════ */
  .templates-section {
    background: #1d1d1f;
    padding: clamp(100px, 15vh, 160px) var(--pad-x);
    overflow: hidden;
  }

  .templates-section .section-header {
    color: #fff;
  }

  .templates-section .section-title {
    color: #fff;
  }

  .templates-section .section-subtitle {
    color: rgba(255,255,255,0.6);
  }

  .templates-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 20px 0 40px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(var(--pad-x) * -1);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .templates-carousel::-webkit-scrollbar {
    display: none;
  }

  .template-card {
    flex: 0 0 auto;
    width: clamp(280px, 30vw, 360px);
    scroll-snap-align: center;
    opacity: 0;
    transform: translateY(30px);
  }

  .template-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #2d2d2f;
    margin-bottom: 20px;
    transition: transform 0.4s var(--transition-smooth);
  }

  .template-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
  }

  .template-card:hover .template-preview {
    transform: translateY(-8px);
  }

  .template-card:hover .template-preview img {
    transform: scale(1.05);
  }

  .template-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
  }

  .template-card:hover .template-preview-overlay {
    opacity: 1;
  }

  .template-preview-btn {
    padding: 12px 24px;
    background: #fff;
    color: #1d1d1f;
    border: none;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s var(--transition-smooth);
  }

  .template-card:hover .template-preview-btn {
    transform: translateY(0);
  }

  .template-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
  }

  .template-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }

  /* ═══════════════════════════════════════════════════════════
     PRICING SECTION (Apple Style)
     ═══════════════════════════════════════════════════════════ */
  .pricing-section {
    background: #fff;
    padding: clamp(100px, 15vh, 160px) var(--pad-x);
  }

  .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
  }

  .pricing-toggle span {
    font-size: 15px;
    font-weight: 500;
    color: #86868b;
    transition: color 0.3s ease;
  }

  .pricing-toggle span.active {
    color: #1d1d1f;
  }

  .pricing-toggle-switch {
    width: 56px;
    height: 32px;
    background: #e8e8ed;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .pricing-toggle-switch.active {
    background: #0071e3;
  }

  .pricing-toggle-switch::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    transition: transform 0.3s var(--transition-smooth);
  }

  .pricing-toggle-switch.active::after {
    transform: translateX(24px);
  }

  .pricing-save-badge {
    background: #30d158;
    color: #fff;
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
  }

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

  .pricing-card {
    background: #fff;
    border: 1px solid #e8e8ed;
    border-radius: 28px;
    padding: 44px 36px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(40px);
  }

  .pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0,0,0,.12);
    border-color: rgba(0,113,227,.15);
  }

  .pricing-card.featured {
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    border: 2px solid #0071e3;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,113,227,.15);
  }

  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 28px 72px rgba(0,113,227,.2);
  }

  .pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0071e3;
    color: #fff;
    padding: 6px 20px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
  }

  .pricing-card .pricing-desc {
    font-size: 15px;
    color: #86868b;
    margin-bottom: 28px;
  }

  .pricing-price {
    margin-bottom: 28px;
  }

  .pricing-price .amount {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1;
  }

  .pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
  }

  .pricing-price .period {
    font-size: 17px;
    color: #86868b;
    /*display: block;*/
    margin-top: 8px;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
  }

  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #1d1d1f;
    border-bottom: 1px solid #f5f5f7;
  }


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

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

  .pricing-features li i {
    color: #30d158;
    font-size: 18px;
    flex-shrink: 0;
  }

  .pricing-features li.highlight {
    font-weight: 600;
  }

  .pricing-features li.separator {
    position: relative;
    text-align: center;
    padding: 20px 0;
    border-bottom: none;
  }

  .pricing-features li.separator::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid #e8e8ed;
  }

  .pricing-features li.separator::after {
    content: "+";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #86868b;
  }

  .pricing-cta {
    width: 100%;
  }

  .pricing-card.featured .pricing-cta {
    background: #0071e3;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,113,227,.4);
  }

  .pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #86868b;
  }

  @media (max-width: 900px) {
    .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
    }
    .pricing-card.featured {
      transform: none;
    }
    .pricing-card.featured:hover {
      transform: translateY(-8px);
    }
  }

  /* ═══════════════════════════════════════════════════════════
     COMMUNITY SECTION
     ═══════════════════════════════════════════════════════════ */
  .community-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-pad-y) var(--pad-x);
  }

  .avatar-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .avatar {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    will-change: transform;
  }

  .community-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    padding: 48px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
  }

  .community-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #1d1d1f;
  }

  .community-content p {
    font-size: clamp(16px, 2vw, 19px);
    color: #86868b;
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .community-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
  }

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

  .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0071e3;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 14px;
    color: #86868b;
  }

  .btn-view-creators {
    padding: 16px 32px;
    background: #1d1d1f;
    color: #fff;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
  }

  .btn-view-creators:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }

  /* ═══════════════════════════════════════════════════════════
     MODAL USERS
     ═══════════════════════════════════════════════════════════ */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
  }

  .modal-overlay.active {
    display: flex;
  }

  .modal-content {
    background: #fff;
    border-radius: 24px;
    max-width: 1200px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 40px 80px rgba(0,0,0,.3);
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f5f5f7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .modal-close:hover {
    background: #e8e8ea;
    transform: rotate(90deg);
  }

  .modal-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #1d1d1f;
  }

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

  @keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }


  /* ═══════════════════════════════════════════════════════════
     USERS GRID (for modal)
     ═══════════════════════════════════════════════════════════ */
  .users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
  }

  .user-card {
    position: relative;
    opacity: 0;
    will-change: transform, opacity;
  }

  .user-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background: #f5f5f7;
  }

  .user-card-link:hover {
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-4px);
  }

  .user-card-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    transition: all 0.3s var(--transition-smooth);
  }

  .user-card-link:hover .user-card-avatar {
    transform: scale(1.05);
  }

  .user-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .user-card-username {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
  }

  .user-card-handle {
    font-size: 14px;
    color: #0071e3;
  }


  .plan-cta {
    display: block;
    width: 100%;
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    border: none;
  }

  .plan-cta.primary {
    background: linear-gradient(135deg, #0071e3 0%, #0077ed 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,113,227,.35);
  }

  .plan-cta.primary:hover {
    background: linear-gradient(135deg, #0077ed 0%, #0066cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,113,227,.45);
  }

  .plan-cta.outline {
    background: transparent;
    color: #1d1d1f;
    border: 2px solid #1d1d1f;
  }

  .plan-cta.outline:hover {
    background: #1d1d1f;
    color: #fff;
  }


  .plan-cta.secondary {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6259 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 59, 48, 0.35);
  }

  .plan-cta.secondary:hover {
    background: linear-gradient(135deg, #ff6259 0%, #ff7b72 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.45);
  }

  .plans-footer {
    text-align: center;
    margin-top: clamp(40px, 6vh, 60px);
    padding-top: 32px;
    border-top: 1px solid #e8e8ed;
  }

  .plans-footer p {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 12px;
  }

  .plans-footer a {
    color: #0071e3;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
  }

  .plans-footer a:hover {
    opacity: 0.7;
  }

  .plans-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #86868b;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
    transition: color 0.3s ease;
  }

  .plans-back:hover {
    color: #0071e3;
  }

  /* ═══════════════════════════════════════════════════════════
     RESPONSIVE & REDUCED MOTION
     ═══════════════════════════════════════════════════════════ */
  @media (max-width: 575.98px) {
    .user-card-avatar {
      width: 80px;
      height: 80px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* Plan Summary (subscribe page) */
  .plan-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--auth-bg);
    border-radius: var(--auth-radius);
    margin-bottom: 1.5rem;
  }

  .plan-summary .plan-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--auth-accent);
    color: #fff;
  }

  .plan-summary .plan-icon.premium {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
  }

  .plan-summary .plan-icon.classic {
    background: linear-gradient(135deg, #ff3b30, #ff6259);
  }

  .plan-info {
    flex: 1;
  }

  .plan-name {
    font-weight: 600;
    color: var(--auth-text);
    margin: 0 0 0.25rem;
  }

  .plan-price {
    font-size: 0.9rem;
    color: var(--auth-text-secondary);
  }

  .plan-price strong {
    color: var(--auth-text);
  }

  .plan-change {
    font-size: 0.85rem;
  }

  /* Grid for form fields */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  /* Secure Badge */
  .secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--auth-text-muted);
    margin-top: 1rem;
  }

  .secure-badge i {
    font-size: 1rem;
  }

  /* Hidden utility */
  .hidden {
    display: none !important;
  }

  /* Text utilities */
  .text-center { text-align: center; }
  .text-muted { color: var(--auth-text-muted); }
  .text-danger { color: var(--auth-danger); }
  .text-success { color: var(--auth-success); }
  .text-small { font-size: 0.85rem; }

  /* Margin utilities */
  .mt-1 { margin-top: 0.5rem; }
  .mt-2 { margin-top: 1rem; }
  .mt-3 { margin-top: 1.5rem; }
  .mb-1 { margin-bottom: 0.5rem; }
  .mb-2 { margin-bottom: 1rem; }
  .mb-3 { margin-bottom: 1.5rem; }

  /* Modal (CGU) */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .modal-backdrop.show {
    opacity: 1;
  }

  .modal .modal-content {
    background: var(--auth-surface);
    border-radius: var(--auth-radius-lg);
    border: none;
    box-shadow: var(--auth-shadow-lg);
  }

  .modal-header {
    border-bottom: 1px solid var(--auth-border);
    padding: 1.25rem 1.5rem;
  }

  .modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--auth-text);
  }

  .modal-body {
    padding: 1.5rem;
    color: var(--auth-text-secondary);
  }

  .modal-footer {
    border-top: 1px solid var(--auth-border);
    padding: 1rem 1.5rem;
  }

  /* Auth Responsive */
  @media (max-width: 480px) {
    .auth-title {
      font-size: 1.5rem;
    }

    .auth-card,
    .glass-panel {
      max-width: 100%;
    }
  }
