/* WA Business CRM — Dark SaaS Landing Page */

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

:root {
    --wa-green: #128C7E;
    --wa-green-dark: #075E54;
    --wa-teal: #25D366;
    --wa-teal-hover: #20bd5a;
    --landing-bg: #0a0f1a;
    --landing-bg-2: #0f1623;
    --landing-card: #141c2b;
    --landing-card-border: rgba(255, 255, 255, 0.08);
    --landing-text: #f0f4f8;
    --landing-muted: #94a3b8;
    --landing-accent-glow: rgba(37, 211, 102, 0.15);
}

*, *::before, *::after { box-sizing: border-box; }

.landing-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--landing-text);
    background: var(--landing-bg);
    margin: 0;
    line-height: 1.6;
}

/* ─── Navigation ─── */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--landing-card-border);
    padding: 14px 0;
}

.landing-nav .container { position: relative; }

.landing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
}

.landing-brand:hover { color: #fff; }

.landing-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
}

.landing-brand-icon-sm { width: 32px; height: 32px; font-size: 1rem; }

.landing-nav-link {
    color: var(--landing-muted) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px !important;
}

.landing-nav-link:hover { color: #fff !important; }

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

.btn-nav-login {
    color: var(--landing-muted) !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
}

.btn-nav-login:hover { color: #fff !important; }

.btn-nav-trial {
    background: var(--wa-teal);
    color: #053628;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-nav-trial:hover {
    background: var(--wa-teal-hover);
    color: #053628;
    transform: translateY(-1px);
}

/* ─── Buttons ─── */
.btn-wa {
    background: var(--wa-teal);
    border: none;
    color: #053628;
    font-weight: 700;
    border-radius: 10px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-wa:hover {
    background: var(--wa-teal-hover);
    color: #053628;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-wa-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.btn-wa-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* ─── Hero ─── */
.landing-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--landing-bg);
}

.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 211, 102, 0.12), transparent),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(18, 140, 126, 0.08), transparent);
    pointer-events: none;
}

.landing-hero .container { position: relative; z-index: 1; }

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wa-teal);
    margin-bottom: 24px;
}

.landing-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--wa-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero-lead {
    font-size: 1.125rem;
    color: var(--landing-muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.landing-hero-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    max-width: 480px;
}

.landing-hero-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--landing-muted);
}

.landing-hero-pill i {
    color: var(--wa-teal);
    font-size: 1rem;
    flex-shrink: 0;
}

.landing-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--landing-muted);
}

.landing-trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.landing-trust-row i { color: var(--wa-teal); }

.landing-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--landing-card-border);
}

.landing-avatar-stack {
    display: flex;
}

.landing-avatar-stack span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--landing-bg);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
}

.landing-avatar-stack span:first-child { margin-left: 0; }
.landing-avatar-stack .av1 { background: #6366f1; }
.landing-avatar-stack .av2 { background: #8b5cf6; }
.landing-avatar-stack .av3 { background: #ec4899; }
.landing-avatar-stack .av4 { background: var(--wa-green); }

.landing-social-proof-text {
    font-size: 0.875rem;
    color: var(--landing-muted);
}

.landing-social-proof-text strong { color: #fff; }

/* Hero dashboard mockup */
.landing-hero-visual {
    position: relative;
}

.landing-dashboard-mock {
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.landing-dashboard-mock-header {
    background: #1a2332;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--landing-card-border);
}

.landing-dashboard-mock-header .dot {
    width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.landing-dashboard-mock-header .dot.red { background: #ff5f57; }
.landing-dashboard-mock-header .dot.yellow { background: #febc2e; }
.landing-dashboard-mock-header .dot.green { background: #28c840; }

.landing-dashboard-mock-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 320px;
}

.landing-mock-sidebar {
    background: #111827;
    border-right: 1px solid var(--landing-card-border);
    padding: 16px 12px;
}

.landing-mock-sidebar-item {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--landing-muted);
    margin-bottom: 4px;
}

.landing-mock-sidebar-item.active {
    background: rgba(37, 211, 102, 0.12);
    color: var(--wa-teal);
}

.landing-mock-main { padding: 16px; }

.landing-mock-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.landing-mock-stat {
    background: #1a2332;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--landing-card-border);
}

.landing-mock-stat strong {
    display: block;
    font-size: 1.1rem;
    color: var(--wa-teal);
}

.landing-mock-stat span {
    font-size: 0.7rem;
    color: var(--landing-muted);
}

.landing-mock-chart {
    background: #1a2332;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--landing-card-border);
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.landing-mock-bar {
    flex: 1;
    background: linear-gradient(to top, var(--wa-green), var(--wa-teal));
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
}

.landing-float-badge {
    position: absolute;
    bottom: -16px;
    left: -20px;
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    font-size: 0.85rem;
}

.landing-float-badge i {
    width: 36px;
    height: 36px;
    background: var(--wa-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #053628;
    font-size: 1.1rem;
}

/* ─── Stats Bar ─── */
.landing-stats-bar {
    background: var(--landing-bg-2);
    border-top: 1px solid var(--landing-card-border);
    border-bottom: 1px solid var(--landing-card-border);
    padding: 48px 0;
}

.landing-stat-value {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.landing-stat-label {
    font-size: 0.9rem;
    color: var(--landing-muted);
    margin-top: 4px;
}

/* ─── Sections ─── */
.landing-section {
    padding: 96px 0;
    background: var(--landing-bg);
}

.landing-section-alt {
    background: var(--landing-bg-2);
}

.landing-section-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
    color: #fff;
}

.landing-section-sub {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--landing-muted);
    font-size: 1.05rem;
}

.landing-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wa-teal);
    margin-bottom: 12px;
}

/* ─── Feature Cards ─── */
.landing-feature-card {
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.landing-feature-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.landing-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--wa-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.landing-feature-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.landing-feature-card p {
    color: var(--landing-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.65;
}

/* ─── Showcase ─── */
.landing-showcase {
    background: var(--landing-bg);
    padding: 96px 0;
    overflow: hidden;
}

.landing-showcase-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.landing-showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--landing-muted);
    font-size: 0.95rem;
}

.landing-showcase-list i {
    color: var(--wa-teal);
    font-size: 1.1rem;
    margin-top: 2px;
}

.landing-device-mock {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    padding: 20px 0;
}

.landing-laptop-mock {
    width: 100%;
    max-width: 520px;
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.landing-laptop-screen {
    background: #1a2332;
    padding: 20px;
    min-height: 280px;
}

.landing-laptop-base {
    height: 12px;
    background: #2d3748;
    border-radius: 0 0 4px 4px;
}

.landing-phone-mock {
    width: 120px;
    background: var(--landing-card);
    border: 2px solid #2d3748;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    flex-shrink: 0;
    margin-bottom: 12px;
}

.landing-phone-screen {
    background: #111827;
    border-radius: 16px;
    padding: 12px 8px;
    min-height: 200px;
}

.landing-mini-chat {
    background: #1a2332;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 6px;
    font-size: 0.65rem;
    color: var(--landing-muted);
}

.landing-mini-chat.out { background: rgba(37, 211, 102, 0.15); color: var(--wa-teal); }

/* ─── Steps ─── */
.landing-step-card {
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: border-color 0.2s;
}

.landing-step-card:hover { border-color: rgba(37, 211, 102, 0.25); }

.landing-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.landing-step-card h5 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.landing-step-card p {
    color: var(--landing-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ─── Pricing ─── */
.landing-pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 48px;
}

.landing-pricing-toggle button {
    border: none;
    background: transparent;
    color: var(--landing-muted);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.landing-pricing-toggle button.active {
    background: var(--wa-teal);
    color: #053628;
}

.landing-pricing-save {
    font-size: 0.75rem;
    color: var(--wa-teal);
    font-weight: 600;
}

.landing-price-card {
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}

.landing-price-card:hover { transform: translateY(-4px); }

.landing-price-card.featured {
    border-color: var(--wa-teal);
    box-shadow: 0 0 0 1px var(--wa-teal), 0 24px 64px rgba(37, 211, 102, 0.12);
}

.landing-price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wa-teal);
    color: #053628;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.landing-price-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.landing-price-desc {
    font-size: 0.82rem;
    color: var(--landing-muted);
    margin-bottom: 16px;
}

.landing-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin: 8px 0;
    letter-spacing: -0.02em;
}

.landing-price small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--landing-muted);
}

.landing-price-trial {
    font-size: 0.82rem;
    color: var(--wa-teal);
    font-weight: 600;
    margin-bottom: 20px;
}

.landing-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.landing-price-list li {
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--landing-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.landing-price-list li:last-child { border-bottom: none; }
.landing-price-list i { color: var(--wa-teal); font-size: 1rem; }

.landing-price-card .btn-wa,
.landing-price-card .btn-wa-outline {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.9rem;
}

/* ─── Testimonials ─── */
.landing-testimonial-card {
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
}

.landing-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }

.landing-testimonial-quote {
    color: var(--landing-muted);
    line-height: 1.7;
    margin: 16px 0 20px;
    font-size: 0.95rem;
}

.landing-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wa-green), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.landing-testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

.landing-testimonial-author span {
    font-size: 0.8rem;
    color: var(--landing-muted);
}

/* ─── FAQ ─── */
.landing-faq .accordion-item {
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border) !important;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.landing-faq .accordion-button {
    background: var(--landing-card);
    color: #fff;
    font-weight: 600;
    box-shadow: none;
}

.landing-faq .accordion-button:not(.collapsed) {
    background: rgba(37, 211, 102, 0.08);
    color: var(--wa-teal);
}

.landing-faq .accordion-button::after {
    filter: invert(1);
}

.landing-faq .accordion-body {
    background: var(--landing-card);
    color: var(--landing-muted);
    line-height: 1.7;
}

/* ─── CTA ─── */
.landing-cta {
    background: linear-gradient(135deg, #0f1623 0%, var(--wa-green-dark) 100%);
    border-top: 1px solid var(--landing-card-border);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.landing-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(37, 211, 102, 0.15), transparent);
}

.landing-cta .container { position: relative; z-index: 1; }

.landing-cta h2 {
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
}

.landing-cta-sub {
    color: var(--landing-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 32px;
}

/* ─── Footer ─── */
.landing-footer {
    background: #060a12;
    color: #fff;
    padding: 64px 0 32px;
    border-top: 1px solid var(--landing-card-border);
}

.landing-footer h6 {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 16px;
}

.landing-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer-links li { margin-bottom: 10px; }

.landing-footer-links a {
    color: var(--landing-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}

.landing-footer-links a:hover { color: var(--wa-teal); }

.landing-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    color: var(--landing-muted);
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}

.landing-social a:hover {
    color: var(--wa-teal);
    border-color: rgba(37, 211, 102, 0.3);
}

.landing-footer-bottom {
    border-top: 1px solid var(--landing-card-border);
    padding-top: 24px;
    margin-top: 48px;
}

.landing-made-in {
    font-size: 0.85rem;
    color: var(--landing-muted);
}

.legal-footer-text {
    color: var(--landing-muted);
    font-size: 0.8rem;
}

.landing-page-body .billing-invoice-header {
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 10px;
    padding: 16px 20px;
    color: var(--landing-muted);
}

.landing-page-body .billing-invoice-header strong {
    color: #fff;
}

/* ─── Inner pages ─── */
.landing-page-header {
    background: linear-gradient(135deg, var(--landing-bg), var(--landing-bg-2));
    color: #fff;
    padding: 120px 0 56px;
    border-bottom: 1px solid var(--landing-card-border);
}

.landing-page-header h1 { font-weight: 800; margin: 0; }

.landing-page-body {
    padding: 48px 0 64px;
    background: var(--landing-bg);
    color: var(--landing-muted);
}

.landing-prose h3 {
    color: #fff;
    margin-top: 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.landing-prose p, .landing-prose li { line-height: 1.7; }

.landing-contact-form-card {
    background: var(--landing-card);
    border: 1px solid var(--landing-card-border);
    border-radius: 16px;
    padding: 32px;
}

.landing-contact-form-card .form-control,
.landing-contact-form-card .form-select {
    background: var(--landing-bg);
    border-color: var(--landing-card-border);
    color: #fff;
}

.landing-contact-form-card .form-control:focus {
    background: var(--landing-bg);
    border-color: var(--wa-teal);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.landing-contact-form-card .form-label { color: var(--landing-muted); }

.text-wa { color: var(--wa-teal); }

/* ─── Nav mobile ─── */
.landing-nav-menu.collapse:not(.show) { display: none; }

.landing-nav-toggle {
    color: #fff !important;
    border: none;
    background: none;
}

@media (max-width: 991px) {
    .landing-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--landing-bg);
        padding: 16px;
        flex-direction: column;
        align-items: stretch !important;
        border-bottom: 1px solid var(--landing-card-border);
    }
    .landing-nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 8px;
    }
    .btn-nav-trial { text-align: center; }
    .landing-hero-pills { grid-template-columns: 1fr; }
    .landing-dashboard-mock-body { grid-template-columns: 1fr; }
    .landing-mock-sidebar { display: none; }
    .landing-device-mock { flex-direction: column; align-items: center; }
    .landing-float-badge { display: none; }
}

@media (max-width: 767px) {
    .landing-hero { padding: 110px 0 60px; }
    .landing-section, .landing-showcase { padding: 64px 0; }
    .landing-cta { padding: 64px 0; }
}
