/* ═══════════════════════════════════════════════════════
   SHOPIFY DZ — Ultra-Futuristic Landing Page
   Glassmorphism · Neon · Particles · 3D · Scroll FX
   ═══════════════════════════════════════════════════════ */

/* ══════ RESET & BASE ══════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ld-bg: #030014;
    --ld-bg2: #0a0a1f;
    --ld-surface: rgba(12, 12, 35, 0.6);
    --ld-glass: rgba(255, 255, 255, 0.03);
    --ld-glass-border: rgba(255, 255, 255, 0.06);
    --ld-text: #f0f0ff;
    --ld-text2: #8888aa;
    --ld-text3: #555577;
    --ld-primary: #6366f1;
    --ld-primary-rgb: 99, 102, 241;
    --ld-secondary: #8b5cf6;
    --ld-cyan: #06b6d4;
    --ld-emerald: #10b981;
    --ld-amber: #f59e0b;
    --ld-rose: #f43f5e;
    --ld-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --ld-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    --ld-radius: 16px;
    --ld-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="light"] {
    --ld-bg: #f4f6fa;
    --ld-bg2: #e8eaf0;
    --ld-surface: rgba(255, 255, 255, 0.7);
    --ld-glass: rgba(255, 255, 255, 0.5);
    --ld-glass-border: rgba(0, 0, 0, 0.08);
    --ld-text: #1a1a2e;
    --ld-text2: #555570;
    --ld-text3: #8888a0;
    --ld-glow: 0 0 30px rgba(99, 102, 241, 0.15);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--ld-font);
    background: var(--ld-bg);
    color: var(--ld-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
.ld-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ══════ ANIMATED BACKGROUND ══════ */
.ld-bg-wrap {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.ld-bg-grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(var(--ld-primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--ld-primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: ldGridDrift 30s linear infinite;
    transform: perspective(600px) rotateX(55deg);
    transform-origin: center center;
}
@keyframes ldGridDrift { 0% { background-position: 0 0; } 100% { background-position: 80px 80px; } }

.ld-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: ldOrbFloat 12s ease-in-out infinite alternate;
}
.ld-bg-orb.o1 { width: 600px; height: 600px; background: var(--ld-primary); top: -15%; left: -10%; animation-delay: 0s; }
.ld-bg-orb.o2 { width: 500px; height: 500px; background: var(--ld-cyan); bottom: -10%; right: -8%; animation-delay: -4s; }
.ld-bg-orb.o3 { width: 400px; height: 400px; background: var(--ld-secondary); top: 40%; left: 50%; animation-delay: -8s; }
@keyframes ldOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
    100% { transform: translate(-20px, 30px) scale(0.95); }
}
[data-theme="light"] .ld-bg-orb { opacity: 0.08; }

/* Particles */
.ld-particle {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--ld-primary);
    opacity: 0;
    animation: ldParticle 6s ease-in-out infinite;
}
.ld-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.ld-particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; }
.ld-particle:nth-child(3) { left: 55%; top: 15%; animation-delay: 2s; background: var(--ld-cyan); }
.ld-particle:nth-child(4) { left: 80%; top: 40%; animation-delay: 3s; }
.ld-particle:nth-child(5) { left: 40%; top: 80%; animation-delay: 4s; background: var(--ld-secondary); }
.ld-particle:nth-child(6) { left: 70%; top: 75%; animation-delay: 5s; background: var(--ld-cyan); }
.ld-particle:nth-child(7) { left: 90%; top: 10%; animation-delay: 1.5s; }
.ld-particle:nth-child(8) { left: 5%; top: 85%; animation-delay: 3.5s; background: var(--ld-secondary); }
@keyframes ldParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 0.7; transform: translateY(-40px) scale(1); }
}

/* ══════ NAVBAR ══════ */
.ld-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ld-nav.scrolled {
    padding: 8px 0;
    background: rgba(3, 0, 20, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--ld-glass-border);
}
[data-theme="light"] .ld-nav.scrolled {
    background: rgba(244, 246, 250, 0.85);
}
.ld-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.ld-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}
.ld-nav-logo-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--ld-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}
.ld-nav-logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    animation: ldShimmer 3s ease-in-out infinite;
}
@keyframes ldShimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(200%) rotate(25deg); }
}
.ld-nav-logo span { background: var(--ld-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ld-nav-logo small { font-size: 0.55rem; font-weight: 700; background: var(--ld-gradient); color: #fff; padding: 2px 6px; border-radius: 4px; margin-left: 6px; letter-spacing: 1px; -webkit-text-fill-color: #fff; }

.ld-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ld-nav-links a {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ld-text2);
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}
.ld-nav-links a:hover { color: var(--ld-text); background: var(--ld-glass); }
.ld-nav-links a.active { color: var(--ld-primary); }

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

.ld-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--ld-font);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.ld-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.ld-btn:hover::before { transform: translateX(100%); }

.ld-btn-ghost {
    background: transparent;
    color: var(--ld-text);
    border: 1px solid var(--ld-glass-border);
}
.ld-btn-ghost:hover { background: var(--ld-glass); border-color: rgba(var(--ld-primary-rgb), 0.3); transform: translateY(-2px); }

.ld-btn-primary {
    background: var(--ld-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(var(--ld-primary-rgb), 0.35);
}
.ld-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--ld-primary-rgb), 0.5); }

.ld-btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }

.ld-theme-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid var(--ld-glass-border);
    background: var(--ld-glass);
    color: var(--ld-text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}
.ld-theme-btn:hover { color: var(--ld-primary); border-color: rgba(var(--ld-primary-rgb), 0.3); }

/* Mobile menu */
.ld-mobile-toggle {
    display: none;
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid var(--ld-glass-border);
    background: var(--ld-glass);
    color: var(--ld-text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ══════ HERO ══════ */
.ld-hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}
.ld-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ld-hero-content { max-width: 580px; }

.ld-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: rgba(var(--ld-primary-rgb), 0.1);
    border: 1px solid rgba(var(--ld-primary-rgb), 0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ld-primary);
    margin-bottom: 24px;
    animation: ldFadeUp 0.8s ease both;
}
.ld-hero-badge i {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--ld-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6rem;
}

.ld-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    animation: ldFadeUp 0.8s ease 0.1s both;
}
.ld-hero h1 .gradient-text {
    background: var(--ld-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ld-hero-sub {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--ld-text2);
    margin-bottom: 36px;
    max-width: 480px;
    animation: ldFadeUp 0.8s ease 0.2s both;
}
.ld-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    animation: ldFadeUp 0.8s ease 0.3s both;
}
.ld-hero-stats {
    display: flex;
    gap: 40px;
    animation: ldFadeUp 0.8s ease 0.4s both;
}
.ld-hero-stat { text-align: left; }
.ld-hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--ld-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ld-hero-stat-label {
    font-size: 0.82rem;
    color: var(--ld-text3);
    margin-top: 2px;
}

/* Hero Visual — 3D Dashboard Preview */
.ld-hero-visual {
    position: relative;
    perspective: 1200px;
    animation: ldFadeUp 1s ease 0.3s both;
}
.ld-hero-mockup {
    width: 100%;
    border-radius: 16px;
    background: var(--ld-surface);
    border: 1px solid var(--ld-glass-border);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), var(--ld-glow);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ld-hero-mockup:hover { transform: rotateY(-2deg) rotateX(1deg) scale(1.02); }
[data-theme="light"] .ld-hero-mockup { box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), var(--ld-glow); }

.ld-mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--ld-glass-border);
}
.ld-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.ld-mockup-dot:nth-child(1) { background: #f43f5e; }
.ld-mockup-dot:nth-child(2) { background: #f59e0b; }
.ld-mockup-dot:nth-child(3) { background: #10b981; }
.ld-mockup-url {
    flex: 1;
    margin-left: 12px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--ld-text3);
    font-family: 'JetBrains Mono', monospace;
}
.ld-mockup-body {
    padding: 20px;
    min-height: 300px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
}
.ld-mock-sidebar {
    background: rgba(var(--ld-primary-rgb), 0.05);
    border-radius: 10px;
    padding: 14px;
}
.ld-mock-sidebar-item {
    height: 8px;
    background: rgba(var(--ld-primary-rgb), 0.15);
    border-radius: 4px;
    margin-bottom: 10px;
}
.ld-mock-sidebar-item.active { background: var(--ld-primary); width: 70%; }
.ld-mock-sidebar-item:nth-child(2) { width: 85%; }
.ld-mock-sidebar-item:nth-child(4) { width: 60%; }
.ld-mock-main { display: flex; flex-direction: column; gap: 12px; }
.ld-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.ld-mock-stat-card {
    background: rgba(var(--ld-primary-rgb), 0.06);
    border: 1px solid rgba(var(--ld-primary-rgb), 0.1);
    border-radius: 10px;
    padding: 14px;
    position: relative;
    overflow: hidden;
}
.ld-mock-stat-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40px; height: 40px;
    background: var(--ld-gradient);
    opacity: 0.1;
    border-radius: 0 0 0 40px;
}
.ld-mock-stat-card .bar { height: 6px; background: var(--ld-gradient); border-radius: 3px; margin-top: 10px; }
.ld-mock-stat-card:nth-child(1) .bar { width: 75%; }
.ld-mock-stat-card:nth-child(2) .bar { width: 50%; background: linear-gradient(135deg, var(--ld-cyan), var(--ld-emerald)); }
.ld-mock-stat-card:nth-child(3) .bar { width: 90%; background: linear-gradient(135deg, var(--ld-amber), var(--ld-rose)); }
.ld-mock-stat-card .label { height: 6px; width: 50%; background: rgba(255,255,255,0.1); border-radius: 3px; }
.ld-mock-stat-card .value { height: 10px; width: 40%; background: rgba(255,255,255,0.15); border-radius: 3px; margin-top: 8px; }

.ld-mock-chart {
    flex: 1;
    background: rgba(var(--ld-primary-rgb), 0.04);
    border: 1px solid rgba(var(--ld-primary-rgb), 0.08);
    border-radius: 10px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}
.ld-mock-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}
.ld-mock-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--ld-gradient);
    opacity: 0.6;
    animation: ldChartGrow 1.5s ease both;
}
.ld-mock-chart-bar:nth-child(1) { height: 40%; animation-delay: 0.6s; }
.ld-mock-chart-bar:nth-child(2) { height: 65%; animation-delay: 0.7s; }
.ld-mock-chart-bar:nth-child(3) { height: 45%; animation-delay: 0.8s; }
.ld-mock-chart-bar:nth-child(4) { height: 80%; animation-delay: 0.9s; }
.ld-mock-chart-bar:nth-child(5) { height: 55%; animation-delay: 1s; }
.ld-mock-chart-bar:nth-child(6) { height: 90%; animation-delay: 1.1s; }
.ld-mock-chart-bar:nth-child(7) { height: 70%; animation-delay: 1.2s; }
.ld-mock-chart-bar:nth-child(8) { height: 95%; animation-delay: 1.3s; }
@keyframes ldChartGrow { 0% { height: 0; } }

/* Floating glow behind mockup */
.ld-hero-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(var(--ld-primary-rgb), 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: ldGlowPulse 4s ease-in-out infinite alternate;
}
@keyframes ldGlowPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

/* ══════ SECTION BASE ══════ */
.ld-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}
.ld-section-header {
    text-align: center;
    margin-bottom: 64px;
}
.ld-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(var(--ld-primary-rgb), 0.08);
    border: 1px solid rgba(var(--ld-primary-rgb), 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ld-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.ld-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.ld-section-sub {
    font-size: 1.05rem;
    color: var(--ld-text2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Reveal animation */
.ld-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.ld-reveal.visible { opacity: 1; transform: translateY(0); }
.ld-reveal.delay-1 { transition-delay: 0.1s; }
.ld-reveal.delay-2 { transition-delay: 0.2s; }
.ld-reveal.delay-3 { transition-delay: 0.3s; }
.ld-reveal.delay-4 { transition-delay: 0.4s; }

/* ══════ FEATURES ══════ */
.ld-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ld-feature-card {
    background: var(--ld-surface);
    border: 1px solid var(--ld-glass-border);
    border-radius: var(--ld-radius);
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.ld-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--ld-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ld-feature-card:hover::before { opacity: 1; }
.ld-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--ld-primary-rgb), 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), var(--ld-glow);
}
.ld-feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}
.ld-feature-icon.purple { background: rgba(var(--ld-primary-rgb), 0.12); color: var(--ld-primary); }
.ld-feature-icon.cyan { background: rgba(6, 182, 212, 0.12); color: var(--ld-cyan); }
.ld-feature-icon.emerald { background: rgba(16, 185, 129, 0.12); color: var(--ld-emerald); }
.ld-feature-icon.amber { background: rgba(245, 158, 11, 0.12); color: var(--ld-amber); }
.ld-feature-icon.rose { background: rgba(244, 63, 94, 0.12); color: var(--ld-rose); }
.ld-feature-icon.blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }

.ld-feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.ld-feature-card p { font-size: 0.88rem; color: var(--ld-text2); line-height: 1.6; }

/* ══════ PRICING ══════ */
.ld-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}
.ld-pricing-card {
    background: var(--ld-surface);
    border: 1px solid var(--ld-glass-border);
    border-radius: var(--ld-radius);
    padding: 32px 28px;
    backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.ld-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.ld-pricing-card.popular {
    border-color: rgba(var(--ld-primary-rgb), 0.4);
    box-shadow: var(--ld-glow);
    transform: scale(1.04);
}
.ld-pricing-card.popular:hover { transform: scale(1.06) translateY(-4px); }
.ld-pricing-popular-tag {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 6px;
    background: var(--ld-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ld-pricing-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    margin-top: 8px;
}
.ld-pricing-card.popular .ld-pricing-name { margin-top: 28px; }
.ld-pricing-desc {
    font-size: 0.78rem;
    color: var(--ld-text3);
    margin-bottom: 20px;
}
.ld-pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 4px;
}
.ld-pricing-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ld-text3);
    letter-spacing: 0;
}
.ld-pricing-period {
    font-size: 0.78rem;
    color: var(--ld-text3);
    margin-bottom: 24px;
}
.ld-pricing-features {
    text-align: left;
    margin-bottom: 28px;
    list-style: none;
}
.ld-pricing-features li {
    padding: 7px 0;
    font-size: 0.82rem;
    color: var(--ld-text2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.ld-pricing-features li i { color: var(--ld-emerald); font-size: 0.75rem; width: 16px; }
.ld-pricing-features li.disabled { opacity: 0.35; }
.ld-pricing-features li.disabled i { color: var(--ld-text3); }

.ld-pricing-card .ld-btn { width: 100%; justify-content: center; }

/* ══════ TESTIMONIALS ══════ */
.ld-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ld-testimonial-card {
    background: var(--ld-surface);
    border: 1px solid var(--ld-glass-border);
    border-radius: var(--ld-radius);
    padding: 28px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}
.ld-testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.ld-testimonial-stars { color: var(--ld-amber); font-size: 0.85rem; margin-bottom: 14px; }
.ld-testimonial-text { font-size: 0.9rem; line-height: 1.7; color: var(--ld-text2); margin-bottom: 20px; font-style: italic; }
.ld-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ld-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--ld-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}
.ld-testimonial-info strong { font-size: 0.85rem; display: block; }
.ld-testimonial-info span { font-size: 0.75rem; color: var(--ld-text3); }

/* ══════ CTA SECTION ══════ */
.ld-cta {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}
.ld-cta-box {
    background: var(--ld-surface);
    border: 1px solid var(--ld-glass-border);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}
.ld-cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ld-gradient);
}
.ld-cta-box::after {
    content: '';
    position: absolute;
    bottom: -50%; left: 20%; right: 20%;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--ld-primary-rgb), 0.12) 0%, transparent 70%);
    filter: blur(50px);
}
.ld-cta h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.ld-cta p { font-size: 1.05rem; color: var(--ld-text2); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.ld-cta-actions { display: flex; justify-content: center; gap: 14px; }

/* ══════ FOOTER ══════ */
.ld-footer {
    position: relative;
    z-index: 1;
    padding: 48px 0 32px;
    border-top: 1px solid var(--ld-glass-border);
}
.ld-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ld-footer-copy { font-size: 0.82rem; color: var(--ld-text3); }
.ld-footer-links { display: flex; gap: 20px; }
.ld-footer-links a { font-size: 0.82rem; color: var(--ld-text3); transition: color 0.2s; }
.ld-footer-links a:hover { color: var(--ld-primary); }

/* ══════ ANIMATIONS ══════ */
@keyframes ldFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes ldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1024px) {
    .ld-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .ld-hero-content { max-width: 100%; margin: 0 auto; }
    .ld-hero-sub { margin: 0 auto 36px; }
    .ld-hero-actions { justify-content: center; }
    .ld-hero-stats { justify-content: center; }
    .ld-hero-visual { max-width: 600px; margin: 0 auto; }
    .ld-hero-mockup { transform: rotateY(0) rotateX(2deg); }
    .ld-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ld-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .ld-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ld-nav-links { display: none; }
    .ld-mobile-toggle { display: flex; }
    .ld-hero { padding: 100px 0 60px; }
    .ld-hero h1 { font-size: 2.2rem; }
    .ld-hero-actions { flex-direction: column; align-items: stretch; }
    .ld-hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .ld-hero-stat { text-align: center; }
    .ld-features-grid { grid-template-columns: 1fr; }
    .ld-pricing-grid { grid-template-columns: 1fr; }
    .ld-pricing-card.popular { transform: none; }
    .ld-testimonials-grid { grid-template-columns: 1fr; }
    .ld-cta-box { padding: 40px 24px; }
    .ld-cta-actions { flex-direction: column; align-items: center; }
    .ld-footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .ld-mockup-body { grid-template-columns: 1fr; }
    .ld-mock-sidebar { display: none; }
    .ld-section { padding: 60px 0; }
}
@media (max-width: 480px) {
    .ld-hero h1 { font-size: 1.8rem; }
    .ld-section-title { font-size: 1.6rem; }
    .ld-pricing-card { padding: 24px 20px; }
}

/* ══════ MOBILE NAV OVERLAY ══════ */
.ld-mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
[data-theme="light"] .ld-mobile-nav { background: rgba(244, 246, 250, 0.95); }
.ld-mobile-nav.open { display: flex; }
.ld-mobile-nav a {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 12px 24px;
    color: var(--ld-text);
    transition: color 0.2s;
}
.ld-mobile-nav a:hover { color: var(--ld-primary); }
.ld-mobile-nav-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid var(--ld-glass-border);
    background: var(--ld-glass);
    color: var(--ld-text);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══════ COUNTER ANIMATION ══════ */
.ld-counter { display: inline-block; }
