/* ============================================================
   Lagerivo – Landing Page
   Font: Outfit (Headlines) + DM Sans (Body)
   ============================================================ */

/* ─── Variables ───────────────────────────────────────────── */
:root {
    --l-green:       #4c8c2b;
    --l-green-dark:  #3a6e20;
    --l-green-light: #e8f5e0;
    --l-green-50:    #f4faf0;
    --l-text:        #1a2e12;
    --l-text-sec:    #4a5e40;
    --l-text-muted:  #7a8e70;
    --l-bg:          #fafcf9;
    --l-surface:     #ffffff;
    --l-border:      #e2e8de;
    --l-font-head:   'Outfit', sans-serif;
    --l-font-body:   'DM Sans', sans-serif;
}

/* ─── Body ────────────────────────────────────────────────── */
.landing-body {
    font-family: var(--l-font-body);
    color: var(--l-text);
    background: var(--l-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── Reveal Animation ────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Text Highlight ──────────────────────────────────────── */
.l-highlight {
    background: linear-gradient(120deg, var(--l-green) 0%, #6ab04c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================================
   HEADER
   ============================================================= */
.l-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,252,249,0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.l-header.is-scrolled {
    background: rgba(255,255,255,0.95);
    border-bottom-color: var(--l-border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

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

.l-logo {
    display: flex; align-items: center; gap: 10px;
    color: var(--l-green);
    text-decoration: none;
    flex-shrink: 0;
}
.l-logo span {
    font-family: var(--l-font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--l-text);
    letter-spacing: -0.03em;
}

.l-nav {
    display: flex; gap: 6px;
}
.l-nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--l-text-sec);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.l-nav a:hover {
    color: var(--l-green-dark);
    background: var(--l-green-50);
}

.l-header-actions { display: flex; gap: 8px; }

/* ─── Buttons ─────────────────────────────────────────────── */
.l-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 22px;
    font-family: var(--l-font-body);
    font-size: 0.9rem; font-weight: 600;
    border-radius: 10px;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}
.l-btn:active { transform: scale(0.97); }

.l-btn-primary {
    background: var(--l-green); color: #fff;
    box-shadow: 0 2px 12px rgba(76,140,43,0.25), 0 1px 2px rgba(76,140,43,0.15);
}
.l-btn-primary:hover {
    background: var(--l-green-dark); color: #fff;
    box-shadow: 0 4px 20px rgba(76,140,43,0.30), 0 1px 3px rgba(76,140,43,0.20);
    transform: translateY(-1px);
}

.l-btn-outline {
    background: transparent;
    color: var(--l-text-sec);
    box-shadow: inset 0 0 0 1.5px var(--l-border);
}
.l-btn-outline:hover {
    background: var(--l-surface);
    color: var(--l-green-dark);
    box-shadow: inset 0 0 0 1.5px var(--l-green), 0 2px 8px rgba(76,140,43,0.08);
}

.l-btn-ghost { background: transparent; color: var(--l-text-sec); }
.l-btn-ghost:hover { background: var(--l-green-50); color: var(--l-green-dark); }

.l-btn-white {
    background: #fff; color: var(--l-green-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.l-btn-white:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.15); color: var(--l-green-dark); }

.l-btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: 12px; }
.l-btn-block { width: 100%; padding: 14px 24px; }

/* ─── Mobile Toggle ───────────────────────────────────────── */
.l-mobile-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px;
}
.l-mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--l-text); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.l-mobile-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.l-mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.l-mobile-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.l-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.l-hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.l-hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(76,140,43,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(106,176,76,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 20% 40%, rgba(76,140,43,0.04) 0%, transparent 50%);
}
.l-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(76,140,43,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76,140,43,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black, transparent);
}
.l-hero-glow {
    position: absolute;
    width: 500px; height: 500px;
    top: -100px; right: -100px;
    background: radial-gradient(circle, rgba(76,140,43,0.10) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowFloat 8s ease-in-out infinite;
}
@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}

.l-hero-content {
    position: relative; text-align: center;
}

.l-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 12px;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--l-green-dark);
    background: var(--l-green-light);
    border: 1px solid rgba(76,140,43,0.15);
    border-radius: 999px;
    margin-bottom: 28px;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.l-badge-dot {
    width: 7px; height: 7px;
    background: var(--l-green);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.l-hero-title {
    font-family: var(--l-font-head);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--l-text);
    margin-bottom: 24px;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.l-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--l-text-sec);
    max-width: 580px;
    margin: 0 auto 36px;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.l-hero-cta {
    display: flex; gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Dashboard Mockup ────────────────────────────────────── */
.l-hero-mockup {
    margin-top: 64px;
    perspective: 1200px;
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.l-mockup-window {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0,0,0,0.06),
        0 1px 3px rgba(0,0,0,0.04),
        0 24px 80px rgba(76,140,43,0.08);
    transform: rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-mockup-window:hover { transform: rotateX(0deg); }

.l-mockup-titlebar {
    display: flex; align-items: center; gap: 16px;
    padding: 12px 20px;
    background: #f6f8f5;
    border-bottom: 1px solid var(--l-border);
}
.l-mockup-dots { display: flex; gap: 6px; }
.l-mockup-dots span {
    width: 10px; height: 10px; border-radius: 50%;
}
.l-mockup-dots span:nth-child(1) { background: #ff5f56; }
.l-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.l-mockup-dots span:nth-child(3) { background: #27c93f; }

.l-mockup-url {
    flex: 1; text-align: center;
    font-size: 0.75rem; font-weight: 500;
    color: var(--l-text-muted);
    background: var(--l-surface);
    padding: 5px 16px;
    border-radius: 6px;
    border: 1px solid var(--l-border);
    max-width: 300px; margin: 0 auto;
}

.l-mockup-screen {
    display: flex;
    min-height: 320px;
}

/* Mock Sidebar */
.l-mock-sidebar {
    width: 200px; flex-shrink: 0;
    padding: 16px 12px;
    background: var(--l-surface);
    border-right: 1px solid var(--l-border);
}
.l-mock-logo-row {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 20px; padding: 0 8px;
}
.l-mock-logo-icon {
    width: 24px; height: 24px;
    background: var(--l-green-light);
    border: 2px solid var(--l-green);
    border-radius: 6px; flex-shrink: 0;
}
.l-mock-bar {
    height: 8px;
    background: #eef2ec;
    border-radius: 4px;
}
.l-mock-nav-item {
    height: 32px; margin-bottom: 4px;
    background: transparent;
    border-radius: 6px;
    background: #f6f8f5;
}
.l-mock-nav-item.active {
    background: var(--l-green-light);
    border: 1px solid rgba(76,140,43,0.12);
}
.l-mock-section-label {
    height: 8px; width: 50%;
    background: #eef2ec;
    border-radius: 4px;
    margin: 12px 8px 8px;
}

/* Mock Content */
.l-mock-content {
    flex: 1; padding: 16px 20px;
    background: var(--l-bg);
}
.l-mock-topbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.l-mock-search {
    width: 160px; height: 28px;
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: 6px;
}
.l-mock-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    margin-bottom: 20px;
}
.l-mock-stat {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: 10px;
    padding: 12px;
}
.l-mock-stat-label {
    height: 6px; width: 60%; background: #eef2ec; border-radius: 3px; margin-bottom: 8px;
}
.l-mock-stat-val {
    font-family: var(--l-font-head);
    font-size: 1.25rem; font-weight: 800; color: var(--l-text);
}
.l-mock-stat.green .l-mock-stat-val { color: #27ae60; }
.l-mock-stat.blue .l-mock-stat-val  { color: #2980b9; }
.l-mock-stat.yellow .l-mock-stat-val { color: #e67e22; }
.l-mock-stat.red .l-mock-stat-val   { color: #c0392b; }

.l-mock-table {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: 10px;
    overflow: hidden;
}
.l-mock-table-header {
    display: flex; gap: 16px; padding: 10px 14px;
    background: #f6f8f5;
    border-bottom: 1px solid var(--l-border);
}
.l-mock-table-header .l-mock-bar { height: 6px; background: #d5ddd0; }
.l-mock-table-row {
    display: flex; align-items: center; gap: 16px; padding: 10px 14px;
    border-bottom: 1px solid #f0f3ee;
}
.l-mock-table-row .l-mock-bar { height: 7px; }
.l-mock-badge {
    width: 40px; height: 16px;
    border-radius: 8px;
    flex-shrink: 0;
}
.l-mock-badge.green  { background: #eafaf1; border: 1px solid #c8f0d4; }
.l-mock-badge.yellow { background: #fef9e7; border: 1px solid #fce8b2; }
.l-mock-badge.red    { background: #fdecea; border: 1px solid #f5c6cb; }

/* =============================================================
   SECTIONS COMMON
   ============================================================= */
.l-section-header {
    text-align: center;
    margin-bottom: 56px;
}
.l-section-tag {
    display: inline-block;
    font-size: 0.8125rem; font-weight: 700;
    color: var(--l-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.l-section-header h2 {
    font-family: var(--l-font-head);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--l-text);
    margin-bottom: 16px;
}
.l-section-header p {
    font-size: 1.0625rem;
    color: var(--l-text-sec);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================================
   FEATURES
   ============================================================= */
.l-features {
    padding: 100px 0;
    background: var(--l-surface);
    border-top: 1px solid var(--l-border);
    border-bottom: 1px solid var(--l-border);
}

.l-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.l-feature-card {
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid var(--l-border);
    background: var(--l-bg);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.l-feature-card:hover {
    border-color: rgba(76,140,43,0.2);
    box-shadow: 0 8px 32px rgba(76,140,43,0.06);
    transform: translateY(-3px);
}

.l-feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.l-feature-icon.green  { background: #eafaf1; color: #27ae60; }
.l-feature-icon.blue   { background: #ebf5fb; color: #2980b9; }
.l-feature-icon.amber  { background: #fef9e7; color: #d4891a; }
.l-feature-icon.purple { background: #f4ecf7; color: #8e44ad; }
.l-feature-icon.rose   { background: #fdedec; color: #cb4335; }
.l-feature-icon.teal   { background: #e8f8f5; color: #17a589; }

.l-feature-card h3 {
    font-family: var(--l-font-head);
    font-size: 1.125rem; font-weight: 700;
    color: var(--l-text);
    margin-bottom: 10px;
}
.l-feature-card p {
    font-size: 0.9rem;
    color: var(--l-text-sec);
    line-height: 1.65;
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.l-how {
    padding: 100px 0;
}

.l-steps {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.l-step {
    display: flex; gap: 24px;
    align-items: flex-start;
    width: 100%;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--l-border);
    background: var(--l-surface);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.l-step:hover {
    border-color: rgba(76,140,43,0.2);
    box-shadow: 0 4px 20px rgba(76,140,43,0.06);
}

.l-step-number {
    font-family: var(--l-font-head);
    font-size: 2rem; font-weight: 900;
    color: var(--l-green);
    opacity: 0.3;
    flex-shrink: 0;
    line-height: 1;
    min-width: 48px;
}

.l-step-content h3 {
    font-family: var(--l-font-head);
    font-size: 1.125rem; font-weight: 700;
    color: var(--l-text);
    margin-bottom: 8px;
}
.l-step-content p {
    font-size: 0.9rem;
    color: var(--l-text-sec);
    line-height: 1.6;
}

.l-step-connector {
    color: var(--l-green);
    display: flex;
    justify-content: center;
    height: 48px;
    overflow: hidden;
}
.l-step-connector svg { height: 48px; }

/* =============================================================
   INTEGRATIONS
   ============================================================= */
.l-integrations {
    padding: 100px 0;
    background: var(--l-surface);
    border-top: 1px solid var(--l-border);
    border-bottom: 1px solid var(--l-border);
}

.l-integration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.l-integration-card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid var(--l-border);
    background: var(--l-bg);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.l-integration-card:hover {
    border-color: rgba(76,140,43,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.l-int-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    background: color-mix(in srgb, var(--accent) 10%, white);
    color: var(--accent);
}

.l-integration-card h3 {
    font-family: var(--l-font-head);
    font-size: 1.0625rem; font-weight: 700;
    color: var(--l-text);
}
.l-int-desc {
    font-size: 0.75rem; font-weight: 600;
    color: var(--l-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.l-integration-card > p:last-child {
    font-size: 0.875rem;
    color: var(--l-text-sec);
    line-height: 1.55;
}

/* =============================================================
   HIGHLIGHTS / STATS
   ============================================================= */
.l-highlights {
    padding: 80px 0;
}

.l-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.l-hl-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    background: var(--l-surface);
    border: 1px solid var(--l-border);
}

.l-hl-value {
    font-family: var(--l-font-head);
    font-size: 2.25rem; font-weight: 900;
    color: var(--l-green);
    line-height: 1;
    margin-bottom: 6px;
}
.l-hl-label {
    font-size: 0.8125rem; font-weight: 700;
    color: var(--l-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.l-hl-item p {
    font-size: 0.8125rem;
    color: var(--l-text-muted);
    line-height: 1.5;
}

/* =============================================================
   PRICING
   ============================================================= */
.l-pricing {
    padding: 100px 0;
    background: var(--l-surface);
    border-top: 1px solid var(--l-border);
    border-bottom: 1px solid var(--l-border);
}

.l-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.l-price-card {
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid var(--l-border);
    background: var(--l-bg);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.l-price-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.l-price-card-featured {
    background: var(--l-surface);
    border-color: var(--l-green);
    border-width: 2px;
    box-shadow: 0 8px 40px rgba(76,140,43,0.12);
    transform: scale(1.03);
}
.l-price-card-featured:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 12px 48px rgba(76,140,43,0.15);
}

.l-price-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px;
    font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    background: var(--l-green); color: #fff;
    border-radius: 999px;
}

.l-price-tier {
    font-family: var(--l-font-head);
    font-size: 1rem; font-weight: 700;
    color: var(--l-text-sec);
    margin-bottom: 16px;
}

.l-price-amount {
    font-family: var(--l-font-head);
    font-size: 3.5rem; font-weight: 900;
    color: var(--l-text);
    line-height: 1;
    margin-bottom: 4px;
}
.l-price-currency {
    font-size: 1.5rem; font-weight: 700;
    vertical-align: super;
    color: var(--l-text-muted);
    margin-right: 2px;
}
.l-price-mo {
    font-size: 1rem; font-weight: 600;
    color: var(--l-text-muted);
}

.l-price-period {
    font-size: 0.8125rem;
    color: var(--l-text-muted);
    margin-bottom: 28px;
}

.l-price-features {
    list-style: none;
    margin-bottom: 28px;
}
.l-price-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--l-text-sec);
    border-bottom: 1px solid var(--l-border);
    display: flex; align-items: center; gap: 10px;
}
.l-price-features li:last-child { border-bottom: none; }
.l-price-features li::before {
    content: '';
    width: 18px; height: 18px; flex-shrink: 0;
    background: var(--l-green-light);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234c8c2b' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* =============================================================
   CTA
   ============================================================= */
.l-cta {
    padding: 100px 0;
}

.l-cta-inner {
    position: relative;
    background: linear-gradient(135deg, #3a6e20 0%, #4c8c2b 40%, #5ea033 100%);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.l-cta-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    background-size: 100% 100%;
}

.l-cta-inner h2 {
    position: relative;
    font-family: var(--l-font-head);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.l-cta-inner p {
    position: relative;
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 32px;
}
.l-cta-inner .l-hero-cta {
    position: relative;
}

/* =============================================================
   FOOTER
   ============================================================= */
.l-footer {
    padding: 60px 0 0;
    background: #1a2e12;
    color: rgba(255,255,255,0.6);
}

.l-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.l-footer-brand .l-logo { color: rgba(255,255,255,0.7); }
.l-footer-brand .l-logo span { color: #fff; }
.l-footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 280px;
}

.l-footer-col h4 {
    font-family: var(--l-font-head);
    font-size: 0.8125rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.l-footer-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}
.l-footer-col a:hover { color: #fff; }

.l-footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.l-footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .l-features-grid { grid-template-columns: repeat(2, 1fr); }
    .l-integration-grid { grid-template-columns: repeat(2, 1fr); }
    .l-highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .l-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .l-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .l-price-card-featured { transform: none; }
    .l-price-card-featured:hover { transform: translateY(-3px); }
}

@media (max-width: 768px) {
    .l-nav { display: none; }
    .l-header-actions .l-btn-ghost { display: none; }
    .l-mobile-toggle { display: flex; }

    .l-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--l-surface);
        border-bottom: 1px solid var(--l-border);
        padding: 16px 20px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        gap: 4px;
    }
    .l-nav.is-open a { padding: 12px 16px; border-radius: 10px; }

    .l-hero { padding: 130px 0 60px; }
    .l-hero-subtitle { font-size: 1rem; }
    .l-mock-sidebar { display: none; }
    .l-mock-cards { grid-template-columns: repeat(2, 1fr); }

    .l-features-grid { grid-template-columns: 1fr; }
    .l-integration-grid { grid-template-columns: 1fr; }
    .l-highlights-grid { grid-template-columns: 1fr 1fr; }

    .l-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .l-cta-inner { padding: 56px 24px; border-radius: 16px; }
}

@media (max-width: 480px) {
    .l-container { padding: 0 16px; }
    .l-hero-cta { flex-direction: column; align-items: stretch; }
    .l-hero-cta .l-btn { justify-content: center; }
    .l-highlights-grid { grid-template-columns: 1fr; }
    .l-mock-cards { grid-template-columns: 1fr 1fr; }
    .l-mock-search { display: none; }
}
