/* ========================================
   SOCIAL ZERO - Landing Page
   Black & White + Automation Blue
   Next.js inspired / Zero Effort Vibe
   ======================================== */

:root {
    --lp-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --lp-max-w: 1200px;
    --lp-nav-h: 64px;
    --lp-blue: #0070F3;
    --lp-blue-light: #3291ff;
    --lp-blue-dark: #0050c8;
    --lp-blue-glow: rgba(0, 112, 243, 0.35);
    --lp-blue-subtle: rgba(0, 112, 243, 0.08);
}


[data-theme="dark"] {
    --lp-bg: #000000;
    --lp-bg-2: #050505;
    --lp-bg-card: rgba(255, 255, 255, 0.03);
    --lp-bg-card-hover: rgba(255, 255, 255, 0.06);
    --lp-text: #ededed;
    --lp-text-2: #888888;
    --lp-text-3: #555555;
    --lp-border: rgba(255, 255, 255, 0.08);
    --lp-border-2: rgba(255, 255, 255, 0.14);
    --lp-surface: rgba(255, 255, 255, 0.04);
    --lp-nav-bg: rgba(0, 0, 0, 0.75);
    --lp-nav-border: rgba(255, 255, 255, 0.06);
    --lp-mockup-bg: #080808;
    --lp-mockup-sidebar: #0a0a0a;
    --lp-grid-color: rgba(255, 255, 255, 0.03);
    --lp-orb-1: rgba(0, 112, 243, 0.12);
    --lp-orb-2: rgba(0, 112, 243, 0.06);
    --lp-orb-3: rgba(50, 145, 255, 0.04);
}

[data-theme="light"] {
    --lp-bg: #ffffff;
    --lp-bg-2: #fafafa;
    --lp-bg-card: rgba(0, 0, 0, 0.02);
    --lp-bg-card-hover: rgba(0, 0, 0, 0.04);
    --lp-text: #0a0a0a;
    --lp-text-2: #666666;
    --lp-text-3: #999999;
    --lp-border: rgba(0, 0, 0, 0.08);
    --lp-border-2: rgba(0, 0, 0, 0.14);
    --lp-surface: rgba(0, 0, 0, 0.03);
    --lp-nav-bg: rgba(255, 255, 255, 0.8);
    --lp-nav-border: rgba(0, 0, 0, 0.06);
    --lp-mockup-bg: #f5f5f5;
    --lp-mockup-sidebar: #eaeaea;
    --lp-grid-color: rgba(0, 0, 0, 0.03);
    --lp-orb-1: rgba(0, 112, 243, 0.05);
    --lp-orb-2: rgba(0, 112, 243, 0.03);
    --lp-orb-3: rgba(50, 145, 255, 0.02);
}

/* === RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--lp-font);
    color: var(--lp-text);
    background: var(--lp-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.lp-container {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* === GRID BACKGROUND PATTERN === */
.lp-grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(var(--lp-grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--lp-grid-color) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 20%, transparent 70%);
}


/* === AMBIENT GLOW === */
.lp-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
}

.lp-orb--1 {
    width: 700px;
    height: 700px;
    background: var(--lp-orb-1);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    animation: lp-float 20s ease-in-out infinite;
}

.lp-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--lp-orb-2);
    top: 50%;
    right: -100px;
    animation: lp-float 25s ease-in-out infinite reverse;
}

.lp-orb--3 {
    width: 300px;
    height: 300px;
    background: var(--lp-orb-3);
    bottom: 20%;
    left: 10%;
    animation: lp-float 22s ease-in-out infinite 3s;
}

@keyframes lp-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* === BLUE ACCENT TEXT === */
.lp-gradient-text {
    color: var(--lp-blue);
}

.lp-blue {
    color: var(--lp-blue);
}

/* === NAV === */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--lp-nav-h);
    transition: all 0.3s ease;
}

.lp-nav--scrolled {
    background: var(--lp-nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--lp-nav-border);
}

.lp-nav__inner {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-nav__logo {
    width: 34px;
    height: 34px;
    background: var(--lp-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 0 20px var(--lp-blue-glow);
}

.lp-nav__name {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.lp-nav__links {
    display: flex;
    gap: 32px;
}

.lp-nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-2);
    transition: color 0.2s;
}

.lp-nav__links a:hover {
    color: var(--lp-text);
}

.lp-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-theme-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--lp-border);
    background: transparent;
    border-radius: 8px;
    color: var(--lp-text-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 16px;
}

.lp-theme-toggle:hover {
    color: var(--lp-text);
    border-color: var(--lp-border-2);
}

.lp-mobile-menu {
    display: none;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--lp-text);
    font-size: 22px;
    cursor: pointer;
}

/* === BUTTONS === */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--lp-font);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lp-btn--primary {
    background: var(--lp-blue);
    color: #fff;
    box-shadow: 0 4px 14px var(--lp-blue-glow);
}

.lp-btn--primary:hover {
    background: var(--lp-blue-light);
    box-shadow: 0 6px 20px var(--lp-blue-glow);
    transform: translateY(-1px);
    color: #fff;
}

.lp-btn--outline {
    background: transparent;
    border: 1px solid var(--lp-border-2);
    color: var(--lp-text);
}

.lp-btn--outline:hover {
    border-color: var(--lp-text-2);
    transform: translateY(-1px);
}

.lp-btn--ghost {
    background: none;
    color: var(--lp-text-2);
}

.lp-btn--ghost:hover {
    color: var(--lp-text);
}

.lp-btn--lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 10px;
}

/* === MOBILE DRAWER === */
.lp-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--lp-bg);
    z-index: 2000;
    transition: right 0.3s ease;
    border-left: 1px solid var(--lp-border);
}

.lp-drawer.open {
    right: 0;
}

.lp-drawer__content {
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-drawer__link {
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--lp-text-2);
    transition: all 0.2s;
}

.lp-drawer__link:hover {
    background: var(--lp-surface);
    color: var(--lp-text);
}

.lp-drawer__divider {
    height: 1px;
    background: var(--lp-border);
    margin: 12px 0;
}

.lp-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lp-drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* === HERO === */
.lp-hero {
    position: relative;
    z-index: 1;
    padding: calc(var(--lp-nav-h) + 100px) 0 40px;
    text-align: center;
}

.lp-hero__container {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--lp-blue-subtle);
    border: 1px solid rgba(0, 112, 243, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--lp-blue);
    margin-bottom: 32px;
}

.lp-hero__badge i {
    font-size: 12px;
}

.lp-hero__title {
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.lp-hero__subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--lp-text-2);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.lp-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.lp-hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-size: 14px;
    color: var(--lp-text-3);
}

.lp-hero__avatars {
    display: flex;
}

.lp-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-left: -6px;
    border: 2px solid var(--lp-bg);
}

.lp-avatar:first-child {
    margin-left: 0;
}

/* === AUTOMATION PIPELINE (Hero Visual) === */
.lp-hero__visual {
    max-width: 800px;
    margin: 64px auto 0;
    padding: 0 24px;
}

.lp-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 24px;
}

.lp-pipeline__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    min-width: 140px;
    transition: all 0.3s ease;
    position: relative;
}

.lp-pipeline__node:hover {
    border-color: var(--lp-blue);
    box-shadow: 0 0 30px rgba(0, 112, 243, 0.1);
    transform: translateY(-3px);
}

.lp-pipeline__node-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.lp-pipeline__node-icon--blue {
    background: var(--lp-blue);
    color: #fff;
    box-shadow: 0 0 20px var(--lp-blue-glow);
}

.lp-pipeline__node-icon--outline {
    background: transparent;
    border: 1px solid var(--lp-border-2);
    color: var(--lp-text-2);
}

.lp-pipeline__node-label {
    font-size: 13px;
    font-weight: 600;
}

.lp-pipeline__node-sub {
    font-size: 11px;
    color: var(--lp-text-3);
}

.lp-pipeline__arrow {
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.lp-pipeline__arrow-line {
    width: 32px;
    height: 1px;
    background: var(--lp-border-2);
    position: relative;
}

.lp-pipeline__arrow-line::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -4px;
    border: solid var(--lp-border-2);
    border-width: 0 1px 1px 0;
    padding: 3px;
    transform: rotate(-45deg);
}

.lp-pipeline__pulse {
    position: absolute;
    top: -3px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--lp-blue);
    border-radius: 50%;
    animation: lp-pulse-move 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--lp-blue-glow);
}

@keyframes lp-pulse-move {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* === DASHBOARD MOCKUP === */
.lp-dashboard-mockup {
    background: var(--lp-mockup-bg);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.lp-mockup__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-mockup__dots {
    display: flex;
    gap: 6px;
}

.lp-mockup__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-mockup__dots span:nth-child(1) {
    background: #ff5f57;
}

.lp-mockup__dots span:nth-child(2) {
    background: #febc2e;
}

.lp-mockup__dots span:nth-child(3) {
    background: #28c840;
}

.lp-mockup__title {
    font-size: 12px;
    color: var(--lp-text-3);
    margin-left: auto;
    margin-right: auto;
}

.lp-mockup__body {
    display: flex;
    min-height: 260px;
}

.lp-mockup__sidebar {
    width: 48px;
    background: var(--lp-mockup-sidebar);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
    gap: 10px;
    border-right: 1px solid var(--lp-border);
}

.lp-mockup__nav-item {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-text-3);
    font-size: 14px;
    transition: all 0.2s;
}

.lp-mockup__nav-item.active {
    background: var(--lp-blue);
    color: #fff;
}

.lp-mockup__content {
    flex: 1;
    padding: 16px;
}

.lp-mockup__stat-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.lp-mockup__stat {
    flex: 1;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.lp-mockup__stat-val {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-mockup__stat-lbl {
    font-size: 10px;
    color: var(--lp-text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-mockup__chart {
    margin-bottom: 12px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    padding: 14px;
}

.lp-chart-svg {
    width: 100%;
    height: auto;
}

.lp-chart-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: lp-draw-chart 2s ease-out 0.5s forwards;
}

@keyframes lp-draw-chart {
    to {
        stroke-dashoffset: 0;
    }
}

.lp-mockup__posts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-mockup__post-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 7px;
    padding: 8px 12px;
}

.lp-mockup__post-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lp-mockup__post-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-mockup__line {
    height: 5px;
    background: var(--lp-border-2);
    border-radius: 3px;
}

.lp-mockup__post-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(0, 112, 243, 0.12);
    color: var(--lp-blue);
    white-space: nowrap;
}

.lp-mockup__post-badge--pending {
    background: rgba(255, 255, 255, 0.06);
    color: var(--lp-text-3);
}

/* === PLATFORMS === */
.lp-platforms {
    position: relative;
    z-index: 1;
    padding: 72px 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-platforms__label {
    text-align: center;
    font-size: 12px;
    color: var(--lp-text-3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 28px;
}

.lp-platforms__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
}

.lp-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--lp-text-3);
    transition: all 0.3s;
}

.lp-platform i {
    font-size: 26px;
    transition: all 0.3s;
}

.lp-platform:hover {
    transform: translateY(-3px);
    color: var(--lp-text-2);
}

/* === SECTION HEADERS === */
.lp-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.lp-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lp-blue);
    margin-bottom: 12px;
}

.lp-section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.lp-section-sub {
    font-size: 16px;
    color: var(--lp-text-2);
    line-height: 1.6;
}

/* === FEATURES === */
.lp-features {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lp-feature-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s ease;
}

.lp-feature-card:hover {
    border-color: var(--lp-border-2);
    background: var(--lp-bg-card-hover);
    transform: translateY(-2px);
}

.lp-feature-card--highlight {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border-color: rgba(0, 112, 243, 0.2);
    background: var(--lp-blue-subtle);
}

.lp-feature-card--highlight:hover {
    border-color: var(--lp-blue);
}

.lp-feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.lp-feature-card--highlight .lp-feature-card__icon {
    margin-bottom: 0;
}

.lp-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.lp-feature-card p {
    font-size: 14px;
    color: var(--lp-text-2);
    line-height: 1.6;
}

/* === HOW IT WORKS === */
.lp-steps {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--lp-bg-2);
}

.lp-steps__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.lp-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 28px 20px;
}

.lp-step__number {
    font-size: 44px;
    font-weight: 800;
    color: var(--lp-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.lp-step__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: transparent;
    border: 1px solid var(--lp-border-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--lp-blue);
    transition: all 0.3s;
}

.lp-step:hover .lp-step__icon {
    background: var(--lp-blue);
    color: #fff;
    border-color: var(--lp-blue);
    box-shadow: 0 0 24px var(--lp-blue-glow);
}

.lp-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-step p {
    font-size: 14px;
    color: var(--lp-text-2);
    line-height: 1.6;
}

.lp-step__connector {
    display: flex;
    align-items: center;
    padding-top: 56px;
    color: var(--lp-text-3);
    font-size: 16px;
}

/* === PRICING === */
.lp-pricing {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.lp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.lp-price-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 32px 24px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.lp-price-card:hover {
    border-color: var(--lp-border-2);
    transform: translateY(-2px);
}

.lp-price-card--popular {
    border-color: var(--lp-blue);
    background: var(--lp-blue-subtle);
}

.lp-price-card--popular:hover {
    border-color: var(--lp-blue-light);
    box-shadow: 0 0 40px rgba(0, 112, 243, 0.1);
}

.lp-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--lp-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px var(--lp-blue-glow);
}

.lp-price-card__header {
    margin-bottom: 24px;
}

.lp-price-card__header h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lp-price-card__header p {
    font-size: 13px;
    color: var(--lp-text-3);
}

.lp-price-card__price {
    margin-bottom: 4px;
}

.lp-price-card__amount {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.lp-price-card__period {
    font-size: 14px;
    color: var(--lp-text-3);
}

.lp-price-card__features {
    flex: 1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-price-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-text-2);
}

.lp-price-card__features i {
    color: var(--lp-blue);
    font-size: 15px;
}

/* === CTA === */
.lp-cta {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.lp-cta__inner {
    text-align: center;
    padding: 56px 40px;
    background: var(--lp-blue-subtle);
    border: 1px solid rgba(0, 112, 243, 0.15);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.lp-cta__inner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: var(--lp-blue);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.lp-cta__inner h2 {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.lp-cta__inner p {
    font-size: 15px;
    color: var(--lp-text-2);
    margin: 0 auto 28px;
    max-width: 460px;
    position: relative;
}

/* === FOOTER === */
.lp-footer {
    position: relative;
    z-index: 1;
    padding: 48px 0 28px;
    border-top: 1px solid var(--lp-border);
}

.lp-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
}

.lp-footer__brand p {
    margin-top: 14px;
    font-size: 14px;
    color: var(--lp-text-3);
    line-height: 1.6;
}

.lp-footer__links {
    display: flex;
    gap: 56px;
}

.lp-footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-footer__col h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lp-footer__col a {
    font-size: 14px;
    color: var(--lp-text-3);
    transition: color 0.2s;
}

.lp-footer__col a:hover {
    color: var(--lp-text);
}

.lp-footer__bottom {
    border-top: 1px solid var(--lp-border);
    padding-top: 20px;
    font-size: 13px;
    color: var(--lp-text-3);
}

/* === ANIMATIONS === */
.lp-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: lp-fade-up 0.6s ease-out forwards;
}

.lp-delay-1 {
    animation-delay: 0.1s;
}

.lp-delay-2 {
    animation-delay: 0.2s;
}

.lp-delay-3 {
    animation-delay: 0.3s;
}

.lp-delay-4 {
    animation-delay: 0.45s;
}

@keyframes lp-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-scroll-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .lp-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-feature-card--highlight {
        grid-column: 1 / -1;
    }

    .lp-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .lp-pipeline {
        flex-wrap: wrap;
        gap: 12px;
    }

    .lp-pipeline__arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .lp-nav__links {
        display: none;
    }

    .lp-nav__actions .lp-btn {
        display: none;
    }

    .lp-mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lp-features__grid {
        grid-template-columns: 1fr;
    }

    .lp-feature-card--highlight {
        flex-direction: column;
    }

    .lp-steps__grid {
        flex-direction: column;
        align-items: center;
    }

    .lp-step__connector {
        display: none;
    }

    .lp-hero {
        padding: calc(var(--lp-nav-h) + 56px) 0 32px;
    }

    .lp-hero__title {
        font-size: clamp(36px, 10vw, 52px);
    }

    .lp-footer__inner {
        flex-direction: column;
    }

    .lp-cta__inner {
        padding: 36px 20px;
    }

    .lp-mockup__stat-row {
        flex-direction: column;
    }

    .lp-pipeline__node {
        min-width: 110px;
        padding: 18px 14px;
    }
}
