/* Vidhyalaya / School ERP — Landing page */
:root {
    --lp-primary: #3949ab;
    --lp-primary-dark: #1a237e;
    --lp-accent: #7c4dff;
    --lp-cyan: #00bcd4;
    --lp-green: #00c853;
    --lp-text: #1e293b;
    --lp-muted: #64748b;
    --lp-bg: #f8fafc;
    --lp-white: #ffffff;
    --lp-radius: 16px;
    --lp-shadow: 0 24px 64px rgba(26, 35, 126, 0.12);
    --lp-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.lp-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Nav ─── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(57, 73, 171, 0.08);
    transition: box-shadow 0.3s;
}

.lp-nav.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); }

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--lp-primary-dark);
    font-weight: 800;
    font-size: 1.2rem;
}

.lp-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(57, 73, 171, 0.35);
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-links a {
    text-decoration: none;
    color: var(--lp-muted);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.lp-nav-links a:hover { color: var(--lp-primary); }

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

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-family: var(--lp-font);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-btn:hover { transform: translateY(-2px); }

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-accent) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(57, 73, 171, 0.35);
}

.lp-btn-primary:hover {
    box-shadow: 0 12px 32px rgba(57, 73, 171, 0.45);
    color: #fff;
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-primary);
    border: 2px solid rgba(57, 73, 171, 0.25);
}

.lp-btn-outline:hover {
    background: rgba(57, 73, 171, 0.06);
    color: var(--lp-primary-dark);
}

.lp-btn-ghost {
    background: transparent;
    color: var(--lp-muted);
    padding: 11px 16px;
}

.lp-btn-ghost:hover { color: var(--lp-primary); }

.lp-btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.lp-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--lp-primary-dark);
}

.lp-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

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

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(124, 77, 255, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 188, 212, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #eef2ff 0%, var(--lp-bg) 100%);
    z-index: 0;
}

.lp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(57, 73, 171, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 73, 171, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: rgba(57, 73, 171, 0.1);
    border: 1px solid rgba(57, 73, 171, 0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lp-primary);
    margin-bottom: 20px;
}

.lp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-green);
    animation: lp-pulse 2s infinite;
}

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

.lp-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    color: var(--lp-primary-dark);
    letter-spacing: -0.02em;
}

.lp-hero h1 .lp-gradient-text {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-accent) 50%, var(--lp-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--lp-muted);
    margin: 0 0 32px;
    max-width: 520px;
}

.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.lp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--lp-muted);
    font-weight: 500;
}

.lp-trust-item svg { flex-shrink: 0; color: var(--lp-green); }

/* ─── Hero visual wrapper ─── */
.lp-hero-visual {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .lp-hero-visual {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ─── 3D Scene (desktop) ─── */
.lp-scene-3d {
    perspective: 1200px;
    perspective-origin: 50% 50%;
    height: 420px;
    position: relative;
    width: 100%;
}

.lp-scene-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: lp-float-stage 8s ease-in-out infinite;
}

.lp-scene-sidecards {
    position: static;
    display: contents;
}

@keyframes lp-float-stage {
    0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-12px); }
}

.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    pointer-events: none;
}

.lp-orb-1 {
    width: 180px;
    height: 180px;
    background: var(--lp-accent);
    top: 10%;
    right: 5%;
    animation: lp-orb-drift 10s ease-in-out infinite;
}

.lp-orb-2 {
    width: 140px;
    height: 140px;
    background: var(--lp-cyan);
    bottom: 15%;
    left: 0;
    animation: lp-orb-drift 12s ease-in-out infinite reverse;
}

@keyframes lp-orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.lp-card-3d {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
}

.lp-card-main {
    width: 88%;
    left: 6%;
    top: 8%;
    padding: 20px;
    transform: translateZ(40px) rotateY(-2deg);
    animation: lp-card-float 6s ease-in-out infinite;
}

@keyframes lp-card-float {
    0%, 100% { transform: translateZ(40px) rotateY(-2deg) translateY(0); }
    50% { transform: translateZ(50px) rotateY(-1deg) translateY(-8px); }
}

.lp-card-float-1 {
    width: 42%;
    padding: 14px;
    top: 2%;
    right: 0;
    transform: translateZ(80px) rotateY(-12deg) rotateX(5deg);
    animation: lp-card-float-1 7s ease-in-out infinite;
}

@keyframes lp-card-float-1 {
    0%, 100% { transform: translateZ(80px) rotateY(-12deg) rotateX(5deg) translateY(0); }
    50% { transform: translateZ(90px) rotateY(-10deg) rotateX(3deg) translateY(-10px); }
}

.lp-card-float-2 {
    width: 38%;
    padding: 14px;
    bottom: 8%;
    left: 0;
    transform: translateZ(60px) rotateY(8deg) rotateX(-4deg);
    animation: lp-card-float-2 9s ease-in-out infinite;
}

@keyframes lp-card-float-2 {
    0%, 100% { transform: translateZ(60px) rotateY(8deg) rotateX(-4deg) translateY(0); }
    50% { transform: translateZ(70px) rotateY(6deg) rotateX(-2deg) translateY(8px); }
}

.lp-mock-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

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

.lp-mock-dot:nth-child(1) { background: #ff5f57; }
.lp-mock-dot:nth-child(2) { background: #febc2e; }
.lp-mock-dot:nth-child(3) { background: #28c840; }

.lp-mock-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-muted);
    margin-left: 8px;
}

.lp-mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-bottom: 12px;
}

.lp-mock-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--lp-primary), var(--lp-accent));
    opacity: 0.85;
    animation: lp-bar-grow 2s ease-out forwards;
    transform-origin: bottom;
}

.lp-mock-bar:nth-child(1) { height: 45%; animation-delay: 0.1s; }
.lp-mock-bar:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.lp-mock-bar:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.lp-mock-bar:nth-child(4) { height: 90%; animation-delay: 0.4s; }
.lp-mock-bar:nth-child(5) { height: 65%; animation-delay: 0.5s; }
.lp-mock-bar:nth-child(6) { height: 80%; animation-delay: 0.6s; }

@keyframes lp-bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

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

.lp-mock-stat {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.lp-mock-stat strong {
    display: block;
    font-size: 0.9rem;
    color: var(--lp-primary-dark);
}

.lp-mock-stat span {
    font-size: 0.65rem;
    color: var(--lp-muted);
}

.lp-mini-ai {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-mini-ai-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.lp-mini-ai p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--lp-primary-dark);
    line-height: 1.3;
}

.lp-mini-ai-text {
    min-width: 0;
    flex: 1;
}

.lp-mini-ai small {
    display: block;
    font-size: 0.65rem;
    color: var(--lp-muted);
    line-height: 1.35;
    word-break: break-word;
}

.lp-mini-score {
    text-align: center;
}

.lp-mini-score strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lp-green), var(--lp-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-mini-score span {
    font-size: 0.65rem;
    color: var(--lp-muted);
}

/* ─── Stats strip ─── */
.lp-stats {
    padding: 48px 0;
    background: var(--lp-white);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

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

.lp-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-primary-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.lp-stat-label {
    font-size: 0.88rem;
    color: var(--lp-muted);
    font-weight: 500;
}

/* ─── Sections ─── */
.lp-section {
    padding: 88px 0;
}

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

.lp-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-accent);
    margin-bottom: 12px;
}

.lp-section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--lp-primary-dark);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.lp-section-header p {
    font-size: 1.05rem;
    color: var(--lp-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── AI highlight ─── */
.lp-ai-section {
    background: linear-gradient(160deg, var(--lp-primary-dark) 0%, #283593 40%, #4527a0 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lp-ai-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.lp-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-ai-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.2;
}

.lp-ai-content p {
    font-size: 1.05rem;
    opacity: 0.88;
    line-height: 1.7;
    margin: 0 0 28px;
}

.lp-ai-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.lp-ai-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    opacity: 0.92;
}

.lp-ai-list li::before {
    content: '✦';
    color: var(--lp-cyan);
    font-size: 0.8rem;
    margin-top: 4px;
}

.lp-ai-visual {
    perspective: 1000px;
}

.lp-ai-cube-wrap {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-ai-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: lp-cube-spin 20s linear infinite;
}

@keyframes lp-cube-spin {
    from { transform: rotateX(-18deg) rotateY(0deg); }
    to { transform: rotateX(-18deg) rotateY(360deg); }
}

.lp-cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.lp-cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
.lp-cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
.lp-cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
.lp-cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); }
.lp-cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); }
.lp-cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }

.lp-ai-orbit {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: lp-orbit 15s linear infinite;
}

.lp-ai-orbit-1 { width: 280px; height: 280px; }
.lp-ai-orbit-2 { width: 320px; height: 320px; animation-direction: reverse; animation-duration: 22s; }

.lp-orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--lp-cyan);
    border-radius: 50%;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    box-shadow: 0 0 16px var(--lp-cyan);
}

@keyframes lp-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lp-btn-light {
    background: #fff;
    color: var(--lp-primary-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.lp-btn-light:hover { color: var(--lp-primary); }

/* ─── Features grid ─── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-feature-card {
    background: var(--lp-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    transform-style: preserve-3d;
}

.lp-feature-card:hover {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow: var(--lp-shadow);
    border-color: rgba(57, 73, 171, 0.2);
}

.lp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.lp-feature-icon.purple { background: rgba(124, 77, 255, 0.12); }
.lp-feature-icon.blue { background: rgba(57, 73, 171, 0.12); }
.lp-feature-icon.cyan { background: rgba(0, 188, 212, 0.12); }
.lp-feature-icon.green { background: rgba(0, 200, 83, 0.12); }
.lp-feature-icon.orange { background: rgba(255, 111, 0, 0.12); }
.lp-feature-icon.pink { background: rgba(233, 30, 99, 0.12); }

.lp-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--lp-primary-dark);
}

.lp-feature-card p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─── Steps ─── */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: lp-step;
}

.lp-step {
    text-align: center;
    position: relative;
}

.lp-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(57, 73, 171, 0.3);
}

.lp-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--lp-primary-dark);
}

.lp-step p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─── CTA banner ─── */
.lp-cta-banner {
    margin: 0 20px 80px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 56px 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-accent) 60%, var(--lp-cyan) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(57, 73, 171, 0.35);
}

.lp-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%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-banner h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
}

.lp-cta-banner p {
    font-size: 1.05rem;
    opacity: 0.92;
    margin: 0 0 28px;
    position: relative;
}

.lp-cta-banner .lp-btn { position: relative; }

.lp-cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.8;
    position: relative;
}

/* ─── Contact ─── */
.lp-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-contact-card {
    background: var(--lp-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--lp-radius);
    padding: 28px;
    text-align: center;
}

.lp-contact-card .lp-contact-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.lp-contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--lp-primary-dark);
}

.lp-contact-card a,
.lp-contact-card p {
    font-size: 0.92rem;
    color: var(--lp-muted);
    text-decoration: none;
    margin: 0;
    line-height: 1.5;
}

.lp-contact-card a:hover { color: var(--lp-primary); }

/* ─── Footer ─── */
.lp-footer {
    background: var(--lp-primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 48px 0 24px;
}

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

.lp-footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.lp-footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.lp-footer h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
}

.lp-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer ul li { margin-bottom: 10px; }

.lp-footer ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.lp-footer ul a:hover { color: #fff; }

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.82rem;
}

/* ─── Reveal animation ─── */
.lp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── Tablet & mobile: flat stacked hero cards ─── */
@media (max-width: 991px) {
    .lp-hero-inner,
    .lp-ai-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .lp-hero-lead,
    .lp-hero-ctas,
    .lp-hero-trust {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-hero-lead { max-width: 100%; }

    .lp-hero-visual {
        max-width: 100%;
        width: 100%;
        padding: 0 4px;
    }

    .lp-scene-3d {
        perspective: none;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .lp-scene-stage {
        display: flex;
        flex-direction: column;
        gap: 14px;
        height: auto;
        transform: none !important;
        animation: none !important;
    }

    .lp-orb {
        opacity: 0.35;
    }

    .lp-orb-1 {
        width: 120px;
        height: 120px;
        top: -20px;
        right: 0;
    }

    .lp-orb-2 {
        width: 100px;
        height: 100px;
        bottom: auto;
        top: 40%;
        left: -20px;
    }

    .lp-card-3d {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        transform: none !important;
        animation: none !important;
        box-shadow: 0 12px 32px rgba(26, 35, 126, 0.1);
    }

    .lp-card-main {
        padding: 18px 16px;
    }

    .lp-scene-sidecards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .lp-card-float-1,
    .lp-card-float-2 {
        padding: 12px;
    }

    .lp-mini-ai {
        align-items: flex-start;
    }

    .lp-mini-ai-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .lp-mini-ai p { font-size: 0.8rem; }
    .lp-mini-ai small { font-size: 0.68rem; }

    .lp-mini-score strong { font-size: 1.25rem; }

    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-ai-cube-wrap { height: 280px; }
}

@media (max-width: 767px) {
    .lp-menu-toggle { display: block; }

    .lp-nav-links,
    .lp-nav-actions {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .lp-nav-links.open,
    .lp-nav-actions.open {
        display: flex;
    }

    .lp-nav-actions {
        top: auto;
        border-top: none;
        padding-top: 0;
    }

    .lp-nav-actions .lp-btn { width: 100%; }

    .lp-features-grid,
    .lp-steps,
    .lp-contact-grid,
    .lp-stats-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero { padding: 100px 0 48px; min-height: auto; }
    .lp-section { padding: 64px 0; }
    .lp-cta-banner { padding: 40px 24px; margin-bottom: 48px; }

    .lp-hero-visual {
        margin-top: 8px;
    }

    .lp-scene-sidecards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lp-mock-chart {
        height: 64px;
    }

    .lp-mock-title {
        font-size: 0.7rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 55%;
    }

    .lp-mock-stat strong { font-size: 0.85rem; }
    .lp-mock-stat span { font-size: 0.6rem; }

    .lp-orb { display: none; }
}

@media (max-width: 480px) {
    .lp-hero-ctas { flex-direction: column; }
    .lp-hero-ctas .lp-btn { width: 100%; }

    .lp-card-main { padding: 14px 12px; }
    .lp-mock-chart { height: 56px; gap: 4px; }
    .lp-mock-stats { gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-scene-stage,
    .lp-card-main,
    .lp-card-float-1,
    .lp-card-float-2,
    .lp-orb,
    .lp-ai-cube,
    .lp-ai-orbit {
        animation: none !important;
    }

    .lp-scene-stage {
        transform: none !important;
    }

    .lp-card-3d {
        transform: none !important;
    }
}
