/* ============================================================
   BeeHive SMS V3 — Enterprise Landing Page Styles
   Single-page parallax marketing website
   ============================================================ */

/* ---------- Design Tokens (landing-specific) ---------- */
:root {
    --lp-primary: #2563eb;
    --lp-primary-dark: #1e40af;
    --lp-primary-light: #3b82f6;
    --lp-accent: #8b5cf6;
    --lp-accent-light: #a78bfa;
    --lp-success: #10b981;
    --lp-warning: #f59e0b;
    --lp-danger: #ef4444;
    --lp-info: #06b6d4;

    --lp-dark: #0f172a;
    --lp-dark-2: #1e293b;
    --lp-dark-3: #334155;
    --lp-gray: #64748b;
    --lp-gray-light: #94a3b8;
    --lp-light: #f8fafc;
    --lp-white: #ffffff;

    --lp-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --lp-font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --lp-radius-sm: 8px;
    --lp-radius-md: 12px;
    --lp-radius-lg: 16px;
    --lp-radius-xl: 24px;
    --lp-radius-full: 9999px;

    --lp-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --lp-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --lp-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --lp-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --lp-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --lp-shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

    --lp-transition: 250ms cubic-bezier(0, 0, 0.2, 1);
    --lp-transition-slow: 400ms cubic-bezier(0, 0, 0.2, 1);
    --lp-transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

    --lp-nav-height: 72px;
    --lp-container: 1280px;
    --lp-section-padding: 100px;
}

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

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

body {
    font-family: var(--lp-font-sans);
    color: var(--lp-dark);
    background: var(--lp-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--lp-transition); }
a:hover { color: var(--lp-primary); }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Container ---------- */
.lp-container {
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Base ---------- */
.lp-section {
    padding: var(--lp-section-padding) 0;
    position: relative;
}

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

.lp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--lp-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.lp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.lp-section-subtitle {
    font-size: 1.125rem;
    color: var(--lp-gray);
    line-height: 1.6;
}

/* ---------- Buttons ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--lp-radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--lp-transition);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.lp-btn-primary {
    background: var(--lp-primary);
    color: var(--lp-white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.lp-btn-primary:hover {
    background: var(--lp-primary-dark);
    color: var(--lp-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.lp-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lp-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}
.lp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--lp-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-primary);
    border: 1.5px solid var(--lp-primary);
}
.lp-btn-outline:hover {
    background: var(--lp-primary);
    color: var(--lp-white);
}

.lp-btn-ghost {
    background: transparent;
    color: var(--lp-gray);
}
.lp-btn-ghost:hover {
    color: var(--lp-primary);
    background: rgba(37, 99, 235, 0.06);
}

.lp-btn-lg { padding: 16px 36px; font-size: 1.0625rem; }
.lp-btn-sm { padding: 8px 20px; font-size: 0.875rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--lp-nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all var(--lp-transition);
    background: transparent;
}

.lp-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-nav-inner {
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lp-white);
    transition: color var(--lp-transition);
}

.lp-nav.scrolled .lp-nav-logo { color: var(--lp-dark); }

.lp-nav-logo svg { width: 36px; height: 36px; }

.lp-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-nav-link {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--lp-radius-sm);
    transition: all var(--lp-transition);
}

.lp-nav.scrolled .lp-nav-link { color: var(--lp-gray); }
.lp-nav-link:hover { color: var(--lp-white); background: rgba(255,255,255,0.1); }
.lp-nav.scrolled .lp-nav-link:hover { color: var(--lp-primary); background: rgba(37,99,235,0.06); }

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-nav-actions .lp-btn { padding: 8px 20px; font-size: 0.875rem; }

.lp-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.lp-nav-toggle span {
    width: 24px; height: 2px;
    background: var(--lp-white);
    border-radius: 2px;
    transition: all var(--lp-transition);
}

.lp-nav.scrolled .lp-nav-toggle span { background: var(--lp-dark); }

.lp-nav-mobile {
    display: none;
    position: fixed;
    top: var(--lp-nav-height); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--lp-shadow-lg);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lp-nav-mobile.open { display: flex; }
.lp-nav-mobile .lp-nav-link {
    color: var(--lp-dark);
    padding: 12px 16px;
    font-size: 1rem;
}
.lp-nav-mobile .lp-nav-link:hover { background: rgba(37,99,235,0.06); color: var(--lp-primary); }
.lp-nav-mobile .lp-nav-actions { flex-direction: column; align-items: stretch; margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1e3a8a 100%);
    padding-top: var(--lp-nav-height);
}

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

.lp-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.lp-hero-glow-1 {
    width: 600px; height: 600px;
    background: var(--lp-primary);
    top: -100px; left: -100px;
    animation: lp-float-glow 12s ease-in-out infinite;
}

.lp-hero-glow-2 {
    width: 500px; height: 500px;
    background: var(--lp-accent);
    bottom: -100px; right: -100px;
    animation: lp-float-glow 15s ease-in-out infinite reverse;
}

.lp-hero-glow-3 {
    width: 400px; height: 400px;
    background: var(--lp-info);
    top: 40%; left: 50%;
    animation: lp-float-glow 10s ease-in-out infinite;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-hero-text { max-width: 560px; }

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--lp-radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.lp-hero-badge .lp-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--lp-success);
    box-shadow: 0 0 8px var(--lp-success);
}

.lp-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--lp-white);
    margin-bottom: 20px;
}

.lp-hero-title .lp-gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-desc {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

.lp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Hero Dashboard Mockup ---------- */
.lp-hero-visual {
    position: relative;
    height: 520px;
}

.lp-hero-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--lp-radius-lg);
    padding: 20px;
    box-shadow: var(--lp-shadow-xl);
    animation: lp-float-widget 6s ease-in-out infinite;
    transition: transform var(--lp-transition-slow);
}

.lp-hero-widget:hover { transform: scale(1.05); }

.lp-hero-widget-title {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    font-weight: 600;
}

.lp-hero-widget-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--lp-white);
    margin-bottom: 8px;
}

.lp-hero-widget-meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.lp-hero-widget-meta .lp-up { color: var(--lp-success); }
.lp-hero-widget-meta .lp-down { color: var(--lp-danger); }

/* Widget positions */
.lp-w-attendance { top: 0; left: 0; width: 220px; animation-delay: 0s; }
.lp-w-finance { top: 20px; right: 0; width: 200px; animation-delay: 1s; }
.lp-w-students { top: 200px; left: 40px; width: 240px; animation-delay: 2s; }
.lp-w-analytics { top: 180px; right: 20px; width: 210px; animation-delay: 0.5s; }
.lp-w-timetable { bottom: 0; left: 80px; width: 230px; animation-delay: 1.5s; }
.lp-w-notifications { bottom: 20px; right: 40px; width: 200px; animation-delay: 2.5s; }

/* Mini bar chart */
.lp-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-top: 8px;
}
.lp-mini-bar {
    flex: 1;
    background: rgba(255,255,255,0.2);
    border-radius: 2px 2px 0 0;
    transition: background var(--lp-transition);
}
.lp-hero-widget:hover .lp-mini-bar { background: rgba(96, 165, 250, 0.5); }

/* Mini progress ring */
.lp-mini-ring {
    width: 60px; height: 60px;
    position: relative;
    margin: 8px auto;
}
.lp-mini-ring svg { transform: rotate(-90deg); }
.lp-mini-ring circle { fill: none; stroke-width: 6; }
.lp-mini-ring .lp-ring-bg { stroke: rgba(255,255,255,0.1); }
.lp-mini-ring .lp-ring-fg { stroke: var(--lp-primary-light); stroke-linecap: round; }
.lp-mini-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lp-white);
}

/* Mini timeline */
.lp-mini-timeline { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.lp-mini-tl-item { display: flex; align-items: center; gap: 8px; font-size: 0.6875rem; color: rgba(255,255,255,0.7); }
.lp-mini-tl-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   TRUSTED PLATFORM / STATS
   ============================================================ */
.lp-stats {
    background: var(--lp-dark);
    padding: 80px 0;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.lp-stat-value {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--lp-white);
    line-height: 1;
    margin-bottom: 8px;
}

.lp-stat-value .lp-stat-suffix { color: var(--lp-primary-light); }

.lp-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ============================================================
   PLATFORM OVERVIEW
   ============================================================ */
.lp-overview {
    background: var(--lp-light);
}

.lp-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.lp-overview-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--lp-shadow-sm);
    transition: all var(--lp-transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.lp-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp-shadow-xl);
}

.lp-overview-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
}

.lp-overview-icon svg { width: 32px; height: 32px; color: var(--lp-white); }

.lp-overview-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-overview-card p {
    font-size: 0.9375rem;
    color: var(--lp-gray);
}

/* ============================================================
   ARCHITECTURE
   ============================================================ */
.lp-architecture {
    background: var(--lp-white);
}

.lp-arch-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.lp-arch-block {
    width: 100%;
    background: var(--lp-white);
    border: 2px solid var(--lp-light);
    border-radius: var(--lp-radius-lg);
    padding: 20px 32px;
    text-align: center;
    box-shadow: var(--lp-shadow-sm);
    transition: all var(--lp-transition);
    position: relative;
}

.lp-arch-block:hover {
    border-color: var(--lp-primary);
    box-shadow: var(--lp-shadow-lg);
    transform: scale(1.02);
}

.lp-arch-block-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.lp-arch-block-desc {
    font-size: 0.8125rem;
    color: var(--lp-gray);
}

.lp-arch-arrow {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--lp-primary), var(--lp-accent));
    position: relative;
}

.lp-arch-arrow::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--lp-accent);
}

.lp-arch-block-1 { border-left: 4px solid var(--lp-primary); }
.lp-arch-block-2 { border-left: 4px solid var(--lp-info); }
.lp-arch-block-3 { border-left: 4px solid var(--lp-accent); }
.lp-arch-block-4 { border-left: 4px solid var(--lp-success); }
.lp-arch-block-5 { border-left: 4px solid var(--lp-warning); }
.lp-arch-block-6 { border-left: 4px solid var(--lp-danger); }

/* ============================================================
   CORE SERVICES
   ============================================================ */
.lp-services {
    background: linear-gradient(180deg, var(--lp-light) 0%, var(--lp-white) 100%);
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lp-service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    transition: all var(--lp-transition);
    position: relative;
    overflow: hidden;
}

.lp-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--lp-transition-slow);
}

.lp-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-xl);
    border-color: rgba(37, 99, 235, 0.15);
}

.lp-service-card:hover::before { transform: scaleX(1); }

.lp-service-icon {
    width: 48px; height: 48px;
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(139,92,246,0.1));
}

.lp-service-icon svg { width: 24px; height: 24px; color: var(--lp-primary); }

.lp-service-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-service-card p {
    font-size: 0.875rem;
    color: var(--lp-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.lp-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lp-service-tag {
    font-size: 0.6875rem;
    padding: 3px 10px;
    border-radius: var(--lp-radius-full);
    background: rgba(37, 99, 235, 0.06);
    color: var(--lp-primary);
    font-weight: 500;
}

/* ============================================================
   MODULES SHOWCASE
   ============================================================ */
.lp-modules {
    background: var(--lp-white);
    overflow: hidden;
}

.lp-modules-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-primary) var(--lp-light);
}

.lp-modules-scroll::-webkit-scrollbar { height: 6px; }
.lp-modules-scroll::-webkit-scrollbar-track { background: var(--lp-light); border-radius: 3px; }
.lp-modules-scroll::-webkit-scrollbar-thumb { background: var(--lp-primary); border-radius: 3px; }

.lp-module-card {
    flex: 0 0 280px;
    background: var(--lp-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    scroll-snap-align: start;
    transition: all var(--lp-transition);
    cursor: pointer;
}

.lp-module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-xl);
    border-color: rgba(37, 99, 235, 0.15);
}

.lp-module-icon {
    width: 52px; height: 52px;
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.lp-module-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-module-card p {
    font-size: 0.875rem;
    color: var(--lp-gray);
    line-height: 1.5;
}

.lp-module-features {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-module-feature {
    font-size: 0.75rem;
    color: var(--lp-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-module-feature::before {
    content: '';
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--lp-success);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-7 7a1 1 0 01-1.4 0l-3-3a1 1 0 011.4-1.4l2.3 2.3 6.3-6.3a1 1 0 011.4 0z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================================
   DASHBOARD MOCKUP
   ============================================================ */
.lp-dashboard {
    background: linear-gradient(180deg, var(--lp-dark) 0%, var(--lp-dark-2) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.lp-dashboard .lp-section-title { color: var(--lp-white); }
.lp-dashboard .lp-section-subtitle { color: rgba(255,255,255,0.6); }

.lp-dash-mockup {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    background: var(--lp-dark-2);
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    box-shadow: var(--lp-shadow-2xl);
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.06);
}

.lp-dash-sidebar {
    background: var(--lp-dark);
    padding: 20px 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.lp-dash-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-white);
    margin-bottom: 24px;
    padding: 0 8px;
}

.lp-dash-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--lp-radius-sm);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
    transition: all var(--lp-transition);
}

.lp-dash-sidebar-item.active {
    background: rgba(37, 99, 235, 0.15);
    color: var(--lp-primary-light);
}

.lp-dash-sidebar-item:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); }

.lp-dash-sidebar-icon {
    width: 18px; height: 18px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.lp-dash-main {
    padding: 24px;
    background: var(--lp-dark-2);
}

.lp-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.lp-dash-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-white);
}

.lp-dash-search {
    width: 200px;
    height: 36px;
    border-radius: var(--lp-radius-sm);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.lp-dash-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.lp-dash-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--lp-radius-md);
    padding: 16px;
}

.lp-dash-card-label {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.lp-dash-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-white);
    margin-bottom: 4px;
}

.lp-dash-card-change {
    font-size: 0.6875rem;
    font-weight: 600;
}
.lp-dash-card-change.up { color: var(--lp-success); }
.lp-dash-card-change.down { color: var(--lp-danger); }

.lp-dash-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.lp-dash-chart {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--lp-radius-md);
    padding: 20px;
    height: 240px;
}

.lp-dash-chart-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.lp-dash-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 160px;
}

.lp-dash-chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--lp-primary), var(--lp-primary-light));
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    transition: opacity var(--lp-transition);
}
.lp-dash-chart-bar:hover { opacity: 1; }

.lp-dash-chart-donut {
    width: 140px; height: 140px;
    margin: 0 auto;
    position: relative;
}

.lp-dash-heatmap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-top: 12px;
}

.lp-dash-heat-cell {
    aspect-ratio: 1;
    border-radius: 3px;
    background: rgba(255,255,255,0.05);
}
.lp-dash-heat-cell.l1 { background: rgba(16, 185, 129, 0.2); }
.lp-dash-heat-cell.l2 { background: rgba(16, 185, 129, 0.4); }
.lp-dash-heat-cell.l3 { background: rgba(16, 185, 129, 0.6); }
.lp-dash-heat-cell.l4 { background: rgba(16, 185, 129, 0.8); }

/* ============================================================
   WORKFLOW DEMO
   ============================================================ */
.lp-workflow {
    background: var(--lp-light);
}

.lp-workflow-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.lp-workflow-step {
    flex: 0 0 auto;
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    padding: 24px;
    width: 180px;
    text-align: center;
    box-shadow: var(--lp-shadow-sm);
    transition: all var(--lp-transition);
    border: 2px solid transparent;
}

.lp-workflow-step:hover {
    border-color: var(--lp-primary);
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
}

.lp-workflow-step-icon {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-white);
}

.lp-workflow-step-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.lp-workflow-step-desc {
    font-size: 0.75rem;
    color: var(--lp-gray);
}

.lp-workflow-connector {
    display: flex;
    align-items: center;
    width: 40px;
}

.lp-workflow-connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-accent));
    position: relative;
}

.lp-workflow-connector-line::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--lp-accent);
}

/* ============================================================
   TIMETABLE SHOWCASE
   ============================================================ */
.lp-timetable {
    background: var(--lp-white);
}

.lp-tt-preview {
    max-width: 900px;
    margin: 48px auto 0;
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.lp-tt-header {
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
    background: var(--lp-dark);
    color: var(--lp-white);
}

.lp-tt-header-cell {
    padding: 14px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.lp-tt-body {
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
}

.lp-tt-time {
    padding: 16px 8px;
    font-size: 0.75rem;
    color: var(--lp-gray);
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-weight: 500;
}

.lp-tt-slot {
    padding: 8px;
    border-right: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    min-height: 60px;
}

.lp-tt-class {
    border-radius: var(--lp-radius-sm);
    padding: 8px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.lp-tt-class .lp-tt-room {
    font-size: 0.625rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
}

.lp-tt-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lp-tt-feature {
    text-align: center;
    padding: 24px;
}

.lp-tt-feature-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(139,92,246,0.08));
}

.lp-tt-feature-icon svg { width: 28px; height: 28px; color: var(--lp-primary); }

.lp-tt-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.lp-tt-feature p {
    font-size: 0.8125rem;
    color: var(--lp-gray);
}

/* ============================================================
   ENTERPRISE FEATURES
   ============================================================ */
.lp-features {
    background: var(--lp-light);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-feature-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-md);
    padding: 24px;
    transition: all var(--lp-transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
}

.lp-feature-icon {
    width: 40px; height: 40px;
    border-radius: var(--lp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.lp-feature-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.lp-feature-card p {
    font-size: 0.8125rem;
    color: var(--lp-gray);
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.lp-solutions {
    background: var(--lp-white);
}

.lp-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lp-solution-card {
    background: var(--lp-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--lp-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--lp-transition);
}

.lp-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-xl);
    border-color: rgba(37, 99, 235, 0.12);
}

.lp-solution-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.lp-solution-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-solution-card p {
    font-size: 0.8125rem;
    color: var(--lp-gray);
}

/* ============================================================
   SECURITY
   ============================================================ */
.lp-security {
    background: linear-gradient(135deg, var(--lp-dark) 0%, var(--lp-dark-2) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.lp-security .lp-section-title { color: var(--lp-white); }
.lp-security .lp-section-subtitle { color: rgba(255,255,255,0.6); }

.lp-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.lp-security-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--lp-transition);
}

.lp-security-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.lp-security-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(139,92,246,0.15));
}

.lp-security-icon svg { width: 28px; height: 28px; color: var(--lp-primary-light); }

.lp-security-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-white);
    margin-bottom: 8px;
}

.lp-security-card p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   TECH STACK
   ============================================================ */
.lp-tech {
    background: var(--lp-light);
}

.lp-tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.lp-tech-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--lp-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--lp-radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--lp-transition);
    box-shadow: var(--lp-shadow-sm);
}

.lp-tech-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

.lp-tech-badge .lp-tech-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.lp-integrations {
    background: var(--lp-white);
}

.lp-integrations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.lp-integration-card {
    background: var(--lp-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--lp-radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: all var(--lp-transition);
}

.lp-integration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
    border-color: rgba(37, 99, 235, 0.12);
}

.lp-integration-emoji {
    font-size: 2rem;
    margin-bottom: 10px;
}

.lp-integration-card h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-dark);
}

/* ============================================================
   WHY BEEHIVE (COMPARISON)
   ============================================================ */
.lp-comparison {
    background: var(--lp-light);
}

.lp-comparison-table {
    max-width: 800px;
    margin: 48px auto 0;
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}

.lp-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.lp-comparison-row:last-child { border-bottom: none; }

.lp-comparison-header {
    background: var(--lp-dark);
    color: var(--lp-white);
}

.lp-comparison-header .lp-comp-cell {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-align: center;
}

.lp-comparison-header .lp-comp-cell:first-child {
    background: var(--lp-dark-2);
    text-align: left;
}

.lp-comparison-header .lp-comp-cell.beehive {
    background: var(--lp-primary);
}

.lp-comp-cell {
    padding: 16px 24px;
    font-size: 0.875rem;
    border-right: 1px solid rgba(0,0,0,0.04);
}

.lp-comp-cell:first-child {
    font-weight: 600;
    color: var(--lp-dark);
    background: rgba(0,0,0,0.02);
}

.lp-comp-cell.traditional {
    color: var(--lp-gray);
    text-align: center;
}

.lp-comp-cell.beehive {
    color: var(--lp-primary);
    text-align: center;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.02);
}

.lp-comp-cell .lp-comp-x { color: var(--lp-danger); font-weight: 700; }
.lp-comp-cell .lp-comp-check { color: var(--lp-success); font-weight: 700; }

/* ============================================================
   SCREENS / MOCKUPS
   ============================================================ */
.lp-screens {
    background: var(--lp-white);
}

.lp-screens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.lp-screen-card {
    background: var(--lp-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    transition: all var(--lp-transition);
    box-shadow: var(--lp-shadow-sm);
}

.lp-screen-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-xl);
}

.lp-screen-preview {
    height: 200px;
    background: linear-gradient(135deg, var(--lp-dark), var(--lp-dark-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lp-screen-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--lp-transition-slow);
}

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

.lp-screen-card-body {
    padding: 20px;
}

.lp-screen-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.lp-screen-card-body p {
    font-size: 0.8125rem;
    color: var(--lp-gray);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lp-testimonials {
    background: var(--lp-light);
    overflow: hidden;
}

.lp-testimonials-track {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    transition: transform 500ms ease;
}

.lp-testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    box-shadow: var(--lp-shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.lp-testimonial-quote {
    font-size: 0.9375rem;
    color: var(--lp-dark);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.lp-testimonial-name {
    font-size: 0.9375rem;
    font-weight: 700;
}

.lp-testimonial-role {
    font-size: 0.75rem;
    color: var(--lp-gray);
}

.lp-testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.lp-testimonial-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all var(--lp-transition);
}

.lp-testimonial-dot.active {
    background: var(--lp-primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================================
   PRICING
   ============================================================ */
.lp-pricing {
    background: var(--lp-white);
}

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

.lp-pricing-card {
    background: var(--lp-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--lp-radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--lp-transition);
    position: relative;
}

.lp-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-xl);
}

.lp-pricing-card.featured {
    border-color: var(--lp-primary);
    box-shadow: var(--lp-shadow-lg);
    background: linear-gradient(180deg, rgba(37,99,235,0.02) 0%, var(--lp-white) 100%);
}

.lp-pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--lp-primary);
    color: var(--lp-white);
    padding: 6px 20px;
    border-radius: var(--lp-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-pricing-card .lp-pricing-desc {
    font-size: 0.875rem;
    color: var(--lp-gray);
    margin-bottom: 24px;
}

.lp-pricing-features {
    text-align: left;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-pricing-feature {
    font-size: 0.875rem;
    color: var(--lp-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-pricing-feature::before {
    content: '';
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--lp-success);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-7 7a1 1 0 01-1.4 0l-3-3a1 1 0 011.4-1.4l2.3 2.3 6.3-6.3a1 1 0 011.4 0z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
    background: var(--lp-light);
}

.lp-faq-list {
    max-width: 760px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq-item {
    background: var(--lp-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    transition: all var(--lp-transition);
}

.lp-faq-item.open {
    box-shadow: var(--lp-shadow-md);
    border-color: rgba(37, 99, 235, 0.12);
}

.lp-faq-question {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background var(--lp-transition);
}

.lp-faq-question:hover { background: rgba(0,0,0,0.02); }

.lp-faq-toggle {
    width: 24px; height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform var(--lp-transition);
}

.lp-faq-toggle::before, .lp-faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--lp-gray);
    border-radius: 2px;
    transition: all var(--lp-transition);
}

.lp-faq-toggle::before {
    top: 50%; left: 0; right: 0; height: 2px;
    transform: translateY(-50%);
}

.lp-faq-toggle::after {
    left: 50%; top: 0; bottom: 0; width: 2px;
    transform: translateX(-50%);
}

.lp-faq-item.open .lp-faq-toggle::after { transform: translateX(-50%) scaleY(0); }

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--lp-transition-slow);
}

.lp-faq-item.open .lp-faq-answer { max-height: 300px; }

.lp-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--lp-gray);
    line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.lp-cta {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-accent) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lp-cta-content {
    position: relative;
    z-index: 1;
}

.lp-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--lp-white);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.lp-cta p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.lp-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-cta .lp-btn-primary {
    background: var(--lp-white);
    color: var(--lp-primary);
}
.lp-cta .lp-btn-primary:hover {
    background: var(--lp-white);
    color: var(--lp-primary-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
    background: var(--lp-dark);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 32px;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lp-white);
    margin-bottom: 16px;
}

.lp-footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.lp-footer-social {
    display: flex;
    gap: 12px;
}

.lp-footer-social a {
    width: 36px; height: 36px;
    border-radius: var(--lp-radius-sm);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--lp-transition);
}

.lp-footer-social a:hover {
    background: var(--lp-primary);
    color: var(--lp-white);
}

.lp-footer-social svg { width: 18px; height: 18px; }

.lp-footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--lp-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.lp-footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.lp-footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--lp-transition);
}

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

.lp-footer-newsletter {
    margin-top: 16px;
}

.lp-footer-newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.lp-footer-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--lp-radius-sm);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--lp-white);
    font-size: 0.875rem;
    font-family: inherit;
}

.lp-footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.lp-footer-newsletter-form button {
    padding: 10px 18px;
    border-radius: var(--lp-radius-sm);
    background: var(--lp-primary);
    color: var(--lp-white);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--lp-transition);
}

.lp-footer-newsletter-form button:hover { background: var(--lp-primary-dark); }

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

.lp-footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

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

.lp-footer-links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

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

.lp-footer-back-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: var(--lp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lp-shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--lp-transition);
    z-index: 999;
}

.lp-footer-back-top.visible { opacity: 1; visibility: visible; }
.lp-footer-back-top:hover { background: var(--lp-primary-dark); transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes lp-float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes lp-float-widget {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes lp-particle-drift {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(var(--dx, 100px), var(--dy, -100px)); opacity: 0; }
}

/* ---------- Scroll Reveal ---------- */
.lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.lp-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-reveal-delay-1 { transition-delay: 100ms; }
.lp-reveal-delay-2 { transition-delay: 200ms; }
.lp-reveal-delay-3 { transition-delay: 300ms; }
.lp-reveal-delay-4 { transition-delay: 400ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .lp-nav-menu { display: none; }
    .lp-nav-toggle { display: flex; }
    .lp-nav-actions { display: none; }
    .lp-nav-mobile .lp-nav-actions { display: flex; }

    .lp-hero-content { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero-visual { height: 400px; }

    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .lp-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-services-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-security-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-integrations-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-screens-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lp-footer-brand-col { grid-column: 1 / -1; }

    .lp-dash-mockup { grid-template-columns: 1fr; }
    .lp-dash-sidebar { display: none; }
    .lp-dash-cards { grid-template-columns: repeat(2, 1fr); }
    .lp-dash-charts { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --lp-section-padding: 60px; }

    .lp-hero { min-height: auto; padding-bottom: 60px; }
    .lp-hero-visual { height: 300px; }
    .lp-hero-widget { padding: 14px; }
    .lp-w-attendance, .lp-w-finance { width: 160px; }
    .lp-w-students, .lp-w-analytics { width: 170px; }
    .lp-w-timetable, .lp-w-notifications { width: 160px; }
    .lp-hero-widget-value { font-size: 1.25rem; }

    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-overview-grid { grid-template-columns: 1fr; }
    .lp-services-grid { grid-template-columns: 1fr; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-security-grid { grid-template-columns: 1fr; }
    .lp-integrations-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-screens-grid { grid-template-columns: 1fr; }
    .lp-testimonial-card { flex: 0 0 100%; }

    .lp-workflow-flow { flex-direction: column; align-items: center; }
    .lp-workflow-connector { width: 2px; height: 32px; }
    .lp-workflow-connector-line { width: 2px; height: 100%; }
    .lp-workflow-connector-line::after {
        right: 50%; top: 100%;
        transform: translateX(50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: none;
        border-bottom: 7px solid var(--lp-accent);
    }

    .lp-tt-features { grid-template-columns: 1fr; }
    .lp-comparison-table { font-size: 0.75rem; }
    .lp-comp-cell { padding: 12px 8px; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-footer-bottom { flex-direction: column; text-align: center; }
    .lp-dash-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .lp-stats-grid { grid-template-columns: 1fr; }
    .lp-solutions-grid { grid-template-columns: 1fr; }
    .lp-hero-actions { flex-direction: column; }
    .lp-hero-actions .lp-btn { width: 100%; }
    .lp-cta-actions { flex-direction: column; }
    .lp-cta-actions .lp-btn { width: 100%; }
}

/* ---------- Accessibility ---------- */
:focus-visible {
    outline: 2px solid var(--lp-primary);
    outline-offset: 2px;
}

.lp-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

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