﻿/* ===================================================
   SimpleGMP Landing Page Styles
   =================================================== */

/**, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

.lp-root {
    font-family: "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
    color: #1a1a2e;
    background: #fff;
    overflow-x: hidden;
}*/

/* ── Navbar ─────────────────────────────────────── */
/*.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 68px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.lp-navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.lp-brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.lp-brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.3px;
}

.lp-brand-name span {
    color: #6366f1;
}

.lp-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}*/

/* ── Buttons ─────────────────────────────────────── */
/*.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.35rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.lp-btn-ghost {
    background: transparent;
    color: #374151;
    border: 1.5px solid #d1d5db;
}

    .lp-btn-ghost:hover {
        background: #f3f4f6;
        border-color: #6366f1;
        color: #6366f1;
    }

.lp-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

    .lp-btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    }

.lp-btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

    .lp-btn-outline:hover {
        background: #6366f1;
        color: white;
    }

.lp-btn-xl {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
}

.lp-btn-white {
    background: white;
    color: #6366f1;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

    .lp-btn-white:hover {
        background: #f5f3ff;
        transform: translateY(-1px);
    }

.lp-btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

    .lp-btn-white-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
    }*/

/* ── Hero ─────────────────────────────────────────── */
/*.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 6rem 2.5rem 4rem;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.lp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.lp-hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1, transparent);
    top: -150px;
    right: -100px;
}

.lp-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    bottom: -50px;
    left: -80px;
}

.lp-hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #06b6d4, transparent);
    top: 40%;
    left: 40%;
}

.lp-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.lp-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: white;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}

.lp-hero-title-accent {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.lp-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.lp-hero-stats {
    display: flex;
    gap: 2rem;
}

.lp-hero-stat {
    display: flex;
    flex-direction: column;
}

.lp-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.lp-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}*/

/* ── Hero Visual ─────────────────────────────────── */
/*.lp-hero-visual {
    position: relative;
}

.lp-dashboard-mockup {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.lp-mock-titlebar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.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;
    color: rgba(255,255,255,0.4);
    margin-left: 0.5rem;
}

.lp-mock-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lp-mock-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
}

.lp-mock-card-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.lp-mock-card-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.lp-mock-card-change {
    font-size: 0.7rem;
    color: #34d399;
    margin-top: 0.2rem;
}

.lp-mock-chart {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.lp-mock-chart-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.lp-mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.lp-mock-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, #818cf8, #6366f1);
    min-height: 8px;
    opacity: 0.85;
}

.lp-mock-table {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.lp-mock-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0.5rem 0.85rem;
    background: rgba(99, 102, 241, 0.2);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-mock-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.lp-mock-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
}

.lp-mock-badge-green {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
}

.lp-mock-badge-yellow {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.lp-mock-badge-blue {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}*/

/* ── Section Shared ─────────────────────────────── */
/*.lp-section {
    padding: 5rem 2.5rem;
}

.lp-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 0.75rem;
}

.lp-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.lp-section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 600px;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

    .lp-section-header .lp-section-subtitle {
        margin: 0 auto;
    }*/

/* ── Features ───────────────────────────────────── */
/*.lp-features {
    background: #fafafa;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.lp-feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .lp-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .lp-feature-card:hover {
        border-color: #818cf8;
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
        transform: translateY(-3px);
    }

        .lp-feature-card:hover::before {
            opacity: 1;
        }

.lp-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.4rem;
}

.lp-icon-purple { background: #f5f3ff; color: #6366f1; }
.lp-icon-blue   { background: #eff6ff; color: #3b82f6; }
.lp-icon-green  { background: #f0fdf4; color: #22c55e; }
.lp-icon-orange { background: #fff7ed; color: #f97316; }
.lp-icon-pink   { background: #fdf2f8; color: #ec4899; }
.lp-icon-teal   { background: #f0fdfa; color: #14b8a6; }

.lp-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.lp-feature-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.65;
}*/

/* ── How It Works ───────────────────────────────── */
/*.lp-how {
    background: white;
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

    .lp-steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(12.5% + 28px);
        right: calc(12.5% + 28px);
        height: 2px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
        z-index: 0;
    }

.lp-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.lp-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
}

.lp-step-desc {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.6;
}*/

/* ── Modules ────────────────────────────────────── */
/*.lp-modules {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%);
    position: relative;
    overflow: hidden;
}

    .lp-modules .lp-section-tag {
        color: #a5b4fc;
    }

    .lp-modules .lp-section-title {
        color: white;
    }

    .lp-modules .lp-section-subtitle {
        color: rgba(255,255,255,0.6);
    }

.lp-modules-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(99,102,241,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139,92,246,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.lp-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.lp-module-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.25s ease;
    cursor: default;
}

    .lp-module-card:hover {
        background: rgba(99, 102, 241, 0.2);
        border-color: rgba(99, 102, 241, 0.5);
        transform: translateY(-4px);
    }

.lp-module-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.lp-module-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.lp-module-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}*/

/* ── Why Choose ─────────────────────────────────── */
/*.lp-why {
    background: #fafafa;
}

.lp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lp-why-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    margin-top: 0.1rem;
}

.lp-why-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}

.lp-why-text p {
    font-size: 0.86rem;
    color: #6b7280;
    line-height: 1.6;
}

.lp-why-visual {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.35);
}

.lp-why-visual-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lp-accounting-flow {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.lp-flow-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.lp-flow-item-name {
    font-weight: 600;
}

.lp-flow-item-amount {
    font-weight: 700;
    font-size: 0.95rem;
}

.lp-flow-item-debit { color: #fca5a5; }
.lp-flow-item-credit { color: #86efac; }

.lp-flow-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 0.25rem 0;
}

.lp-flow-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
}*/

/* ── CTA ────────────────────────────────────────── */
/*.lp-cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    padding: 5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .lp-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%), radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
        pointer-events: none;
    }

.lp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.lp-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.lp-cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.lp-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}*/

/* ── Footer ─────────────────────────────────────── */
/*.lp-footer {
    background: #0f0c29;
    padding: 3rem 2.5rem 2rem;
    color: rgba(255,255,255,0.5);
}

.lp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.lp-footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

    .lp-footer-links a {
        color: rgba(255,255,255,0.45);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.15s;
    }

        .lp-footer-links a:hover {
            color: white;
        }

.lp-footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}*/

/* ── Responsive ─────────────────────────────────── */
/*@media (max-width: 1024px) {
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-modules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .lp-navbar { padding: 0 1.25rem; }

    .lp-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-hero-subtitle { max-width: 100%; }
    .lp-hero-actions { justify-content: center; }
    .lp-hero-stats { justify-content: center; }
    .lp-hero-visual { display: none; }

    .lp-steps { grid-template-columns: repeat(2, 1fr); }
    .lp-steps::before { display: none; }

    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-modules-grid { grid-template-columns: repeat(2, 1fr); }

    .lp-why-grid { grid-template-columns: 1fr; }
    .lp-why-visual { display: none; }

    .lp-section { padding: 3.5rem 1.25rem; }
    .lp-cta { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
    .lp-modules-grid { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-hero-stats { flex-direction: column; gap: 1rem; }
    .lp-brand-name { display: none; }
}*/
