  *,*::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(--bg-tertiary, #f8f9fa) !important;
    color: var(--text-primary, #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;
    color: var(--text-secondary, #86868b);
  }
  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;
  }

  /* btn-premium = btn-primary avec couleur violet */
  .btn-premium {
    background: linear-gradient(135deg, #764ba2 0%, #9b59b6 100%);
    box-shadow: 0 4px 16px rgba(118, 75, 162, 0.35);
  }

  .btn-premium:hover {
    background: linear-gradient(135deg, #8e5db8 0%, #a569bd 100%);
    box-shadow: 0 8px 24px rgba(118, 75, 162, 0.45);
  }

  /* ═══════════════════════════════════════════════════════════
     NAVIGATION - Modern with Hero Dark / Scroll Light
     ═══════════════════════════════════════════════════════════ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 0 var(--pad-x);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 20px rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  nav .brand .brand-logo {
    height: 28px;
    width: auto;
    color: #fff;
    transition: all 0.4s ease;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
  }

  nav.scrolled .brand .brand-logo {
    color: #1d1d1f;
    filter: none;
  }

  nav .brand:hover .brand-logo {
    opacity: 0.8;
  }

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

  nav .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,.3);
  }

  nav.scrolled .nav-links a {
    color: #1d1d1f;
    text-shadow: none;
  }

  nav .nav-links a:hover {
    color: #fff;
  }

  nav.scrolled .nav-links a:hover {
    color: #0071e3;
  }

  nav .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    border-radius: 1px;
  }

  nav.scrolled .nav-links a.active::after {
    background: #0071e3;
  }

  nav .nav-cta {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    text-shadow: none;
  }

  nav .nav-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
  }

  nav.scrolled .nav-cta {
    background: #0071e3;
    color: #fff !important;
    border: 1px solid #0071e3;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
  }

  nav.scrolled .nav-cta:hover {
    background: #0077ed;
    border-color: #0077ed;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4);
  }

  nav .nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #fff;
  }

  nav.scrolled .nav-mobile-toggle {
    color: #1d1d1f;
  }

  @media (max-width: 768px) {
    nav .nav-links {
      display: none;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      padding: 16px var(--pad-x);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.scrolled .nav-links {
      background: rgba(255, 255, 255, 0.98);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    nav .nav-links a {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.scrolled .nav-links a {
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav .nav-links a:last-child {
      border-bottom: none;
      margin-top: 8px;
    }

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

    nav .nav-mobile-toggle {
      display: flex;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     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; }
  }

  /* ═══════════════════════════════════════════════════════════
     FINAL CTA SECTION
     ═══════════════════════════════════════════════════════════ */
  .final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: clamp(100px, 15vh, 160px) var(--pad-x);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
  }

  @keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }

  .final-cta h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
  }

  .final-cta p {
    font-size: clamp(17px, 2vw, 21px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .final-cta .btn-primary {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #667eea;
    padding: 20px 44px;
    font-size: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
  }

  .final-cta .btn-primary::before {
    background: linear-gradient(90deg, transparent, rgba(102,126,234,.1), transparent);
  }

  .final-cta .btn-primary:hover {
    background: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
  }

  /* ═══════════════════════════════════════════════════════════
     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;
  }

  /* ═══════════════════════════════════════════════════════════
     PLANS PAGE
     ═══════════════════════════════════════════════════════════ */
  .plans-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #f5f5f7 0%, #fff 100%);
    padding: clamp(40px, 8vh, 80px) clamp(20px, 5vw, 40px);
  }

  .plans-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .plans-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vh, 60px);
  }


  .plans-header h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .plans-header p {
    font-size: clamp(16px, 2vw, 19px);
    color: #86868b;
    max-width: 500px;
    margin: 0 auto;
  }

  .plans-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: clamp(40px, 6vh, 60px);
  }

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

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

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

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

  .plans-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);
  }

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

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

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

  @media (max-width: 700px) {
    .plans-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
    }
  }

  .plan-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);
  }

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

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

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

  .plan-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;
  }

  .plan-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition-bounce);
  }

  .plan-icon i {
    font-size: 32px;
    color: #fff;
  }

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

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

  .plan-card:hover .plan-icon {
    transform: scale(1.1) rotate(-5deg);
  }

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

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

  .plan-price {
    margin-bottom: 8px;
  }

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

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

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

  .plan-price-info {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 28px;
  }

  .plan-price-info .savings {
    color: #30d158;
    font-weight: 600;
  }

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

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

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

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

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

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

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

  .plan-features li.separator::after {
    content: "+";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: #f5f5f7;
    border: 1px solid #e8e8ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    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.premium {
    background: linear-gradient(135deg, #764ba2 0%, #9b59b6 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(118, 75, 162, 0.35);
  }

  .plan-cta.premium:hover {
    background: linear-gradient(135deg, #8e5db8 0%, #a569bd 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(118, 75, 162, 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;
    }
  }

  /* ═══════════════════════════════════════════════════════════
     AUTH PAGES - Login, Register, Subscribe, Reset Password
     ═══════════════════════════════════════════════════════════ */

  /* Auth Variables */
  :root {
    --auth-bg: #fafafa;
    --auth-surface: #ffffff;
    --auth-text: #1d1d1f;
    --auth-text-secondary: #6e6e73;
    --auth-text-muted: #86868b;
    --auth-border: rgba(0, 0, 0, 0.08);
    --auth-border-hover: rgba(0, 0, 0, 0.15);
    --auth-accent: #0071e3;
    --auth-accent-hover: #0077ed;
    --auth-success: #34c759;
    --auth-danger: #ff3b30;
    --auth-warning: #ff9500;
    --auth-radius: 12px;
    --auth-radius-lg: 20px;
    --auth-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --auth-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --auth-transition: 0.2s ease;
  }

  /* Wrapper */
  .wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--auth-bg);
  }

  .wrapper-cover {
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
  }

  /* Auth Card */
  .auth-card {
    width: 100%;
    max-width: 400px;
    background: var(--auth-surface);
    border-radius: var(--auth-radius-lg);
    box-shadow: var(--auth-shadow-lg);
    padding: 2.5rem 2rem;
    position: relative;
    animation: authFadeIn 0.4s ease;
  }

  .glass-panel {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--auth-radius-lg);
    box-shadow: var(--auth-shadow-lg);
    padding: 2.5rem 2rem;
    position: relative;
    animation: authFadeIn 0.4s ease;
  }

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

  @media (max-width: 480px) {
    .auth-card,
    .glass-panel {
      padding: 2rem 1.5rem;
      border-radius: var(--auth-radius);
      box-shadow: none;
      background: transparent;
    }
    .wrapper {
      background: var(--auth-surface);
    }
  }

  /* Logo */
  .auth-logo {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
  }

  .auth-logo svg {
    width: 100%;
    height: auto;
  }

  .logo-expo-dark {
    width: 120px;
    height: auto;
    color: var(--auth-text);
    transition: color var(--auth-transition);
  }

  .logo-expo-dark:hover {
    color: var(--auth-accent);
  }

  /* Force black logo on auth pages */
  .auth-logo .brand-logo,
  .auth-logo svg {
    color: #1d1d1f !important;
  }

  /* Auth Header */
  .auth-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .auth-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--auth-text);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
  }

  .auth-subtitle {
    font-size: 0.95rem;
    color: var(--auth-text-secondary);
    margin: 0;
  }

  /* Close Button */
  .auth-close,
  .card-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--auth-bg);
    color: var(--auth-text-secondary);
    text-decoration: none;
    transition: all var(--auth-transition);
    border: none;
    cursor: pointer;
  }

  .auth-close:hover,
  .card-close:hover {
    background: var(--auth-border);
    color: var(--auth-text);
  }

  /* Auth Form */
  .auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--auth-text);
  }

  .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #1d1d1f !important;
    background: #fafafa !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--auth-radius);
    transition: all var(--auth-transition);
    outline: none;
    -webkit-text-fill-color: #1d1d1f !important;
  }

  .form-control::placeholder {
    color: #86868b !important;
    -webkit-text-fill-color: #86868b !important;
  }

  .form-control:hover {
    border-color: rgba(0, 0, 0, 0.15);
  }

  .form-control:focus {
    border-color: var(--auth-accent);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
    background: #ffffff !important;
    color: #1d1d1f !important;
    -webkit-text-fill-color: #1d1d1f !important;
  }

  /* Input with icon */
  .input-with-icon {
    position: relative;
  }

  .input-with-icon .form-control {
    padding-left: 2.75rem;
  }

  .input-with-icon .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--auth-text-muted);
    pointer-events: none;
  }

  /* Input Group (password toggle) */
  .input-group {
    display: flex;
    position: relative;
  }

  .input-group .form-control {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .input-group .btn-toggle,
  .input-group .btn-outline-theme {
    padding: 0 1rem;
    background: var(--auth-bg);
    border: 1px solid var(--auth-border);
    border-left: none;
    border-radius: 0 var(--auth-radius) var(--auth-radius) 0;
    color: var(--auth-text-muted);
    cursor: pointer;
    transition: all var(--auth-transition);
  }

  .input-group .btn-toggle:hover,
  .input-group .btn-outline-theme:hover {
    color: var(--auth-text);
    background: var(--auth-border);
  }

  /* Validation states */
  .form-control.is-invalid {
    border-color: var(--auth-danger);
  }

  .form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
  }

  .form-control.is-valid {
    border-color: var(--auth-success);
  }

  .invalid-feedback {
    font-size: 0.8rem;
    color: var(--auth-danger);
    margin-top: 0.25rem;
  }

  /* Checkbox */
  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1.5px solid var(--auth-border-hover);
    border-radius: 4px;
    background: var(--auth-surface);
    cursor: pointer;
    transition: all var(--auth-transition);
    flex-shrink: 0;
  }

  .form-check-input:checked {
    background: var(--auth-accent);
    border-color: var(--auth-accent);
  }

  .form-check-label {
    font-size: 0.875rem;
    color: var(--auth-text-secondary);
    cursor: pointer;
    line-height: 1.4;
  }

  .form-check-label a {
    color: var(--auth-accent);
    text-decoration: none;
  }

  .form-check-label a:hover {
    text-decoration: underline;
  }

  /* Auth Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--auth-radius);
    border: none;
    cursor: pointer;
    transition: all var(--auth-transition);
    text-decoration: none;
  }

  .btn-accent {
    background: var(--auth-accent);
    color: #ffffff;
  }

  .btn-accent:hover {
    background: var(--auth-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
  }

  .btn:disabled,
  .btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .btn-block {
    width: 100%;
  }

  /* Auth Links */
  .auth-link {
    color: var(--auth-accent);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--auth-transition);
  }

  .auth-link:hover {
    color: var(--auth-accent-hover);
    text-decoration: underline;
  }

  .text-accent {
    color: var(--auth-accent);
  }

  /* Divider */
  .auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .auth-divider::before,
  .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--auth-border);
  }

  .auth-divider span {
    font-size: 0.8rem;
    color: var(--auth-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Footer Links */
  .auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--auth-border);
  }

  .auth-footer p {
    font-size: 0.9rem;
    color: var(--auth-text-secondary);
    margin: 0;
  }

  .auth-footer a {
    color: var(--auth-accent);
    text-decoration: none;
    font-weight: 500;
  }

  .auth-footer a:hover {
    text-decoration: underline;
  }

  /* Row helpers */
  .auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  /* Status Messages */
  .status-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    min-height: 1.5rem;
  }

  .status-message .success {
    color: var(--auth-success);
  }

  .status-message .error {
    color: var(--auth-danger);
  }

  .status-message .warning {
    color: var(--auth-warning);
  }

  /* Spinner */
  .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--auth-border);
    border-top-color: var(--auth-accent);
    border-radius: 50%;
    animation: authSpin 0.8s linear infinite;
    display: inline-block;
  }

  @keyframes authSpin {
    to { transform: rotate(360deg); }
  }

  /* Alert Box */
  .alert {
    padding: 1rem;
    border-radius: var(--auth-radius);
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .alert-error {
    background: rgba(255, 59, 48, 0.1);
    color: var(--auth-danger);
    border: 1px solid rgba(255, 59, 48, 0.2);
  }

  .alert-success {
    background: rgba(52, 199, 89, 0.1);
    color: var(--auth-success);
    border: 1px solid rgba(52, 199, 89, 0.2);
  }

  .alert-info {
    background: rgba(0, 113, 227, 0.1);
    color: var(--auth-accent);
    border: 1px solid rgba(0, 113, 227, 0.2);
  }

  .alert-danger {
    background: rgba(255, 59, 48, 0.1);
    color: var(--auth-danger);
    border: 1px solid rgba(255, 59, 48, 0.2);
  }

  /* Stepper (multi-step forms) */
  .stepper {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .stepper .step {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--auth-border);
    transition: all var(--auth-transition);
  }

  .stepper .step.active {
    background: var(--auth-accent);
    transform: scale(1.2);
  }

  .stepper .step.completed {
    background: var(--auth-success);
  }

  /* Auth Section Title */
  .auth-form .section-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--auth-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--auth-border);
  }

  /* 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-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%;
    }
  }