    :root {
      --lp-font: 'Inter', system-ui, -apple-system, sans-serif;
      --lp-bg: #FFFFFF;
      --lp-bg-subtle: #F8FAFC;
      --lp-bg-muted: #F1F5F9;
      --lp-surface: #FFFFFF;
      --lp-border: #E2E8F0;
      --lp-border-light: #F1F5F9;
      --lp-primary: #4F46E5;
      --lp-primary-light: #EEF2FF;
      --lp-primary-dark: #3730A3;
      --lp-primary-glow: rgba(79, 70, 229, 0.12);
      --lp-primary-companion: #818CF8;
      --lp-primary-companion-dark: #6366F1;
      --lp-text: #0F172A;
      --lp-text-secondary: #475569;
      --lp-text-muted: #94A3B8;
      --lp-success: #10B981;
      --lp-success-light: #ECFDF5;
      --lp-warning: #F59E0B;
      --lp-warning-light: #FFFBEB;
      --lp-feature-rose-bg: #FFF1F2;
      --lp-feature-rose-icon: #E11D48;
      --lp-feature-cyan-bg: #ECFEFF;
      --lp-feature-cyan-icon: #06B6D4;
      --lp-feature-violet-bg: #F5F3FF;
      --lp-feature-violet-icon: #7C3AED;
      --lp-case-blue: #3B82F6;
      --lp-case-blue-light: #60A5FA;
      --lp-case-blue-bg: #EFF6FF;
      --lp-case-blue-text: #2563EB;
      --lp-case-green: #10B981;
      --lp-case-green-light: #34D399;
      --lp-case-green-text: #059669;
      --lp-case-violet: #8B5CF6;
      --lp-case-violet-light: #A78BFA;
      --lp-case-violet-text: #7C3AED;
      --lp-case-amber: #F59E0B;
      --lp-case-amber-light: #FBBF24;
      --lp-case-amber-text: #B45309;
      --lp-case-red: #EF4444;
      --lp-case-red-light: #F87171;
      --lp-case-red-bg: #FEF2F2;
      --lp-case-red-text: #DC2626;
      --lp-case-pink: #EC4899;
      --lp-case-pink-light: #F472B6;
      --lp-case-pink-bg: #FDF2F8;
      --lp-case-pink-text: #DB2777;
      --lp-radius: 16px;
      --lp-radius-lg: 20px;
      --lp-radius-sm: 10px;
      --lp-glass-bg: rgba(255, 255, 255, 0.6);
      --lp-glass-border: rgba(255, 255, 255, 0.4);
      --lp-glass-shadow: 0 8px 32px rgba(79, 70, 229, 0.08);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: var(--lp-font);
      background: var(--lp-bg);
      color: var(--lp-text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ══════════════════════════════════════════════
       GLASSMORPHISM UTILITIES
       ══════════════════════════════════════════════ */
    .glass {
      background: var(--lp-glass-bg);
      backdrop-filter: blur(20px) saturate(1.8);
      -webkit-backdrop-filter: blur(20px) saturate(1.8);
      border: 1px solid var(--lp-glass-border);
      box-shadow: var(--lp-glass-shadow);
    }
    .glass-strong {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(24px) saturate(2);
      -webkit-backdrop-filter: blur(24px) saturate(2);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 8px 32px rgba(79, 70, 229, 0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    }
    .glass-subtle {
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(16px) saturate(1.5);
      -webkit-backdrop-filter: blur(16px) saturate(1.5);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* ══════════════════════════════════════════════
       ANIMATIONS
       ══════════════════════════════════════════════ */
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      33% { transform: translateY(-12px) rotate(1deg); }
      66% { transform: translateY(-6px) rotate(-0.5deg); }
    }
    @keyframes float-slow {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-20px) scale(1.02); }
    }
    @keyframes float-reverse {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(15px) rotate(2deg); }
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes pulse-ring {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(2.5); opacity: 0; }
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }
    @keyframes spin-slow {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    @keyframes border-glow {
      0%, 100% { border-color: rgba(79, 70, 229, 0.2); box-shadow: 0 0 20px rgba(79, 70, 229, 0.05); }
      50% { border-color: rgba(79, 70, 229, 0.5); box-shadow: 0 0 40px rgba(79, 70, 229, 0.15); }
    }
    @keyframes morph {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
      25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
      50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
      75% { border-radius: 60% 40% 60% 30% / 40% 50% 60% 50%; }
    }
    @keyframes slide-up {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes glow-pulse {
      0%, 100% { opacity: 0.4; filter: blur(40px); }
      50% { opacity: 0.7; filter: blur(50px); }
    }
    @keyframes counter-tick {
      0% { transform: scale(1); }
      50% { transform: scale(1.15); }
      100% { transform: scale(1); }
    }
    @keyframes sparkle {
      0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
      50% { opacity: 1; transform: scale(1) rotate(180deg); }
    }

    /* ══════════════════════════════════════════════
       NAVBAR
       ══════════════════════════════════════════════ */
    .lp-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1030;
      padding: 16px 0;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .lp-nav.scrolled {
      padding: 8px 0;
    }
    .lp-nav-inner {
      border-radius: 100px;
      padding: 8px 8px 8px 20px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .lp-nav.scrolled .lp-nav-inner {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px) saturate(1.8);
      -webkit-backdrop-filter: blur(20px) saturate(1.8);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    }
    .lp-nav .nav-link {
      color: var(--lp-text-secondary);
      font-size: 0.85rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 100px;
      transition: all 0.25s ease;
      position: relative;
    }
    .lp-nav .nav-link:hover {
      color: var(--lp-primary);
      background: var(--lp-primary-light);
    }
    .lp-nav .brand-mark {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-companion));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--lp-bg);
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .lp-nav .brand-mark:hover {
      transform: scale(1.08) rotate(-3deg);
      box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    }

    /* ══════════════════════════════════════════════
       BUTTONS
       ══════════════════════════════════════════════ */
    .lp-btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--lp-font);
      font-weight: 600;
      font-size: 0.875rem;
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      text-decoration: none;
      min-height: 48px;
      position: relative;
      overflow: hidden;
    }
    .lp-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .lp-btn:hover::before { opacity: 1; }
    .lp-btn-primary {
      background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-companion-dark), var(--lp-primary-companion));
      background-size: 200% 200%;
      animation: gradient-shift 4s ease infinite;
      color: var(--lp-bg);
      box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
    }
    .lp-btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
      color: var(--lp-bg);
    }
    .lp-btn-outline {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(10px);
      color: var(--lp-text);
      border: 1px solid var(--lp-border);
    }
    .lp-btn-outline:hover {
      border-color: var(--lp-primary);
      color: var(--lp-primary);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
    }
    .lp-btn-glass {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      color: var(--lp-primary);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    .lp-btn-glass:hover {
      background: rgba(255, 255, 255, 0.95);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(79, 70, 229, 0.15);
      color: var(--lp-primary);
    }
    .lp-btn-ghost {
      background: transparent;
      color: rgba(255,255,255,0.9);
      border: 1px solid rgba(255,255,255,0.25);
    }
    .lp-btn-ghost:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.5);
      transform: translateY(-3px);
      color: rgba(255,255,255,1);
    }

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

    /* Animated mesh gradient background */
    .lp-hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(129, 140, 248, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 60%),
        linear-gradient(160deg, var(--lp-bg) 0%, var(--lp-primary-light) 40%, #F5F3FF 70%, var(--lp-bg-subtle) 100%);
      z-index: 0;
    }

    /* Grid overlay */
    .lp-hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
      -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
      z-index: 1;
    }

    /* Floating orbs */
    .lp-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }
    .lp-orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 65%);
      top: -150px; right: -100px;
      animation: float-slow 8s ease-in-out infinite, morph 12s ease-in-out infinite;
    }
    .lp-orb-2 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(129, 140, 248, 0.1) 0%, transparent 65%);
      bottom: -80px; left: -80px;
      animation: float-slow 10s ease-in-out infinite reverse, morph 15s ease-in-out infinite reverse;
    }
    .lp-orb-3 {
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 65%);
      top: 40%; left: 30%;
      animation: float-slow 7s ease-in-out infinite 2s, morph 10s ease-in-out infinite 1s;
    }
    .lp-orb-4 {
      width: 120px; height: 120px;
      background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 65%);
      top: 20%; right: 25%;
      animation: glow-pulse 4s ease-in-out infinite;
    }

    /* Particle canvas */
    #particles-canvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    /* Sparkle decorations */
    .sparkle {
      position: absolute;
      width: 8px; height: 8px;
      pointer-events: none;
      z-index: 2;
    }
    .sparkle::before, .sparkle::after {
      content: '';
      position: absolute;
      background: var(--lp-primary);
      border-radius: 50%;
    }
    .sparkle::before {
      width: 100%; height: 2px;
      top: 50%; left: 0; transform: translateY(-50%);
    }
    .sparkle::after {
      width: 2px; height: 100%;
      left: 50%; top: 0; transform: translateX(-50%);
    }
    .sparkle-1 { top: 15%; left: 12%; animation: sparkle 3s ease-in-out infinite; }
    .sparkle-2 { top: 25%; right: 18%; animation: sparkle 4s ease-in-out infinite 1s; }
    .sparkle-3 { bottom: 30%; left: 8%; animation: sparkle 3.5s ease-in-out infinite 0.5s; }
    .sparkle-4 { top: 60%; right: 10%; animation: sparkle 5s ease-in-out infinite 2s; }
    .sparkle-5 { top: 10%; left: 45%; animation: sparkle 4.5s ease-in-out infinite 1.5s; }

    .lp-hero-content { position: relative; z-index: 3; }

    .lp-hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--lp-primary);
      padding: 10px 22px;
      border-radius: 100px;
      margin-bottom: 28px;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(79, 70, 229, 0.15);
      box-shadow: 0 2px 12px rgba(79, 70, 229, 0.08);
    }
    .lp-hero-badge .dot {
      width: 8px; height: 8px;
      background: var(--lp-success);
      border-radius: 50%;
      position: relative;
    }
    .lp-hero-badge .dot::after {
      content: '';
      position: absolute; inset: -4px;
      border-radius: 50%;
      border: 2px solid var(--lp-success);
      animation: pulse-ring 2s ease-out infinite;
    }

    .lp-hero-title {
      font-weight: 700;
      font-size: clamp(2.5rem, 5.5vw, 4.2rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--lp-text);
      margin-bottom: 22px;
    }
    .lp-hero-title .highlight {
      background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-companion) 40%, var(--lp-primary-companion-dark) 60%, var(--lp-primary) 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 5s ease-in-out infinite;
    }
    .lp-hero-sub {
      font-size: 1.125rem;
      line-height: 1.75;
      color: var(--lp-text-secondary);
      max-width: 520px;
      margin-bottom: 36px;
    }
    .lp-hero-metrics {
      display: flex; gap: 40px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(79, 70, 229, 0.1);
    }
    .lp-hero-metrics .metric {
      position: relative;
    }
    .lp-hero-metrics .num {
      font-size: 2.25rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-companion));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .lp-hero-metrics .label {
      font-size: 0.8rem;
      color: var(--lp-text-muted);
      margin-top: 4px;
    }

    /* Hero visual — glass card */
    .lp-hero-visual { position: relative; }
    .lp-hero-card {
      border-radius: var(--lp-radius-lg);
      padding: 28px;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(24px) saturate(2);
      -webkit-backdrop-filter: blur(24px) saturate(2);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow:
        0 20px 60px rgba(79, 70, 229, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      animation: float 6s ease-in-out infinite;
    }
    .lp-hero-card-header {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(79, 70, 229, 0.08);
    }
    .lp-hero-card-dot {
      width: 10px; height: 10px; border-radius: 50%;
      box-shadow: 0 0 6px currentColor;
    }
    .lp-checklist-item {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 0;
      font-size: 0.85rem;
      color: var(--lp-text-secondary);
      transition: transform 0.2s;
    }
    .lp-checklist-item:hover { transform: translateX(4px); }
    .lp-checklist-check {
      width: 24px; height: 24px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .lp-checklist-check.done {
      background: linear-gradient(135deg, var(--lp-success), var(--lp-case-green-light));
      color: var(--lp-bg);
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }
    .lp-checklist-check.pending {
      background: var(--lp-bg-muted);
      color: var(--lp-text-muted);
    }

    /* Floating glass badges */
    .lp-float-badge {
      position: absolute;
      border-radius: var(--lp-radius);
      padding: 14px 18px;
      font-size: 0.8rem;
      display: flex; align-items: center; gap: 10px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px) saturate(1.8);
      -webkit-backdrop-filter: blur(20px) saturate(1.8);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 8px 32px rgba(79, 70, 229, 0.1), inset 0 1px 0 rgba(255,255,255,0.6);
    }
    .lp-float-badge-1 {
      top: -20px; right: -28px;
      animation: float 5s ease-in-out infinite;
    }
    .lp-float-badge-2 {
      bottom: 32px; left: -36px;
      animation: float-reverse 6s ease-in-out infinite;
    }
    .lp-float-badge-3 {
      top: 45%; right: -48px;
      animation: float 7s ease-in-out infinite 1s;
    }

    /* ══════════════════════════════════════════════
       TRUST STRIP
       ══════════════════════════════════════════════ */
    .lp-trust {
      padding: 40px 0;
      position: relative;
      overflow: hidden;
    }
    .lp-trust::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.15), transparent);
    }
    .lp-trust::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.15), transparent);
    }
    .lp-trust-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--lp-text-muted);
    }
    .lp-trust-icons {
      display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
    }
    .lp-trust-icon {
      display: flex; align-items: center; gap: 8px;
      color: var(--lp-text-muted);
      font-size: 0.8rem;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 100px;
      transition: all 0.3s ease;
    }
    .lp-trust-icon:hover {
      color: var(--lp-primary);
      background: var(--lp-primary-light);
      transform: translateY(-2px);
    }
    .lp-trust-icon i { font-size: 1.1rem; }

    /* ══════════════════════════════════════════════
       SECTION SHARED
       ══════════════════════════════════════════════ */
    .lp-section {
      padding: 100px 0;
      position: relative;
    }
    .lp-section-alt {
      background: var(--lp-bg-subtle);
      position: relative;
    }
    .lp-section-alt::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 50%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.12), transparent);
    }
    .lp-section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--lp-primary);
      margin-bottom: 12px;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .lp-section-label::before {
      content: '';
      width: 20px; height: 2px;
      background: linear-gradient(90deg, var(--lp-primary), transparent);
      border-radius: 2px;
    }
    .lp-section-title {
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      margin-bottom: 14px;
      color: var(--lp-text);
    }
    .lp-section-desc {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--lp-text-secondary);
      max-width: 560px;
    }

    /* ══════════════════════════════════════════════
       FEATURE CARDS — GLASS
       ══════════════════════════════════════════════ */
    .lp-feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .lp-feature-card {
      border-radius: var(--lp-radius);
      padding: 32px 28px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(16px) saturate(1.5);
      -webkit-backdrop-filter: blur(16px) saturate(1.5);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    }
    .lp-feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--lp-primary), var(--lp-primary-companion), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .lp-feature-card::after {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(79, 70, 229, 0.06) 0%, transparent 50%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s;
    }
    .lp-feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(79, 70, 229, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
      border-color: rgba(79, 70, 229, 0.2);
      background: rgba(255, 255, 255, 0.7);
    }
    .lp-feature-card:hover::before { opacity: 1; }
    .lp-feature-card:hover::after { opacity: 1; }

    /* Bling dot on feature cards */
    .lp-feature-card .bling {
      position: absolute;
      top: 14px; right: 14px;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--lp-primary);
      opacity: 0;
      transition: opacity 0.4s;
      box-shadow: 0 0 12px var(--lp-primary);
    }
    .lp-feature-card:hover .bling { opacity: 0.7; }

    .lp-feature-icon {
      width: 52px; height: 52px;
      border-radius: var(--lp-radius-sm);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      font-size: 1.3rem;
      position: relative;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .lp-feature-card:hover .lp-feature-icon {
      transform: scale(1.1) rotate(-3deg);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    .lp-feature-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--lp-text);
    }
    .lp-feature-card p {
      font-size: 0.875rem;
      line-height: 1.65;
      color: var(--lp-text-secondary);
      margin-bottom: 0;
    }

    /* ══════════════════════════════════════════════
       PROCESS / HOW IT WORKS
       ══════════════════════════════════════════════ */
    .lp-process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
    }
    .lp-process::before {
      content: '';
      position: absolute;
      top: 34px; left: 48px; right: 48px;
      height: 2px;
      background: linear-gradient(90deg,
        var(--lp-primary),
        rgba(99, 102, 241, 0.5) 33%,
        rgba(129, 140, 248, 0.3) 66%,
        var(--lp-border));
      z-index: 0;
    }
    .lp-process-step {
      text-align: center;
      position: relative;
    }
    .lp-process-step .num {
      width: 52px; height: 52px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-weight: 700;
      font-size: 1rem;
      position: relative;
      z-index: 2;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 2px solid var(--lp-primary);
      color: var(--lp-primary);
      box-shadow: 0 4px 16px rgba(79, 70, 229, 0.15);
    }
    .lp-process-step:hover .num {
      background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-companion-dark));
      color: var(--lp-bg);
      border-color: transparent;
      transform: scale(1.15);
      box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
    }
    .lp-process-step h4 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--lp-text);
    }
    .lp-process-step p {
      font-size: 0.8rem;
      color: var(--lp-text-muted);
      max-width: 180px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* ══════════════════════════════════════════════
       CASE STUDIES — GLASS CARDS
       ══════════════════════════════════════════════ */
    .lp-case-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 24px;
    }
    .lp-case-card {
      border-radius: var(--lp-radius-lg);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(20px) saturate(1.6);
      -webkit-backdrop-filter: blur(20px) saturate(1.6);
      border: 1px solid rgba(255, 255, 255, 0.45);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }
    .lp-case-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 24px 56px rgba(79, 70, 229, 0.1), 0 8px 20px rgba(0, 0, 0, 0.04);
      border-color: rgba(79, 70, 229, 0.15);
    }
    .lp-case-banner {
      height: 6px;
      position: relative;
    }
    .lp-case-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: inherit;
      filter: blur(8px);
      opacity: 0.5;
    }
    .lp-case-body { padding: 28px; }
    .lp-case-industry {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
    }
    .lp-case-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--lp-text);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .lp-case-card .desc {
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--lp-text-secondary);
      margin-bottom: 20px;
    }
    .lp-case-stats {
      display: flex; gap: 24px;
      padding-top: 16px;
      border-top: 1px solid rgba(79, 70, 229, 0.06);
    }
    .lp-case-stat .value {
      font-size: 1.3rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-companion));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .lp-case-stat .label {
      font-size: 0.7rem;
      color: var(--lp-text-muted);
      margin-top: 2px;
    }

    /* ══════════════════════════════════════════════
       FIELD TYPES
       ══════════════════════════════════════════════ */
    .lp-field-grid {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center;
    }
    .lp-field-chip {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 18px;
      border-radius: 100px;
      font-size: 0.8rem;
      color: var(--lp-text-secondary);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.4);
    }
    .lp-field-chip:hover {
      border-color: var(--lp-primary);
      color: var(--lp-primary);
      background: rgba(238, 242, 255, 0.7);
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 8px 20px rgba(79, 70, 229, 0.12);
    }
    .lp-field-chip .tag {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--lp-text-muted);
      background: var(--lp-bg-muted);
      padding: 2px 10px;
      border-radius: 100px;
    }

    /* ══════════════════════════════════════════════
       TESTIMONIALS — GLASS
       ══════════════════════════════════════════════ */
    .lp-testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .lp-testimonial {
      border-radius: var(--lp-radius);
      padding: 28px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(16px) saturate(1.5);
      -webkit-backdrop-filter: blur(16px) saturate(1.5);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }
    .lp-testimonial:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(79, 70, 229, 0.08);
      border-color: rgba(79, 70, 229, 0.15);
    }
    .lp-testimonial::before {
      content: '';
      position: absolute;
      top: 0; left: 20px; right: 20px;
      height: 3px;
      border-radius: 0 0 4px 4px;
      background: linear-gradient(90deg, var(--lp-primary), var(--lp-primary-companion));
      opacity: 0;
      transition: opacity 0.4s;
      box-shadow: 0 2px 12px rgba(79, 70, 229, 0.3);
    }
    .lp-testimonial:hover::before { opacity: 1; }

    /* Quote icon */
    .lp-testimonial::after {
      content: '\201C';
      position: absolute;
      top: 16px; right: 20px;
      font-size: 3rem;
      font-family: Georgia, serif;
      color: rgba(79, 70, 229, 0.08);
      line-height: 1;
      pointer-events: none;
    }
    .lp-testimonial .stars {
      color: var(--lp-warning);
      font-size: 0.85rem;
      letter-spacing: 2px;
      margin-bottom: 12px;
      filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
    }
    .lp-testimonial blockquote {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--lp-text-secondary);
      margin-bottom: 16px;
      font-style: italic;
    }
    .lp-testimonial .author {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--lp-text);
    }
    .lp-testimonial .role {
      font-size: 0.7rem;
      color: var(--lp-text-muted);
    }

    /* ══════════════════════════════════════════════
       CTA — GRADIENT + GLASS
       ══════════════════════════════════════════════ */
    .lp-cta-wrapper {
      position: relative;
    }
    .lp-cta-glow {
      position: absolute;
      inset: -20px;
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(99, 102, 241, 0.1), rgba(129, 140, 248, 0.08));
      border-radius: 32px;
      filter: blur(30px);
      z-index: 0;
      animation: glow-pulse 4s ease-in-out infinite;
    }
    .lp-cta {
      position: relative;
      z-index: 1;
      background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-companion-dark) 50%, var(--lp-primary-companion) 100%);
      background-size: 200% 200%;
      animation: gradient-shift 6s ease infinite;
      border-radius: 24px;
      padding: 80px 48px;
      text-align: center;
      color: var(--lp-bg);
      overflow: hidden;
    }
    .lp-cta::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      top: -200px; right: -100px;
      animation: float-slow 10s ease-in-out infinite;
    }
    .lp-cta::after {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      bottom: -120px; left: -80px;
      animation: float-slow 8s ease-in-out infinite reverse;
    }
    /* Rotating border ring */
    .lp-cta .ring {
      position: absolute;
      width: 800px; height: 800px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.06);
      pointer-events: none;
      animation: spin-slow 30s linear infinite;
    }
    .lp-cta .ring::before {
      content: '';
      position: absolute;
      top: -4px; left: 50%;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    }
    .lp-cta h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 14px;
      position: relative;
      letter-spacing: -0.02em;
    }
    .lp-cta p {
      font-size: 1rem;
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.75;
      opacity: 0.9;
      position: relative;
    }
    .lp-cta .actions {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      position: relative;
    }

    /* ══════════════════════════════════════════════
       FOOTER
       ══════════════════════════════════════════════ */
    .lp-footer {
      padding: 48px 0 32px;
      background: var(--lp-bg-subtle);
      position: relative;
    }
    .lp-footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.12), transparent);
    }
    .lp-footer .brand {
      font-weight: 700;
      color: var(--lp-text);
      font-size: 1rem;
    }
    .lp-footer .brand span { color: var(--lp-primary); }
    .lp-footer a {
      color: var(--lp-text-muted);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.25s;
    }
    .lp-footer a:hover { color: var(--lp-primary); }
    .lp-footer h6 {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--lp-text-muted);
      margin-bottom: 16px;
    }

    /* ══════════════════════════════════════════════
       DIVIDERS
       ══════════════════════════════════════════════ */
    .lp-divider {
      display: flex; align-items: center; justify-content: center; gap: 16px;
      margin: 0 auto;
      max-width: 300px;
      padding: 8px 0;
    }
    .lp-divider .line {
      flex: 1; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.2), transparent);
    }
    .lp-divider .diamond {
      width: 8px; height: 8px;
      background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-companion));
      transform: rotate(45deg);
      flex-shrink: 0;
      border-radius: 2px;
      box-shadow: 0 0 8px rgba(79, 70, 229, 0.3);
    }

    /* ══════════════════════════════════════════════
       REVEAL ANIMATIONS
       ══════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* Scale-in variant */
    .reveal-scale {
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.revealed {
      opacity: 1;
      transform: scale(1);
    }

    /* ══════════════════════════════════════════════
       RESPONSIVE
       ══════════════════════════════════════════════ */
    @media (max-width: 991.98px) {
      .lp-hero { min-height: auto; padding: 100px 0 60px; }
      .lp-hero-metrics { gap: 24px; flex-wrap: wrap; }
      .lp-hero-visual { margin-top: 40px; }
      .lp-process {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .lp-process::before { display: none; }
      .lp-process-step {
        display: flex; gap: 16px; text-align: left; align-items: flex-start;
      }
      .lp-process-step .num { margin: 0; flex-shrink: 0; }
      .lp-process-step p { max-width: none; }
      .lp-section { padding: 64px 0; }
      .lp-case-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 575.98px) {
      .lp-hero-title { font-size: 2rem; }
      .lp-feature-grid { grid-template-columns: 1fr; }
      .lp-testimonial-grid { grid-template-columns: 1fr; }
      .lp-cta { padding: 48px 24px; }
      .lp-trust-icons { gap: 12px; }
      .lp-float-badge { display: none; }
      .lp-orb { display: none; }
      .sparkle { display: none; }
    }
