/* ============================================
   ComptaEntrepreneur — Landing Page (Premium)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Custom Properties ---------- */
:root {
    --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --lp-text: #1a1a2e;
    --lp-text-2: #4a4a68;
    --lp-text-3: #8888a4;
    --lp-bg: #ffffff;
    --lp-bg-2: #f8f9fc;
    --lp-bg-3: #f0f1f6;
    --lp-border: #e8e9f0;
    --lp-border-light: #f0f1f6;
    --lp-accent-1: #667eea;
    --lp-accent-2: #764ba2;
    --lp-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --lp-gradient-soft: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%);
    --lp-green: #0f7b0f;
    --lp-orange: #d9730d;
    --lp-red: #e03e3e;
    --lp-radius: 12px;
    --lp-radius-lg: 20px;
    --lp-radius-xl: 24px;
    --lp-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --lp-shadow: 0 4px 16px rgba(0,0,0,0.06);
    --lp-shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --lp-shadow-xl: 0 24px 64px rgba(0,0,0,0.1);
    --lp-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
.landing-body {
    font-family: var(--lp-font);
    color: var(--lp-text);
    background: var(--lp-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.landing-body *, .landing-body *::before, .landing-body *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Scroll Reveal ---------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.landing-feature-card:nth-child(2).reveal-on-scroll { transition-delay: 0.05s; }
.landing-feature-card:nth-child(3).reveal-on-scroll { transition-delay: 0.1s; }
.landing-feature-card:nth-child(4).reveal-on-scroll { transition-delay: 0.15s; }
.landing-feature-card:nth-child(5).reveal-on-scroll { transition-delay: 0.2s; }
.landing-feature-card:nth-child(6).reveal-on-scroll { transition-delay: 0.25s; }
.landing-feature-card:nth-child(7).reveal-on-scroll { transition-delay: 0.3s; }
.landing-feature-card:nth-child(8).reveal-on-scroll { transition-delay: 0.35s; }

.landing-step:nth-child(2).reveal-on-scroll { transition-delay: 0.1s; }
.landing-step:nth-child(3).reveal-on-scroll { transition-delay: 0.2s; }

/* ============================================
   NAVBAR
   ============================================ */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.landing-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--lp-border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.landing-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Brand */
.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--lp-text);
}

.landing-brand-icon-img {
    border-radius: 10px;
    flex-shrink: 0;
}

.landing-brand-name {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.landing-brand-accent {
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav */
.landing-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.landing-nav-divider {
    width: 1px;
    height: 20px;
    background: var(--lp-border);
    margin: 0 0.5rem;
}

.landing-nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-text-2);
    border-radius: 8px;
    transition: all var(--lp-transition);
    text-decoration: none;
}

.landing-nav-link:hover {
    color: var(--lp-text);
    background: var(--lp-bg-2);
}

/* Hamburger */
.landing-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--lp-transition);
}

.landing-menu-toggle:hover {
    background: var(--lp-bg-2);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--lp-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.landing-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.landing-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.landing-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--lp-transition);
    font-family: var(--lp-font);
    line-height: 1.5;
    white-space: nowrap;
}

.btn-landing-primary {
    background: var(--lp-gradient);
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-landing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    color: #fff;
}

.btn-landing-primary:active {
    transform: translateY(0);
}

.btn-landing-outline {
    background: var(--lp-bg);
    color: var(--lp-text);
    border: 1.5px solid var(--lp-border);
}

.btn-landing-outline:hover {
    background: var(--lp-bg-2);
    border-color: var(--lp-text-3);
    color: var(--lp-text);
    transform: translateY(-1px);
}

.btn-landing-ghost {
    background: transparent;
    color: var(--lp-text-2);
    border: none;
    padding-left: 0.5rem;
}

.btn-landing-ghost:hover {
    color: var(--lp-accent-1);
}

.btn-landing-white {
    background: #fff;
    color: var(--lp-accent-1);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-landing-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: var(--lp-accent-2);
}

.btn-landing-lg {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

.btn-landing-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.landing-hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

/* Animated gradient bg */
.landing-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.landing-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.landing-hero-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(102, 126, 234, 0.25);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.landing-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(118, 75, 162, 0.2);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.landing-hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(102, 126, 234, 0.15);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.landing-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

/* Hero content */
.landing-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.landing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-accent-1);
    background: rgba(102, 126, 234, 0.06);
    border: 1px solid rgba(102, 126, 234, 0.12);
    border-radius: 99px;
    margin-bottom: 1.75rem;
}

.landing-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--lp-accent-1);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.landing-hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--lp-text);
    margin-bottom: 1.5rem;
}

.landing-gradient-text {
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero-subtitle {
    font-size: 1.15rem;
    color: var(--lp-text-2);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.25rem;
}

.landing-hero-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Social proof */
.landing-hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.landing-hero-avatars {
    display: flex;
}

.landing-hero-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    margin-left: -8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.landing-hero-avatar:first-child {
    margin-left: 0;
}

.landing-hero-note {
    font-size: 0.825rem;
    color: var(--lp-text-3);
}

.landing-hero-note strong {
    color: var(--lp-text-2);
}

/* ============================================
   HERO MOCKUP
   ============================================ */
.landing-hero-visual {
    position: relative;
}

.landing-mockup {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--lp-shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
    background: #fff;
}

.landing-mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.875rem 1.25rem;
    background: var(--lp-bg-2);
    border-bottom: 1px solid var(--lp-border);
}

.landing-mockup-dots {
    display: flex;
    gap: 6px;
}

.landing-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.landing-mockup-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--lp-text-3);
    flex: 1;
    text-align: center;
}

.landing-mockup-body {
    display: flex;
    min-height: 280px;
}

/* Sidebar in mockup */
.landing-mockup-sidebar {
    width: 140px;
    background: var(--lp-bg-2);
    border-right: 1px solid var(--lp-border);
    padding: 0.75rem 0.5rem;
    flex-shrink: 0;
}

.landing-mockup-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--lp-text-3);
    border-radius: 6px;
    margin-bottom: 2px;
}

.landing-mockup-sidebar-item.active {
    background: rgba(102, 126, 234, 0.08);
    color: var(--lp-accent-1);
    font-weight: 600;
}

.lm-icon {
    font-size: 0.85rem;
}

/* Main area */
.landing-mockup-main {
    flex: 1;
    padding: 1rem;
}

.landing-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.landing-mockup-stat {
    background: var(--lp-bg-2);
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--lp-border-light);
}

.landing-mockup-stat-label {
    font-size: 0.6rem;
    color: var(--lp-text-3);
    font-weight: 500;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.landing-mockup-stat-value {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-mockup-stat-value.lm-green { color: var(--lp-green); }
.landing-mockup-stat-value.lm-orange { color: var(--lp-orange); }
.landing-mockup-stat-value.lm-blue { color: var(--lp-accent-1); }

.landing-mockup-stat-change {
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

.lm-green-text { color: var(--lp-green); }
.lm-orange-text { color: var(--lp-orange); }
.lm-blue-text { color: var(--lp-accent-1); }

.landing-mockup-table {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--lp-border-light);
}

.landing-mockup-row {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 0.8fr 0.8fr;
    padding: 0.55rem 0.75rem;
    font-size: 0.7rem;
    align-items: center;
    border-bottom: 1px solid var(--lp-border-light);
    color: var(--lp-text-2);
}

.landing-mockup-row:last-child { border-bottom: none; }

.landing-mockup-row-header {
    background: var(--lp-bg-2);
    font-weight: 600;
    color: var(--lp-text-3);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lm-mono { font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', monospace; font-size: 0.65rem; color: var(--lp-text-3); }
.lm-bold { font-weight: 700; color: var(--lp-text); }

.landing-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.6rem;
    text-align: center;
    display: inline-block;
}

.landing-badge-success {
    background: #dbeddb;
    color: var(--lp-green);
}

.landing-badge-warning {
    background: #fdecc8;
    color: var(--lp-orange);
}

/* Floating notification cards */
.landing-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    padding: 0.875rem 1.125rem;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.03);
    z-index: 2;
    animation: floatBounce 6s ease-in-out infinite;
}

.landing-float-1 {
    bottom: 40px;
    left: -40px;
    animation-delay: 0s;
}

.landing-float-2 {
    top: 20px;
    right: -30px;
    animation-delay: -3s;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.landing-float-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.landing-float-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lp-text);
}

.landing-float-sub {
    font-size: 0.7rem;
    color: var(--lp-text-3);
    font-weight: 500;
}

/* ============================================
   TRUST BAR
   ============================================ */
.landing-trust {
    padding: 3rem 0;
    border-bottom: 1px solid var(--lp-border-light);
    background: var(--lp-bg);
}

.landing-trust-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-text-3);
    margin-bottom: 1.25rem;
}

.landing-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.landing-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lp-text-2);
}

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

.landing-trust-divider {
    width: 1px;
    height: 24px;
    background: var(--lp-border);
}

/* ============================================
   SECTION SHARED
   ============================================ */
.landing-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.landing-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-accent-1);
    background: rgba(102, 126, 234, 0.06);
    padding: 0.3rem 0.875rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.landing-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    color: var(--lp-text);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.landing-section-subtitle {
    font-size: 1.075rem;
    color: var(--lp-text-2);
    line-height: 1.75;
}

/* ============================================
   FEATURES
   ============================================ */
.landing-features {
    padding: 6rem 0;
    background: var(--lp-bg);
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.landing-feature-card {
    padding: 2rem 1.75rem;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border-light);
    background: var(--lp-bg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.landing-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-gradient-soft);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.landing-feature-card:hover {
    border-color: rgba(102, 126, 234, 0.15);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.06);
    transform: translateY(-4px);
}

.landing-feature-card:hover::before {
    opacity: 1;
}

.landing-feature-icon-wrap {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: var(--accent-bg);
    color: var(--accent);
    transition: transform 0.3s ease;
}

.landing-feature-card:hover .landing-feature-icon-wrap {
    transform: scale(1.05);
}

.landing-feature-title {
    position: relative;
    z-index: 1;
    font-size: 0.975rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--lp-text);
    letter-spacing: -0.01em;
}

.landing-feature-desc {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: var(--lp-text-2);
    line-height: 1.7;
}

/* ============================================
   STEPS
   ============================================ */
.landing-steps {
    padding: 6rem 0;
    background: var(--lp-bg-2);
}

.landing-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.landing-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--lp-bg);
    border-radius: var(--lp-radius-xl);
    border: 1px solid var(--lp-border-light);
    box-shadow: var(--lp-shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.landing-step:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-4px);
}

.landing-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lp-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.landing-step-number span {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
}

.landing-step-connector {
    position: absolute;
    top: 52px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--lp-border);
    z-index: 1;
}

.landing-step:last-child .landing-step-connector {
    display: none;
}

.landing-step-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.625rem;
    color: var(--lp-text);
    letter-spacing: -0.02em;
}

.landing-step-desc {
    font-size: 0.875rem;
    color: var(--lp-text-2);
    line-height: 1.7;
}

/* ============================================
   AUDIENCE
   ============================================ */
.landing-audience {
    padding: 6rem 0;
    background: var(--lp-bg);
}

.landing-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.landing-audience-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--lp-radius-xl);
    background: var(--lp-bg);
    border: 1px solid var(--lp-border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.landing-audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lp-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.landing-audience-card:hover {
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.12);
}

.landing-audience-card:hover::after {
    opacity: 1;
}

.landing-audience-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--lp-bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--lp-accent-1);
    transition: all 0.3s ease;
}

.landing-audience-card:hover .landing-audience-icon-wrap {
    background: rgba(102, 126, 234, 0.08);
    transform: scale(1.05);
}

.landing-audience-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.625rem;
    color: var(--lp-text);
    letter-spacing: -0.02em;
}

.landing-audience-card p {
    font-size: 0.875rem;
    color: var(--lp-text-2);
    line-height: 1.7;
}

/* ============================================
   PRICING
   ============================================ */
.landing-pricing {
    padding: 6rem 0;
    background: var(--lp-bg-2);
}

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 780px;
    margin: 0 auto;
}

.landing-pricing-card {
    background: var(--lp-bg);
    border-radius: var(--lp-radius-xl);
    padding: 2.5rem;
    border: 1.5px solid var(--lp-border-light);
    position: relative;
    transition: all 0.3s ease;
}

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

.landing-pricing-popular {
    border-color: var(--lp-accent-1);
    box-shadow: 0 8px 40px rgba(102, 126, 234, 0.12), 0 0 0 1px rgba(102, 126, 234, 0.08);
}

.landing-pricing-popular:hover {
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.18), 0 0 0 1px rgba(102, 126, 234, 0.12);
}

.landing-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gradient);
    color: #fff;
    padding: 0.3rem 1.25rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.landing-pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-border-light);
    margin-bottom: 1.5rem;
}

.landing-pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 0.5rem;
}

.landing-pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--lp-text);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.landing-pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--lp-text-3);
    letter-spacing: 0;
}

.landing-pricing-desc {
    font-size: 0.875rem;
    color: var(--lp-text-3);
}

.landing-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.landing-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    font-size: 0.875rem;
    color: var(--lp-text);
}

.landing-pricing-features li svg {
    flex-shrink: 0;
}

.landing-pricing-disabled {
    color: var(--lp-text-3) !important;
}

/* ============================================
   CTA
   ============================================ */
.landing-cta {
    position: relative;
    padding: 6rem 0;
    background: var(--lp-gradient);
    overflow: hidden;
}

.landing-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.landing-cta-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.landing-cta-orb-1 {
    width: 400px;
    height: 400px;
    background: #fff;
    top: -100px;
    right: -50px;
    filter: blur(60px);
}

.landing-cta-orb-2 {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: -80px;
    left: -50px;
    filter: blur(60px);
}

.landing-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.landing-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.landing-cta-actions {
    margin-bottom: 1rem;
}

.landing-cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    padding: 4rem 0 0;
    background: var(--lp-text);
    color: rgba(255,255,255,0.7);
}

.landing-footer .landing-brand-name {
    color: #fff;
}

.landing-footer .landing-brand-accent {
    -webkit-text-fill-color: rgba(255,255,255,0.7);
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.landing-footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 280px;
}

.landing-footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.landing-footer-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.15s;
}

.landing-footer-col a:hover {
    color: #fff;
}

.landing-footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
    .landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 0 1.25rem;
    }

    /* Navbar */
    .landing-menu-toggle {
        display: flex;
    }

    .landing-nav-divider {
        display: none;
    }

    .landing-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 1.25rem 1.5rem;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        gap: 0.25rem;
    }

    .landing-nav.open {
        display: flex;
    }

    .landing-nav .btn-landing {
        width: 100%;
        text-align: center;
        margin-top: 0.75rem;
    }

    /* Hero */
    .landing-hero {
        padding: 7rem 0 3.5rem;
    }

    .landing-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .landing-hero-title {
        font-size: 2.5rem;
    }

    .landing-hero-subtitle {
        font-size: 1rem;
    }

    .landing-hero-visual {
        order: -1;
    }

    .landing-float-1 { left: 0; bottom: -10px; }
    .landing-float-2 { right: 0; top: -10px; }

    .landing-mockup-sidebar { display: none; }

    /* Features */
    .landing-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Steps */
    .landing-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .landing-step-connector { display: none; }

    /* Audience */
    .landing-audience-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .landing-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    /* Footer */
    .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .landing-footer-brand {
        grid-column: 1 / -1;
    }

    /* Sections */
    .landing-section-title {
        font-size: 1.85rem;
    }

    .landing-cta-content h2 {
        font-size: 1.75rem;
    }

    .landing-features,
    .landing-steps,
    .landing-audience,
    .landing-pricing,
    .landing-cta {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .landing-hero-title {
        font-size: 2rem;
    }

    .landing-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-hero-actions .btn-landing {
        text-align: center;
        justify-content: center;
    }

    .landing-hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .landing-mockup-stats {
        grid-template-columns: 1fr;
    }

    .landing-mockup-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.2rem;
    }

    .landing-mockup-row-header { display: none; }

    .landing-float { display: none; }

    .landing-trust-items {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .landing-trust-divider { display: none; }

    .landing-footer-grid {
        grid-template-columns: 1fr;
    }

    .landing-pricing-price {
        font-size: 2.75rem;
    }

    .landing-section-title {
        font-size: 1.6rem;
    }

    .landing-cta-content h2 {
        font-size: 1.5rem;
    }
}
