/**
 * GST Bharo - Premium Fintech Landing Theme
 * Theme tokens: style.css (:root)
 */

/* Landing page - 90% viewport width */
.landing-page {
    --lp-stats-half: 5rem;
    --lp-tint-navy: #071B4D;
    --lp-tint-royal: #0A2A7A;
    --lp-tint-blue: #3B82F6;
    overflow-x: hidden;
}
.landing-page .container {
    width: 90%;
    max-width: 90%;
}

/* Navbar — same layout on all guest pages (landing, static, login) */
.guest-body .guest-shell {
    width: 90%;
    max-width: 1140px;
}
.guest-body .guest-navbar {
    background: rgba(7, 26, 61, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-left: 0;
    padding-right: 0;
}
.guest-body .guest-navbar .guest-navbar-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 150px;
    padding-right: 100px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "brand nav actions"
        "mobile mobile mobile";
    align-items: center;
    gap: 1rem 1.5rem;
    position: relative;
}
.guest-body .guest-brand {
    grid-area: brand;
    justify-self: start;
}
.guest-body .guest-nav-desktop {
    grid-area: nav;
    justify-self: center;
}
.guest-body .guest-nav-actions {
    grid-area: actions;
    justify-self: end;
}
.guest-body .guest-nav-toggle {
    display: none;
}
.guest-body .guest-nav-mobile {
    grid-area: mobile;
}
@media (max-width: 991px) {
    .guest-body .guest-navbar .guest-navbar-inner {
        grid-template-columns: 1fr auto auto;
        grid-template-areas:
            "brand actions toggle"
            "mobile mobile mobile";
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .guest-body .guest-nav-desktop {
        display: none !important;
    }
    .guest-body .guest-nav-toggle {
        display: inline-flex;
        grid-area: toggle;
        justify-self: end;
    }
    .guest-body .guest-nav-actions {
        justify-self: end;
    }
    .guest-nav-mobile {
        width: 100%;
        background: rgba(7, 26, 61, 0.95);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.25rem;
        backdrop-filter: blur(20px);
    }
    .guest-nav-mobile .guest-nav-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .guest-nav-mobile-actions {
        padding-top: 0.75rem;
    }
}
@media (min-width: 992px) {
    .guest-body .guest-nav-collapse {
        grid-column: 2;
        display: flex !important;
        align-items: center;
        gap: 2rem;
    }
}
.guest-nav-center {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.guest-nav-link.active {
    color: #fff;
    font-weight: 600;
}

/* â”€â”€â”€ Shared utilities â”€â”€â”€ */
.lp-gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-gradient-text-inline {
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-pulse {
    width: 8px; height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    display: inline-block;
    animation: lpPulse 2s infinite;
    flex-shrink: 0;
}
.lp-pulse.sm { width: 6px; height: 6px; }
@keyframes lpPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.lp-pulse-text { color: var(--emerald); font-size: 0.75rem; display: flex; align-items: center; gap: 6px; }

/* â”€â”€â”€ Buttons â”€â”€â”€ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border: none;
    cursor: pointer;
}
.lp-btn-primary {
    background: var(--gradient-btn);
    color: #fff !important;
    box-shadow: 0 4px 24px rgba(59,130,246,0.45), 0 0 40px rgba(59,130,246,0.15);
}
.lp-btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(59,130,246,0.55), 0 0 60px rgba(59,130,246,0.2);
    color: #fff !important;
}
.lp-btn-glass {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}
.lp-btn-glass:hover {
    background: rgba(255,255,255,0.14);
    transform: scale(1.03);
    color: #fff !important;
}
.lp-btn.lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* â”€â”€â”€ Hero â”€â”€â”€ */
.lp-hero {
    background: var(--gradient-hero-radial);
    padding: 3rem 0 calc(var(--lp-stats-half) + 4.5rem);
    margin-top: -73px;
    padding-top: calc(3rem + 73px);
    position: relative;
    overflow: visible;
    z-index: 1;
}
.lp-hero .container > .row {
    margin-bottom: 0;
    align-items: center;
}
@media (min-width: 992px) {
    .lp-hero .container > .row {
        align-items: flex-start;
    }
}
.lp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.lp-hero > .container {
    position: relative;
    z-index: 2;
}
.lp-orb-1 {
    width: 600px; height: 600px;
    background: rgba(59,130,246,0.15);
    top: -20%; right: -5%;
    animation: lpFloat 10s ease-in-out infinite;
}
.lp-orb-2 {
    width: 400px; height: 400px;
    background: rgba(6,182,212,0.1);
    bottom: 20%; left: -10%;
    animation: lpFloat 12s ease-in-out infinite reverse;
}
.lp-orb-3 {
    width: 300px; height: 300px;
    background: rgba(99,102,241,0.12);
    top: 40%; right: 30%;
    animation: lpFloat 8s ease-in-out infinite;
}
@keyframes lpFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}
.lp-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 75%);
}
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.22);
    color: #6ee7b7;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}
.lp-hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    text-align: left;
}
.lp-hero-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 2rem;
    font-weight: 500;
}
.lp-hero-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}
.lp-btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.9) !important;
    border: none;
    padding: 0.5rem 0;
    font-weight: 600;
    font-size: 0.95rem;
}
.lp-btn-demo:hover { color: #fff !important; transform: none; box-shadow: none; }
.lp-play-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    padding-left: 3px;
    transition: border-color 300ms, background 300ms;
}
.lp-btn-demo:hover .lp-play-icon {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
}
.lp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 0.25rem;
}
.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    font-weight: 500;
}
.lp-trust-item i { color: var(--emerald); font-size: 0.85rem; }

/* â”€â”€â”€ Mission Control panel â”€â”€â”€ */
/* Hero visual — GSTR-1 illustration */
.lp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
}
.lp-hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    max-height: min(52vh, 500px);
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.4));
    animation: lpHeroImageFloat 7s ease-in-out infinite;
}
@media (min-width: 992px) {
    .lp-hero-image {
        margin-left: auto;
        margin-right: 0;
    }
}
@keyframes lpHeroImageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Mission Control panel (legacy — preview sections) */
.lp-glow-ring {
    position: absolute;
    inset: -30px -20px;
    background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, transparent 65%);
    border-radius: var(--radius-xl);
    pointer-events: none;
}
.mc-panel {
    position: relative;
    background: rgba(10, 22, 48, 0.75);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,
                0 32px 80px rgba(0,0,0,0.45),
                0 0 80px rgba(59,130,246,0.12);
}
.mc-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
}
.mc-panel-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}
.mc-panel-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mc-fy-select {
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 5px 10px;
    border-radius: 8px;
}
.mc-fy-select i { font-size: 0.6rem; margin-left: 4px; }
.mc-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border: 2px solid rgba(255,255,255,0.15);
}
.mc-panel-body { display: flex; min-height: 340px; }
.mc-sidebar {
    width: 52px;
    background: rgba(5,15,36,0.6);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.mc-side-logo {
    width: 32px; height: 32px;
    background: var(--gradient-btn);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.75rem;
    margin-bottom: 6px;
}
.mc-side-btn {
    width: 34px; height: 34px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 200ms;
    display: flex; align-items: center; justify-content: center;
}
.mc-side-btn:hover, .mc-side-btn.active {
    background: rgba(59,130,246,0.2);
    color: #60a5fa;
}
.mc-main {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}
.mc-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.mc-kpi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px 12px;
}
.mc-kpi-label {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 0.62rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.mc-kpi-val {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.mc-kpi-trend {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    margin-top: 3px;
}
.mc-kpi-trend.up { color: #34d399; }
.mc-kpi-trend.good { color: #60a5fa; }
.mc-kpi-trend.up i { font-size: 0.5rem; }
.mc-lower {
    display: flex;
    gap: 10px;
    flex: 1;
    min-height: 0;
}
.mc-chart-box {
    flex: 1.4;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
}
.mc-chart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.mc-chart-head span:first-child {
    color: rgba(255,255,255,0.55);
    font-size: 0.68rem;
    font-weight: 600;
}
.mc-chart-badge {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 50px;
}
.mc-line-chart {
    width: 100%;
    flex: 1;
    min-height: 70px;
}
.mc-chart-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: mcDrawLine 2s ease forwards 0.3s;
}
.mc-chart-dot {
    opacity: 0;
    animation: mcDotIn 0.4s ease forwards 2s;
}
.mc-chart-tooltip { opacity: 0; animation: mcDotIn 0.4s ease forwards 2.2s; }
@keyframes mcDotIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes mcDrawLine { to { stroke-dashoffset: 0; } }
.mc-activity {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px;
    min-width: 0;
}
.mc-activity-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.55);
    font-size: 0.68rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.mc-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mc-activity-item:last-child { border-bottom: none; }
.mc-act-icon {
    width: 22px; height: 22px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem;
    color: #fff;
    flex-shrink: 0;
}
.mc-act-icon.green { background: rgba(16,185,129,0.25); color: #34d399; }
.mc-act-icon.blue { background: rgba(59,130,246,0.25); color: #60a5fa; }
.mc-act-icon.purple { background: rgba(139,92,246,0.25); color: #c4b5fd; }
.mc-activity-item strong {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.3;
}
.mc-activity-item small {
    color: rgba(255,255,255,0.35);
    font-size: 0.55rem;
}

/* â”€â”€â”€ Hero stats bar (inside hero) â”€â”€â”€ */

.lp-stats-bridge {
    position: relative;
    z-index: 20;
    margin-top: calc(-1 * var(--lp-stats-half));
    margin-bottom: calc(-1 * var(--lp-stats-half));
    pointer-events: none;
}
.lp-stats-bridge .container {
    pointer-events: none;
}
.lp-stats-bridge .lp-hero-stats {
    pointer-events: auto;
    margin: 0;
}

.lp-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(7, 26, 61, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 24px 64px rgba(0, 0, 0, 0.35),
        0 12px 40px rgba(7, 26, 61, 0.25);
    position: relative;
    z-index: 10;
}
.lp-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 1.5rem 1.25rem;
    background: transparent;
    transition: background 300ms;
}
.lp-hero-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-hero-stat:hover {
    background: rgba(255, 255, 255, 0.04);
}
.lp-hs-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.lp-hs-icon.emerald { background: rgba(16, 185, 129, 0.18); color: #34d399; }
.lp-hs-icon.purple { background: rgba(139, 92, 246, 0.18); color: #a78bfa; }
.lp-hs-icon.blue { background: rgba(59, 130, 246, 0.18); color: #60a5fa; }
.lp-hs-icon.cyan { background: rgba(6, 182, 212, 0.18); color: #22d3ee; }
.lp-hs-val {
    display: block;
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.lp-hs-lbl {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
}

/* legacy stats - keep for JS compat if needed */
.lp-stats-glass { display: none; }

@keyframes lpFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.lp-status-chip {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
}
.lp-status-chip.success { background: rgba(16,185,129,0.15); color: #34d399; }
.lp-status-chip.active { background: rgba(59,130,246,0.2); color: #60a5fa; }
.lp-section-light .lp-status-chip {
    background: rgba(15,23,42,0.06);
    color: var(--text-secondary);
}
.lp-section-light .lp-status-chip.success { background: #ECFDF5; color: var(--emerald); }
.lp-section-light .lp-status-chip.active { background: #EFF6FF; color: var(--blue-electric); }

/* â”€â”€â”€ Sections â”€â”€â”€ */
#timeline {
    padding-top: calc(6rem + var(--lp-stats-half));
    position: relative;
    z-index: 0;
    background: #ffffff;
}
.lp-section { padding: 6rem 0; background: #ffffff; }
.lp-section-light { background: #ffffff; }

/* Blue-tinted section atmosphere (shared) */
.lp-section-blue {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(7, 27, 77, 0.03) 0%,
        rgba(10, 42, 122, 0.06) 45%,
        rgba(59, 130, 246, 0.04) 100%
    );
}
.lp-section-blue--soft {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(10, 42, 122, 0.05) 50%,
        rgba(59, 130, 246, 0.04) 100%
    );
}
.lp-section-atmos,
.lp-features-bg,
.lp-journey-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.lp-section-atmos::before,
.lp-features-bg::before,
.lp-journey-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(7, 27, 77, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 27, 77, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 15%, transparent 75%);
    opacity: 0.55;
}
.lp-section-atmos::after,
.lp-features-bg::after,
.lp-journey-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.lp-section-atmos::after,
.lp-features-bg::after {
    width: 520px;
    height: 520px;
    background: rgba(59, 130, 246, 0.14);
    top: -18%;
    right: -8%;
}
.lp-journey-bg::after {
    width: 420px;
    height: 420px;
    background: rgba(10, 42, 122, 0.12);
    bottom: -12%;
    left: -6%;
}
.lp-section-blue .container,
.lp-features-section .container,
.lp-journey-section .container {
    position: relative;
    z-index: 1;
}

/* White cards — soft blue shadows on landing */
.landing-page .lp-feature-card,
.landing-page .lp-journey-card,
.landing-page .lp-ba-card,
.landing-page .lp-testimonial-card,
.landing-page .lp-card {
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.1);
    box-shadow:
        0 4px 20px rgba(7, 27, 77, 0.05),
        0 12px 36px rgba(59, 130, 246, 0.08);
}
.landing-page .lp-feature-card:hover,
.landing-page .lp-journey-card:hover,
.landing-page .lp-ba-card:hover,
.landing-page .lp-testimonial-card:hover,
.landing-page .lp-card:hover {
    box-shadow:
        0 8px 28px rgba(7, 27, 77, 0.07),
        0 20px 48px rgba(59, 130, 246, 0.12);
}
/* legacy — no longer used on landing; kept for compatibility */
.lp-section-dark {
    background: var(--gradient-hero-radial);
    position: relative;
    overflow: hidden;
}
.lp-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.lp-section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.lp-section-head.light h2, .lp-section-head.light p { color: #fff; }
.lp-section-head.light p { opacity: 0.7; }
.lp-section-head h2, .lp-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-align: center;
}
.lp-section-title { text-align: left; }
.lp-section-head p, .lp-body-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
}
.lp-body-text { text-align: left; margin-bottom: 1.5rem; }
.lp-tag {
    display: inline-block;
    background: #EFF6FF;
    color: var(--blue-electric);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.lp-tag.glass {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.15);
}

/* â”€â”€â”€ Features section (premium bento grid) â”€â”€â”€ */
.lp-features-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(7, 27, 77, 0.04) 0%,
        rgba(10, 42, 122, 0.07) 50%,
        rgba(59, 130, 246, 0.05) 100%
    );
}
.lp-features-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.lp-features-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(7, 27, 77, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 27, 77, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 20%, black 15%, transparent 75%);
    opacity: 0.55;
}
.lp-features-bg::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    filter: blur(100px);
    background: rgba(59, 130, 246, 0.16);
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-feature-card {
    position: relative;
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 28px;
    padding: 1.75rem 1.75rem 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    box-shadow:
        0 4px 20px rgba(7, 27, 77, 0.05),
        0 12px 36px rgba(59, 130, 246, 0.08);
    transition: transform 300ms cubic-bezier(0.4,0,0.2,1),
                box-shadow 300ms,
                border-color 300ms;
}
.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 28px 28px 0 0;
    opacity: 0.9;
}
.lp-feature-card.accent-blue::before { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.lp-feature-card.accent-green::before { background: linear-gradient(90deg, #10B981, #34D399); }
.lp-feature-card.accent-purple::before { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
.lp-feature-card.accent-cyan::before { background: linear-gradient(90deg, #06B6D4, #22D3EE); }
.lp-feature-card.accent-amber::before { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.lp-feature-card.accent-indigo::before { background: linear-gradient(90deg, #6366F1, #818CF8); }

.lp-feature-card-shine {
    position: absolute;
    top: -50%; right: -30%;
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 300ms;
    pointer-events: none;
}
.lp-feature-card.accent-blue .lp-feature-card-shine { background: rgba(59,130,246,0.15); }
.lp-feature-card.accent-green .lp-feature-card-shine { background: rgba(16,185,129,0.15); }
.lp-feature-card.accent-purple .lp-feature-card-shine { background: rgba(139,92,246,0.15); }
.lp-feature-card.accent-cyan .lp-feature-card-shine { background: rgba(6,182,212,0.15); }
.lp-feature-card.accent-amber .lp-feature-card-shine { background: rgba(245,158,11,0.15); }
.lp-feature-card.accent-indigo .lp-feature-card-shine { background: rgba(99,102,241,0.15); }

.lp-feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow:
        0 8px 28px rgba(7, 27, 77, 0.07),
        0 20px 48px rgba(59, 130, 246, 0.12);
}
.lp-feature-card.accent-blue:hover { box-shadow: 0 20px 50px rgba(59,130,246,0.12); }
.lp-feature-card.accent-green:hover { box-shadow: 0 20px 50px rgba(16,185,129,0.12); }
.lp-feature-card.accent-purple:hover { box-shadow: 0 20px 50px rgba(139,92,246,0.12); }
.lp-feature-card.accent-cyan:hover { box-shadow: 0 20px 50px rgba(6,182,212,0.12); }
.lp-feature-card.accent-amber:hover { box-shadow: 0 20px 50px rgba(245,158,11,0.12); }
.lp-feature-card.accent-indigo:hover { box-shadow: 0 20px 50px rgba(99,102,241,0.12); }
.lp-feature-card:hover .lp-feature-card-shine { opacity: 1; }
.lp-feature-card:hover .lp-feature-link { opacity: 1; transform: translateX(0); }
.lp-feature-card:hover .lp-feature-link i { transform: translateX(4px); }

.lp-feature-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.lp-feature-icon-wrap { position: relative; }
.lp-feature-icon {
    width: 52px; height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.lp-feature-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    opacity: 0.35;
    filter: blur(8px);
    z-index: 0;
}
.lp-feature-card.accent-blue .lp-feature-icon { background: linear-gradient(135deg, var(--blue-electric), var(--indigo)); }
.lp-feature-card.accent-blue .lp-feature-icon-wrap::after { background: #3B82F6; }
.lp-feature-card.accent-green .lp-feature-icon { background: linear-gradient(135deg, #10B981, #059669); }
.lp-feature-card.accent-green .lp-feature-icon-wrap::after { background: #10B981; }
.lp-feature-card.accent-purple .lp-feature-icon { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.lp-feature-card.accent-purple .lp-feature-icon-wrap::after { background: #8B5CF6; }
.lp-feature-card.accent-cyan .lp-feature-icon { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.lp-feature-card.accent-cyan .lp-feature-icon-wrap::after { background: #06B6D4; }
.lp-feature-card.accent-amber .lp-feature-icon { background: linear-gradient(135deg, #F59E0B, #D97706); }
.lp-feature-card.accent-amber .lp-feature-icon-wrap::after { background: #F59E0B; }
.lp-feature-card.accent-indigo .lp-feature-icon { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.lp-feature-card.accent-indigo .lp-feature-icon-wrap::after { background: #6366F1; }

.lp-feature-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 50px;
    background: var(--bg-soft);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.lp-feature-card.accent-blue .lp-feature-label { background: #EFF6FF; color: var(--blue-electric); border-color: #BFDBFE; }
.lp-feature-card.accent-green .lp-feature-label { background: #ECFDF5; color: #059669; border-color: #A7F3D0; }
.lp-feature-card.accent-purple .lp-feature-label { background: #F5F3FF; color: #7C3AED; border-color: #DDD6FE; }
.lp-feature-card.accent-cyan .lp-feature-label { background: #ECFEFF; color: #0891B2; border-color: #A5F3FC; }
.lp-feature-card.accent-amber .lp-feature-label { background: #FFFBEB; color: #D97706; border-color: #FDE68A; }
.lp-feature-card.accent-indigo .lp-feature-label { background: #EEF2FF; color: #4F46E5; border-color: #C7D2FE; }

.lp-feature-card h5 {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}
.lp-feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    flex: 1;
    position: relative;
    z-index: 1;
}
.lp-feature-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226,232,240,0.8);
    position: relative;
    z-index: 1;
}
.lp-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-electric);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 300ms, transform 300ms;
}
.lp-feature-link i {
    font-size: 0.72rem;
    transition: transform 300ms;
}
.lp-feature-card.accent-green .lp-feature-link { color: #059669; }
.lp-feature-card.accent-purple .lp-feature-link { color: #7C3AED; }
.lp-feature-card.accent-cyan .lp-feature-link { color: #0891B2; }
.lp-feature-card.accent-amber .lp-feature-link { color: #D97706; }
.lp-feature-card.accent-indigo .lp-feature-link { color: #4F46E5; }

/* â”€â”€â”€ Cards (testimonials etc.) â”€â”€â”€ */
.lp-card {
    background: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow:
        0 4px 20px rgba(7, 27, 77, 0.05),
        0 12px 36px rgba(59, 130, 246, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.lp-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 28px rgba(7, 27, 77, 0.07),
        0 20px 48px rgba(59, 130, 246, 0.12);
}
.lp-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: #fff;
    margin-bottom: 1.25rem;
}
.lp-card-icon.blue { background: linear-gradient(135deg, var(--blue-electric), var(--indigo)); }
.lp-card-icon.green { background: linear-gradient(135deg, #10B981, #059669); }
.lp-card-icon.purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.lp-card-icon.cyan { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.lp-card-icon.amber { background: linear-gradient(135deg, #F59E0B, #D97706); }
.lp-card-icon.indigo { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.lp-card h5 { font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; font-size: 1.05rem; }
.lp-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; margin: 0; font-weight: 500; }

/* â”€â”€â”€ Timeline â”€â”€â”€ */
.lp-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.lp-tl-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    position: relative;
}
.lp-tl-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 2;
    background: var(--bg-soft);
    border: 2px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}
.lp-tl-step.done .lp-tl-icon { background: #ECFDF5; border-color: var(--emerald); color: var(--emerald); }
.lp-tl-step.active .lp-tl-icon {
    background: #EFF6FF;
    border-color: var(--blue-electric);
    color: var(--blue-electric);
    box-shadow: 0 0 20px rgba(59,130,246,0.2);
}
.lp-tl-content { flex: 1; padding-top: 4px; }
.lp-tl-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.35rem; }
.lp-tl-top strong { color: var(--text-primary); font-size: 0.95rem; }
.lp-tl-content p { color: var(--text-secondary); font-size: 0.85rem; margin: 0 0 0.25rem; }
.lp-tl-content small { color: var(--text-secondary); font-size: 0.75rem; opacity: 0.7; }
.lp-tl-connector {
    position: absolute;
    left: 23px;
    top: 68px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, var(--emerald), var(--border));
    z-index: 1;
}
.lp-tl-step.active .lp-tl-connector { background: linear-gradient(180deg, var(--blue-electric), var(--border)); }
.lp-tl-step.pending .lp-tl-connector { background: var(--border); }

/* Timeline & features — scroll-triggered section animations */
@keyframes lpSectionHeadIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes lpTimelineStepIn {
    from { opacity: 0; transform: translateX(-32px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes lpTimelineConnectorDraw {
    from { transform: scaleY(0); opacity: 0.35; }
    to { transform: scaleY(1); opacity: 1; }
}
@keyframes lpTimelineIconPop {
    from { transform: scale(0.75); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@keyframes lpTimelineActivePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35); }
    50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
}
@keyframes lpFeatureCardIn {
    from { opacity: 0; transform: translateY(48px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lpFeatureIconPop {
    from { transform: scale(0.55) rotate(-8deg); opacity: 0; }
    to { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes lpFeatureShineSweep {
    0% { opacity: 0; transform: translateX(-80%) scale(0.85); }
    45% { opacity: 0.4; }
    100% { opacity: 0.12; transform: translateX(0) scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
    #timeline:not(.lp-section-animated) .lp-section-head,
    #timeline:not(.lp-section-animated) .lp-tl-step {
        opacity: 0;
    }
    #timeline:not(.lp-section-animated) .lp-tl-connector {
        transform: scaleY(0);
        opacity: 0;
    }

    #timeline.lp-section-animated .lp-section-head {
        animation: lpSectionHeadIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    #timeline.lp-section-animated .lp-tl-step {
        animation: lpTimelineStepIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-delay: calc(0.35s + var(--step-index, 0) * 0.16s);
    }
    #timeline.lp-section-animated .lp-tl-content {
        animation: lpSectionHeadIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-delay: calc(0.5s + var(--step-index, 0) * 0.16s);
    }
    #timeline:not(.lp-section-animated) .lp-tl-content {
        opacity: 0;
    }
    #timeline.lp-section-animated .lp-tl-connector {
        transform-origin: top center;
        animation: lpTimelineConnectorDraw 0.45s ease-out forwards;
        animation-delay: calc(0.6s + var(--step-index, 0) * 0.16s);
    }
    #timeline.lp-section-animated .lp-tl-step.active .lp-tl-icon {
        animation: lpTimelineActivePulse 2.2s ease-in-out infinite;
        animation-delay: calc(1.05s + var(--step-index, 0) * 0.16s);
    }

    .lp-features-section:not(.lp-section-animated) .lp-section-head,
    .lp-features-section:not(.lp-section-animated) .lp-feature-card {
        opacity: 0;
    }

    .lp-features-section.lp-section-animated .lp-section-head {
        animation: lpSectionHeadIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .lp-features-section.lp-section-animated .lp-feature-card {
        animation: lpFeatureCardIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-delay: calc(0.3s + var(--card-index, 0) * 0.14s);
    }
    .lp-features-section.lp-section-animated .lp-feature-card .lp-feature-icon {
        animation: lpFeatureIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        animation-delay: calc(0.45s + var(--card-index, 0) * 0.14s);
    }
    .lp-features-section.lp-section-animated .lp-feature-card::before {
        transform: scaleX(0);
        transform-origin: left center;
        animation: lpFeatureBarGrow 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-delay: calc(0.38s + var(--card-index, 0) * 0.14s);
    }
    .lp-features-section.lp-section-animated .lp-feature-card .lp-feature-card-shine {
        animation: lpFeatureShineSweep 0.85s ease forwards;
        animation-delay: calc(0.65s + var(--card-index, 0) * 0.14s);
    }
}

@keyframes lpFeatureBarGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.lp-preview-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
}
.lp-preview-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}
.lp-preview-nav {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
    overflow-x: auto;
}
.lp-preview-tab {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
}
.lp-preview-tab.active, .lp-preview-tab:hover {
    background: var(--white);
    border-color: var(--border);
    color: var(--navy-deep);
    box-shadow: 0 2px 10px rgba(7,26,61,0.06);
}
.lp-preview-tab.active {
    border-color: rgba(59,130,246,0.25);
    color: var(--blue-electric);
}
.lp-preview-screen { padding: 2.5rem; min-height: 280px; position: relative; background: var(--white); }
.lp-preview-pane {
    display: none;
    text-align: center;
    animation: lpFadeIn 0.4s ease;
}
.lp-preview-pane.active { display: block; }
.lp-pp-icon {
    width: 64px; height: 64px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--blue-electric); font-size: 1.5rem;
}
.lp-preview-pane h4 { color: var(--text-primary); font-weight: 700; margin-bottom: 0.5rem; }
.lp-preview-pane p { color: var(--text-secondary); font-size: 0.9rem; max-width: 400px; margin: 0 auto 1.5rem; }
.lp-pp-mock { max-width: 320px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.lp-pp-bar { height: 8px; background: linear-gradient(90deg, var(--blue-electric), var(--indigo)); border-radius: 4px; opacity: 0.35; }

/* â”€â”€â”€ AI Chat â”€â”€â”€ */
.lp-check-list { list-style: none; padding: 0; margin: 0; }
.lp-check-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}
.lp-check-list i { color: var(--emerald); font-size: 0.85rem; }
.lp-chat-mock {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
.lp-chat-header {
    display: flex; align-items: center; gap: 12px;
    padding: 1rem 1.25rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.lp-chat-avatar {
    width: 40px; height: 40px;
    background: var(--gradient-btn);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
}
.lp-chat-header strong { display: block; color: var(--text-primary); font-size: 0.9rem; }
.lp-chat-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 12px; min-height: 240px; }
.lp-chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 500;
}
.lp-chat-msg.bot {
    background: var(--bg-soft);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.lp-chat-msg.user {
    background: var(--gradient-btn);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.lp-chat-msg code { background: rgba(59,130,246,0.1); padding: 1px 6px; border-radius: 4px; font-size: 0.8rem; }
.lp-chat-typing { display: flex; gap: 4px; padding: 8px 14px; align-self: flex-start; }
.lp-chat-typing span {
    width: 6px; height: 6px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: lpTyping 1.2s infinite;
    opacity: 0.4;
}
.lp-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.lp-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes lpTyping { 0%, 100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-4px); } }
.lp-chat-input {
    display: flex;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    gap: 8px;
}
.lp-chat-input input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 0;
    background: var(--bg-soft);
}
.lp-chat-input button {
    width: 44px; height: 44px;
    background: var(--gradient-btn);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
}

/* â”€â”€â”€ Journey section (premium dark) â”€â”€â”€ */
.lp-journey-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.lp-journey-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.lp-journey-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 45% at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(10, 42, 122, 0.06) 0%, transparent 50%);
}
.lp-journey-bg::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(80px);
    background: rgba(59, 130, 246, 0.1);
    top: 10%;
    right: -5%;
    pointer-events: none;
}
.lp-journey-section .lp-section-head h2 {
    color: var(--text-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.lp-journey-section .lp-section-head p {
    color: var(--text-secondary);
}

.lp-journey-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    padding-top: 2rem;
}
.lp-journey-progress {
    position: absolute;
    top: 2.65rem;
    left: 12%;
    right: 12%;
    height: 3px;
    background: var(--border);
    border-radius: 4px;
    z-index: 0;
    overflow: hidden;
}
.lp-journey-progress-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--blue-electric), var(--indigo), var(--emerald));
    border-radius: 4px;
    transform-origin: left;
    animation: lpJourneyFill 2.5s ease-out forwards;
    opacity: 0.85;
}
@keyframes lpJourneyFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.lp-journey-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp-js-marker {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 2;
}
.lp-js-num {
    width: 40px; height: 40px;
    background: var(--gradient-btn);
    color: #fff;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(59,130,246,0.2), 0 8px 20px rgba(7,26,61,0.12);
    position: relative;
    z-index: 2;
}
.lp-journey-step[data-step="2"] .lp-js-num {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(139,92,246,0.2), 0 8px 20px rgba(7,26,61,0.12);
}
.lp-journey-step[data-step="3"] .lp-js-num {
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(16,185,129,0.2), 0 8px 20px rgba(7,26,61,0.12);
}
.lp-js-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(59,130,246,0.4);
    animation: lpJsPulse 2.5s ease-out infinite;
    opacity: 0;
}
.lp-journey-step[data-step="1"] .lp-js-pulse { animation-delay: 0s; }
.lp-journey-step[data-step="2"] .lp-js-pulse { animation-delay: 0.8s; border-color: rgba(139,92,246,0.4); }
.lp-journey-step[data-step="3"] .lp-js-pulse { animation-delay: 1.6s; border-color: rgba(16,185,129,0.4); }
@keyframes lpJsPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.lp-journey-card {
    width: 100%;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 28px;
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(7, 27, 77, 0.05),
        0 12px 36px rgba(59, 130, 246, 0.08);
    transition: transform 300ms cubic-bezier(0.4,0,0.2,1), box-shadow 300ms, border-color 300ms;
}
.lp-journey-card-glow {
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 300ms;
}
.lp-journey-card.accent-blue .lp-journey-card-glow { background: var(--blue-electric); }
.lp-journey-card.accent-purple .lp-journey-card-glow { background: var(--purple); }
.lp-journey-card.accent-emerald .lp-journey-card-glow { background: var(--emerald); }
.lp-journey-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow:
        0 8px 28px rgba(7, 27, 77, 0.07),
        0 20px 48px rgba(59, 130, 246, 0.12);
}
.lp-journey-card:hover .lp-journey-card-glow { opacity: 0.2; }

.lp-journey-card .lp-js-icon {
    width: 64px; height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.35rem;
    position: relative;
    z-index: 1;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lp-journey-card.accent-blue .lp-js-icon { background: var(--gradient-btn); }
.lp-journey-card.accent-purple .lp-js-icon { background: linear-gradient(135deg, var(--purple), var(--indigo)); }
.lp-journey-card.accent-emerald .lp-js-icon { background: linear-gradient(135deg, var(--emerald), #059669); }

.lp-journey-card h5 {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
}
.lp-journey-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.35rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.lp-js-time-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--blue-electric);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.lp-journey-card.accent-purple .lp-js-time-pill { color: var(--purple); }
.lp-journey-card.accent-emerald .lp-js-time-pill { color: var(--emerald); }
.lp-js-time-pill i { font-size: 0.72rem; opacity: 0.8; }

.lp-journey-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
    text-align: center;
}
.lp-journey-total {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-card);
}
.lp-journey-total i { color: var(--amber); }
.lp-journey-total strong { color: var(--navy-deep); font-weight: 800; }

/* â”€â”€â”€ Integrations â”€â”€â”€ */
.lp-int-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}
.lp-int-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 130px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}
.lp-int-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue-electric);
}
.lp-int-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.2rem;
}
.lp-int-icon.blue { background: #EFF6FF; color: var(--blue-electric); }
.lp-int-icon.green { background: #ECFDF5; color: var(--emerald); }
.lp-int-icon.purple { background: #F5F3FF; color: var(--purple); }
.lp-int-icon.amber { background: #FFFBEB; color: var(--amber); }
.lp-int-card span { font-weight: 700; color: var(--text-primary); font-size: 0.9rem; }

/* â”€â”€â”€ Before / After â”€â”€â”€ */
.lp-ba-card {
    background: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow:
        0 4px 20px rgba(7, 27, 77, 0.05),
        0 12px 36px rgba(59, 130, 246, 0.08);
    text-align: center;
    height: 100%;
}
.lp-ba-card h6 { color: var(--text-secondary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.25rem; font-weight: 600; }
.lp-ba-row { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.lp-ba-before small, .lp-ba-after small { display: block; color: var(--text-secondary); font-size: 0.7rem; margin-bottom: 0.25rem; }
.lp-ba-before strong { color: #ef4444; font-size: 1.25rem; font-weight: 800; }
.lp-ba-after strong { color: var(--emerald); font-size: 1.25rem; font-weight: 800; }
.lp-ba-arrow { color: var(--text-secondary); }
.lp-ba-change {
    display: inline-block;
    background: #ECFDF5;
    color: var(--emerald);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 50px;
}

/* â”€â”€â”€ Testimonials â”€â”€â”€ */
#testimonials .row { align-items: stretch; }
#testimonials .col-md-4 { display: flex; }
.lp-testimonial-card .lp-stars {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    color: var(--amber);
    font-size: 0.9rem;
    margin-bottom: 1.15rem;
    letter-spacing: 0.05em;
}
.lp-testimonial-card .lp-stars i { flex-shrink: 0; }
.lp-testimonial-card {
    padding: 1.75rem 1.75rem 1.5rem;
    border-radius: 20px;
    gap: 0;
}
.lp-testimonial-card .lp-t-quote,
.lp-testimonial-card > p {
    flex: 1;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 0 1.5rem;
    font-weight: 500;
}
.lp-t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.lp-t-avatar {
    width: 46px;
    height: 46px;
    background: var(--gradient-btn);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.lp-t-meta { min-width: 0; text-align: left; }
.lp-t-meta strong,
.lp-t-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 2px;
}
.lp-t-meta span,
.lp-t-author span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Final CTA — soft blue bridge into footer (footer stays fully dark) */
.lp-cta-final {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.lp-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
}
.lp-cta-orb {
    position: absolute;
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.lp-cta-box {
    text-align: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.lp-cta-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--blue-electric);
    font-size: 1.5rem;
}
.lp-cta-box h2 {
    color: var(--navy-deep);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.lp-cta-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* â”€â”€â”€ Sticky CTA â”€â”€â”€ */
.lp-sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-btn);
    color: #fff !important;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none !important;
    box-shadow: 0 8px 32px rgba(59,130,246,0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}
.lp-sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}
.lp-sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(59,130,246,0.6);
    color: #fff !important;
}

/* â”€â”€â”€ Footer (landing) â”€â”€â”€ */
.landing-page .guest-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

#success-stories {
    background: #ffffff;
}

/* Extra glow blob on testimonials section */
#testimonials.lp-section-blue::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(90px);
    background: rgba(10, 42, 122, 0.1);
    bottom: -15%;
    left: -8%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   GUEST STATIC PAGES + PREMIUM LOGIN
   ============================================ */
.guest-page .container {
    width: 90%;
    max-width: 1140px;
}

/* Page hero banner */
.gp-hero {
    background: var(--gradient-hero-radial);
    padding: 4rem 0 5rem;
    margin-top: -73px;
    padding-top: calc(4rem + 73px);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.gp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.gp-hero .gp-orb-1 {
    width: 480px;
    height: 480px;
    background: rgba(59, 130, 246, 0.15);
    top: -20%;
    right: -5%;
}
.gp-hero .gp-orb-2 {
    width: 360px;
    height: 360px;
    background: rgba(6, 182, 212, 0.1);
    bottom: -10%;
    left: -8%;
}
.gp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 15%, transparent 75%);
    pointer-events: none;
}
.gp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.22);
    color: #6ee7b7;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.gp-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.gp-hero-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Page sections */
.gp-section {
    padding: 5rem 0;
    position: relative;
}
.gp-section-light {
    background: #ffffff;
}
.gp-section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.gp-heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.gp-text {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1rem;
}

/* Cards */
.gp-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.gp-stat-card {
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
}
.gp-stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    background: #eff6ff;
    color: var(--blue-electric);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.gp-stat-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}
.gp-stat-card span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.gp-value-card,
.gp-perk-card {
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gp-value-card:hover,
.gp-perk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(7, 27, 77, 0.07), 0 20px 48px rgba(59, 130, 246, 0.12);
}
.gp-value-icon,
.gp-perk-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-btn);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}
.gp-value-card h5,
.gp-perk-card h5 {
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}
.gp-value-card p,
.gp-perk-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

.gp-cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(7, 27, 77, 0.04), rgba(59, 130, 246, 0.06));
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 24px;
    padding: 2.5rem 3rem;
}
.gp-cta-inline h3 {
    font-weight: 800;
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
}
.gp-cta-inline p {
    color: var(--text-secondary);
    margin: 0;
}

/* Blog */
.gp-blog-card {
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(7, 27, 77, 0.07), 0 20px 48px rgba(59, 130, 246, 0.12);
}
.gp-blog-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: var(--blue-electric);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}
.gp-blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}
.gp-blog-cat {
    color: var(--blue-electric);
    font-weight: 600;
}
.gp-blog-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.gp-blog-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition);
}
.gp-blog-card h3 a:hover {
    color: var(--blue-electric);
}
.gp-blog-card--compact h3 {
    font-size: 1.05rem;
}
.gp-blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.gp-blog-link {
    color: var(--blue-electric);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.gp-blog-link:hover {
    text-decoration: none;
    color: var(--indigo);
}
.gp-blog-link i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform var(--transition);
}
.gp-blog-card:hover .gp-blog-link i {
    transform: translateX(4px);
}

/* Blog article detail page */
.gp-article-hero {
    background: var(--gradient-hero-radial);
    padding: 4rem 0 3.5rem;
    margin-top: -73px;
    padding-top: calc(4rem + 73px);
    position: relative;
    overflow: hidden;
}
.gp-article-breadcrumb {
    margin-bottom: 1.75rem;
}
.gp-article-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}
.gp-article-breadcrumb a:hover {
    color: #fff;
    text-decoration: none;
}
.gp-article-hero-main {
    max-width: 780px;
}
.gp-article-hero-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.gp-article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
}
.gp-article-hero-meta .gp-blog-cat {
    color: #6ee7b7;
    font-weight: 600;
}
.gp-article-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.gp-article-excerpt {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 640px;
}
.gp-article-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.gp-article-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gp-article-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}
.gp-article-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}
.gp-article-section {
    padding-top: 3.5rem;
}
.gp-article-body {
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
}
.gp-article-block {
    margin-bottom: 2.25rem;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}
.gp-article-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.gp-article-block h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.35;
}
.gp-article-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.gp-article-block p:last-child {
    margin-bottom: 0;
}
.gp-article-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.gp-article-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
}
.gp-article-list li i {
    color: var(--emerald);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.gp-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}
.gp-article-tags > span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 0.25rem;
}
.gp-article-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: #eff6ff;
    color: var(--blue-electric);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.gp-article-tags a:hover {
    background: var(--blue-electric);
    color: #fff;
    text-decoration: none;
}
.gp-article-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(7, 27, 77, 0.03), rgba(59, 130, 246, 0.06));
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 16px;
    flex-wrap: wrap;
}
.gp-article-share > span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}
.gp-article-share-links {
    display: flex;
    gap: 0.65rem;
}
.gp-article-share-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: var(--blue-electric);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.gp-article-share-links a:hover {
    background: var(--gradient-btn);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}
.gp-article-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.gp-article-toc,
.gp-article-cta-card {
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
}
.gp-article-toc h4,
.gp-article-cta-card h4 {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.gp-article-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}
.gp-article-toc li {
    counter-increment: toc;
    margin-bottom: 0.65rem;
}
.gp-article-toc li:last-child {
    margin-bottom: 0;
}
.gp-article-toc a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color var(--transition);
}
.gp-article-toc a::before {
    content: counter(toc);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #eff6ff;
    color: var(--blue-electric);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.gp-article-toc a:hover {
    color: var(--blue-electric);
    text-decoration: none;
}
.gp-article-cta-card {
    background: linear-gradient(135deg, rgba(7, 27, 77, 0.04), rgba(59, 130, 246, 0.08));
}
.gp-article-cta-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-btn);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}
.gp-article-cta-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.gp-article-cta-card .lp-btn {
    width: 100%;
    justify-content: center;
}

.gp-inline-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 520px;
    margin-top: 2rem;
    padding: 0.35rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.18);
    box-shadow: 0 8px 32px rgba(7, 27, 77, 0.08);
    overflow: hidden;
}
.gp-inline-form input,
.gp-inline-form .gp-input {
    flex: 1;
    min-width: 0;
    width: auto !important;
    margin-bottom: 0 !important;
    padding: 0.85rem 1rem;
    border: none !important;
    border-radius: 0 !important;
    font-size: 0.95rem;
    background: transparent !important;
    color: var(--navy-deep, #071B4D);
}
.gp-inline-form input::placeholder {
    color: #94a3b8;
}
.gp-inline-form input:focus,
.gp-inline-form .gp-input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.gp-inline-form .lp-btn {
    flex-shrink: 0;
    width: auto !important;
    justify-content: center;
    white-space: nowrap;
    border-radius: 10px !important;
    padding: 0.85rem 1.5rem !important;
    margin: 0;
}

/* Careers */
.gp-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gp-job-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
    flex-wrap: wrap;
}
.gp-job-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-btn);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gp-job-info {
    flex: 1;
    min-width: 200px;
}
.gp-job-info h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.gp-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.gp-job-tags i {
    color: var(--blue-electric);
    margin-right: 4px;
}

/* Contact */
.gp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.gp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.gp-contact-icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    color: var(--blue-electric);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gp-contact-item small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}
.gp-contact-item strong,
.gp-contact-item a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}
.gp-contact-item a:hover {
    color: var(--blue-electric);
}
.gp-contact-social span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gp-contact-social div {
    display: flex;
    gap: 0.75rem;
}
.gp-contact-social a {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: var(--blue-electric);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.gp-contact-social a:hover {
    background: var(--gradient-btn);
    color: #fff;
}

.gp-form-card {
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
}
.gp-form-card h3 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}
.gp-form-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

/* Shared form controls */
.gp-form-group {
    margin-bottom: 1.25rem;
}
.gp-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}
.gp-input {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.gp-input:focus {
    outline: none;
    border-color: var(--blue-electric);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.gp-input.is-invalid {
    border-color: #ef4444;
}
.gp-textarea {
    resize: vertical;
    min-height: 120px;
}
.gp-input-icon {
    position: relative;
}
.gp-input-icon > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
    z-index: 2;
}
.gp-input-icon .gp-input {
    padding-left: 2.5rem;
}
.gp-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

/* Pricing page */
.gp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}
.gp-pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gp-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(7, 27, 77, 0.07), 0 20px 48px rgba(59, 130, 246, 0.12);
}
.gp-pricing-card.featured {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.18), 0 20px 48px rgba(59, 130, 246, 0.12);
}
.gp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-btn);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
}
.gp-pricing-head h3 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.gp-pricing-head p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    min-height: 2.8em;
}
.gp-pricing-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.gp-pricing-price strong {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}
.gp-pricing-price span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-left: 2px;
}
.gp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex: 1;
}
.gp-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.45rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}
.gp-pricing-features li i {
    color: var(--emerald);
    margin-top: 3px;
    flex-shrink: 0;
}
.gp-pricing-cta {
    width: 100%;
    justify-content: center;
}
.gp-pricing-btn-outline {
    background: #fff !important;
    color: var(--blue-electric) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.35) !important;
    box-shadow: none !important;
}
.gp-pricing-btn-outline:hover {
    background: #eff6ff !important;
    transform: scale(1.02);
    color: var(--blue-electric) !important;
}
.gp-pricing-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.gp-compare-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(7, 27, 77, 0.05), 0 12px 36px rgba(59, 130, 246, 0.08);
}
.gp-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.gp-compare-table th,
.gp-compare-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.gp-compare-table th:first-child,
.gp-compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}
.gp-compare-table thead th {
    background: #f8faff;
    font-weight: 700;
    color: var(--text-primary);
}
.gp-compare-table tbody tr:last-child td {
    border-bottom: none;
}
.gp-compare-no {
    color: #cbd5e1;
}

.gp-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gp-faq-item {
    background: #fff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 16px rgba(7, 27, 77, 0.04);
}
.gp-faq-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.gp-faq-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Login & Register page */
.login-page .guest-main,
.register-page .guest-main,
.forgot-password-page .guest-main,
.reset-password-page .guest-main {
    background: linear-gradient(180deg, #f8faff 0%, #eef2ff 50%, #f8faff 100%);
    padding: 3rem 0 4rem;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 73px);
}
.auth-wrap {
    width: 100%;
}
.auth-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 920px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(7, 27, 77, 0.1),
        0 24px 64px rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.12);
    background: #fff;
}
.auth-card-brand {
    position: relative;
    background: var(--gradient-hero-radial);
    padding: 2.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.auth-card-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 30% 40%, black 10%, transparent 75%);
    pointer-events: none;
}
.auth-card-brand-inner {
    position: relative;
    z-index: 1;
}
.auth-card-brand-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    top: -20%;
    right: -20%;
    pointer-events: none;
}
.auth-card-brand .gp-hero-badge {
    margin-bottom: 1.25rem;
}
.auth-card-brand h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}
.auth-card-brand p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.auth-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.auth-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.auth-feature-list li i {
    color: var(--emerald);
    font-size: 0.85rem;
}
.auth-card-form {
    padding: 2.75rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.auth-card-form-head {
    margin-bottom: 2rem;
}
.auth-field {
    margin-bottom: 1.25rem;
}
.auth-field label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
}
.auth-field-inner {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 48px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    overflow: hidden;
}
.auth-field-inner:focus-within {
    border-color: var(--blue-electric);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.auth-field-inner.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.auth-field-icon {
    width: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.9rem;
}
.auth-field-inner:focus-within .auth-field-icon {
    color: var(--blue-electric);
}
.auth-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    border: none !important;
    background: transparent !important;
    padding: 0.75rem 1rem 0.75rem 0 !important;
    margin-bottom: 0 !important;
    font-size: 0.95rem !important;
    color: var(--text-primary);
    border-radius: 0 !important;
    box-shadow: none !important;
}
.auth-input::placeholder {
    color: #94a3b8;
}
.auth-input:focus {
    outline: none;
}
.auth-field .gp-error,
.auth-field .invalid-feedback {
    display: block;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}
.auth-card-form-head h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    text-align: center;
}
.auth-card-form-head p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}
.auth-alert {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.auth-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}
.auth-alert-danger i {
    flex-shrink: 0;
    margin-top: 2px;
}
.auth-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
}
.auth-card-footer {
    text-align: center;
    margin: 1.25rem 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.auth-card-footer.subtle {
    margin-top: 0.75rem;
    font-size: 0.85rem;
}
.auth-card-footer a {
    color: var(--blue-electric);
    font-weight: 600;
    text-decoration: none;
}
.auth-card-footer a:hover {
    text-decoration: underline;
}
.auth-card-footer span {
    margin: 0 0.5rem;
    opacity: 0.4;
}

@media (max-width: 991px) {
    .gp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .gp-pricing-card.featured {
        order: -1;
    }
    .auth-card {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
    .auth-card-brand {
        padding: 2rem 1.75rem;
    }
    .auth-card-brand h1 br {
        display: none;
    }
    .auth-feature-list {
        display: none;
    }
    .auth-card-form {
        padding: 2rem 1.75rem;
    }
    .gp-cta-inline {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .gp-job-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .gp-job-card .lp-btn {
        width: 100%;
        justify-content: center;
    }
    .gp-inline-form {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    .gp-inline-form .lp-btn {
        width: 100% !important;
    }
    .gp-article-body {
        padding: 1.75rem 1.5rem;
    }
    .gp-article-sidebar {
        position: static;
    }
    .gp-article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   SECTION SCROLL REVEAL (ALL GUEST PAGES)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .gp-reveal-item {
        opacity: 0;
        transform: translateY(28px);
        transition:
            opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0ms);
        will-change: opacity, transform;
    }

    .gp-reveal-item.gp-revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .gp-reveal-section.gp-revealed .gp-reveal-item {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gp-reveal-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 991px) {
    .landing-page { --lp-stats-half: 6.5rem; }
    .lp-hero { padding-bottom: calc(var(--lp-stats-half) + 3.5rem); }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .mc-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .mc-lower { flex-direction: column; }
    .lp-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-hero-stat:nth-child(2) { border-right: none; }
    .lp-hero-stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
    .lp-hero-stat:nth-child(1),
    .lp-hero-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .lp-journey-track { grid-template-columns: 1fr; gap: 2.5rem; max-width: 400px; }
    .lp-journey-progress { display: none; }
    .lp-js-marker { margin-bottom: 1rem; }
}
@media (max-width: 768px) {
    .landing-page { --lp-stats-half: 8rem; }
    .lp-hero {
        padding-bottom: calc(var(--lp-stats-half) + 2.5rem);
    }
    .lp-hero .container > .row {
        align-items: center;
    }
    .lp-hero-image { max-width: 100%; animation: none; }
    .lp-hero-stats {
        grid-template-columns: 1fr 1fr;
        border-radius: 20px;
    }
    .lp-hero-stat { padding: 1.35rem 1rem; gap: 8px; }
    .lp-hs-icon { width: 40px; height: 40px; font-size: 0.95rem; }
    .lp-hs-val { font-size: 1.2rem; }
    .mc-kpi-val { font-size: 0.95rem; }
    .mc-kpi-label { font-size: 0.55rem; }
    .lp-glass-banner { grid-template-columns: 1fr 1fr; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-feature-link { opacity: 1; transform: none; }
    .lp-metric-grid { grid-template-columns: 1fr 1fr; }
    .lp-section { padding: 4rem 0; }
    .lp-sticky-cta span { display: none; }
    .lp-sticky-cta { padding: 0.85rem; border-radius: 50%; }
}
