/* BillFlow Pro — Marketing (enterprise light) */
:root {
    --lp-bg: #f6f7f9;
    --lp-bg-white: #ffffff;
    --lp-ink: #0f172a;
    --lp-ink-secondary: #334155;
    --lp-muted: #64748b;
    --lp-border: #e2e8f0;
    --lp-border-strong: #cbd5e1;
    --lp-accent: #4f46e5;
    --lp-accent-hover: #4338ca;
    --lp-accent-soft: #eef2ff;
    --lp-accent-muted: #e0e7ff;
    --lp-success: #059669;
    --lp-radius: 12px;
    --lp-radius-lg: 16px;
    --lp-font: 'Inter', system-ui, -apple-system, sans-serif;
    --lp-font-ar: 'Cairo', 'Inter', system-ui, sans-serif;
    --lp-max: 1140px;
    --lp-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --lp-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08), 0 12px 48px -12px rgba(15, 23, 42, 0.06);
    --lp-shadow-lg: 0 24px 64px -16px rgba(15, 23, 42, 0.12);
}

html.landing-html { scroll-behavior: smooth; }

.landing-body {
    margin: 0;
    font-family: var(--lp-font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--lp-ink-secondary);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.rtl .landing-body { font-family: var(--lp-font-ar); }

.lp-wrap {
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* —— Nav —— */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px) saturate(1.2);
    border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner {
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--lp-ink);
    font-weight: 650;
    font-size: 1.0625rem;
    letter-spacing: -0.02em;
}
.lp-logo-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    background: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
}
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.lp-nav-links a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s;
}
.lp-nav-links a:hover { color: var(--lp-ink); }
.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.lp-nav .bf-lang-switch {
    display: inline-flex;
    gap: 1px;
    padding: 2px;
    border-radius: 8px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
}
.lp-nav .bf-lang-btn {
    padding: 0.2rem 0.45rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--lp-muted);
    text-decoration: none;
    border-radius: 6px;
}
.lp-nav .bf-lang-btn.is-active {
    background: var(--lp-bg-white);
    color: var(--lp-ink);
    box-shadow: var(--lp-shadow-sm);
}
.lp-nav-toggle {
    display: none;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    color: var(--lp-ink);
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    font-size: 0.8125rem;
    cursor: pointer;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5625rem 1.125rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    font-family: inherit;
}
.lp-btn--primary {
    background: var(--lp-accent);
    color: #fff;
}
.lp-btn--primary:hover { background: var(--lp-accent-hover); }
.lp-btn--outline {
    background: var(--lp-bg-white);
    color: var(--lp-ink);
    border: 1px solid var(--lp-border-strong);
}
.lp-btn--outline:hover {
    border-color: var(--lp-ink);
    background: var(--lp-bg);
}
.lp-btn--white {
    background: #fff;
    color: var(--lp-ink);
    border: 1px solid var(--lp-border);
}
.lp-btn--white:hover { background: var(--lp-bg); }
.lp-btn--lg {
    padding: 0.75rem 1.375rem;
    font-size: 0.9375rem;
}

/* —— Hero —— */
.lp-hero {
    padding: 3.5rem 0 4rem;
    background: var(--lp-bg-white);
    border-bottom: 1px solid var(--lp-border);
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}
.lp-kicker {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-accent);
    margin: 0 0 1rem;
}
.lp-hero h1 {
    font-size: clamp(2.125rem, 4.2vw, 2.875rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: var(--lp-ink);
    margin: 0 0 1.125rem;
    max-width: 14ch;
}
.lp-hero-lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--lp-muted);
    max-width: 34rem;
    margin: 0 0 1.75rem;
}
.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 2rem;
}
.lp-trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-hero-note {
    margin: -1rem 0 1.25rem;
    font-size: 0.8125rem;
    color: var(--lp-muted);
}
.lp-trust-tags li {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--lp-ink-secondary);
    padding: 0.35rem 0.75rem;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: 6px;
}

/* Stats */
.lp-stats {
    background: var(--lp-ink);
    color: #e2e8f0;
    padding: 2rem 0;
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.lp-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 650;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}
.lp-stat span {
    font-size: 0.8125rem;
    color: #94a3b8;
}
.lp-hero-shot { margin: 0; }
.lp-shot-caption {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: var(--lp-muted);
    text-align: center;
}

/* Screenshots */
.lp-shot {
    margin: 0;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    background: var(--lp-bg-white);
    box-shadow: var(--lp-shadow);
    overflow: hidden;
}
.lp-shot--hero { box-shadow: var(--lp-shadow-lg); }
.lp-shot-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.625rem 0.875rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--lp-border);
}
.lp-shot-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}
.lp-shot-dot:nth-child(1) { background: #f87171; }
.lp-shot-dot:nth-child(2) { background: #fbbf24; }
.lp-shot-dot:nth-child(3) { background: #4ade80; }
.lp-shot-url {
    flex: 1;
    margin-inline-start: 6px;
    padding: 0.25rem 0.625rem;
    border-radius: 5px;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    font-size: 0.6875rem;
    color: var(--lp-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lp-shot-screen {
    background: #f8fafc;
    line-height: 0;
}
.lp-shot-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* —— Sections —— */
.lp-section {
    padding: 5rem 0;
}
.lp-section--white { background: var(--lp-bg-white); }
.lp-section--muted { background: var(--lp-bg); }
.lp-section--dark {
    background: var(--lp-ink);
    color: #94a3b8;
}
.lp-section--dark h2,
.lp-section--dark h3 { color: #f8fafc; }
.lp-section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--lp-accent);
    margin-bottom: 0.75rem;
}
.lp-section--dark .lp-section-label { color: #a5b4fc; }
.lp-section-head {
    max-width: 36rem;
    margin-bottom: 2.75rem;
}
.lp-section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.lp-section-head h2 {
    font-size: clamp(1.625rem, 2.8vw, 2.125rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    color: var(--lp-ink);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
.lp-section-head p {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--lp-muted);
    line-height: 1.6;
}

/* Showcase */
.lp-showcase {
    display: grid;
    gap: 1.5rem;
}
.lp-showcase-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    border-bottom: 1px solid var(--lp-border);
    margin-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.lp-showcase-nav::-webkit-scrollbar { display: none; }
.lp-showcase-tab {
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    color: var(--lp-muted);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.15s, border-color 0.15s;
}
.lp-showcase-tab:hover { color: var(--lp-ink); }
.lp-showcase-tab.is-active {
    color: var(--lp-accent);
    border-bottom-color: var(--lp-accent);
}
.lp-showcase-panel { display: none; }
.lp-showcase-panel.is-active {
    display: block;
    animation: lp-in 0.4s ease;
}
@keyframes lp-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lp-showcase-cta {
    text-align: center;
    margin-top: 1.75rem;
}

/* Feature cards with screenshots */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.lp-feature-card {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}
.lp-feature-card:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-2px);
}
.lp-feature-media {
    background: #f1f5f9;
    border-bottom: 1px solid var(--lp-border);
    line-height: 0;
    max-height: 220px;
    overflow: hidden;
}
.lp-feature-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top left;
}
.lp-feature-body {
    padding: 1.25rem 1.35rem 1.35rem;
}
.lp-feature-body h3 {
    margin: 0 0 0.4rem;
    font-size: 1.0625rem;
    font-weight: 650;
    color: var(--lp-ink);
    letter-spacing: -0.02em;
}
.lp-feature-body p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--lp-muted);
}

/* Gallery */
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.lp-gallery-item {
    margin: 0;
}
.lp-gallery-img {
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    overflow: hidden;
    background: #f8fafc;
    box-shadow: var(--lp-shadow-sm);
    line-height: 0;
}
.lp-gallery-img img {
    width: 100%;
    height: auto;
    display: block;
}
.lp-gallery-item figcaption {
    margin-top: 0.6rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-ink-secondary);
    text-align: center;
}

/* CTA band */
.lp-cta-band {
    background: linear-gradient(135deg, var(--lp-accent) 0%, #3730a3 100%);
    color: #e0e7ff;
    padding: 3.5rem 0;
}
.lp-cta-band-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.lp-cta-band h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 650;
    color: #fff;
    letter-spacing: -0.03em;
}
.lp-cta-band p {
    margin: 0;
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.55;
}
.lp-cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.lp-btn--on-dark {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    background: transparent;
}
.lp-btn--on-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Split */
.lp-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 4rem;
    align-items: center;
}
.lp-split h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    color: var(--lp-ink);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
.lp-split-lead {
    margin: 0 0 1.5rem;
    color: var(--lp-muted);
    font-size: 1rem;
}
.lp-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-checklist li {
    position: relative;
    padding-inline-start: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--lp-ink-secondary);
    line-height: 1.5;
}
.lp-checklist li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-accent);
}

/* Pricing */
.lp-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}
.lp-plan {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}
.lp-plan--featured {
    border-color: var(--lp-accent);
    box-shadow: inset 0 0 0 1px var(--lp-accent), var(--lp-shadow);
}
.lp-plan .lp-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    margin-top: auto;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
}
.lp-plan-tier {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin: 0 0 0.5rem;
}
.lp-plan--featured .lp-plan-tier { color: var(--lp-accent); }
.lp-plan h3 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    font-weight: 650;
    color: var(--lp-ink);
    letter-spacing: -0.02em;
}
.lp-plan-price {
    font-size: 1.75rem;
    font-weight: 650;
    color: var(--lp-ink);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.lp-plan-desc {
    font-size: 0.875rem;
    color: var(--lp-muted);
    margin: 0 0 1.25rem;
    flex: 1;
    line-height: 1.55;
}
.lp-plan ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    font-size: 0.875rem;
    color: var(--lp-ink-secondary);
}
.lp-plan ul li {
    padding: 0.3rem 0;
    padding-inline-start: 1.125rem;
    position: relative;
}
.lp-plan ul li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 1px;
    background: var(--lp-border-strong);
}
.lp-plan--featured ul li::before { background: var(--lp-accent); }

/* FAQ */
.lp-faq {
    max-width: 42rem;
    margin: 0 auto;
}
.lp-faq details {
    border-bottom: 1px solid var(--lp-border);
    padding: 0;
}
.lp-faq details:first-child { border-top: 1px solid var(--lp-border); }
.lp-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 0;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--lp-ink);
    cursor: pointer;
    list-style: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: '+';
    flex-shrink: 0;
    font-weight: 400;
    color: var(--lp-muted);
}
.lp-faq details[open] summary::after { content: '−'; }
.lp-faq p {
    margin: 0 0 1.125rem;
    padding-bottom: 0.25rem;
    font-size: 0.9375rem;
    color: var(--lp-muted);
    line-height: 1.6;
}

/* Contact */
.lp-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: start;
}
.lp-contact-grid h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    color: #f8fafc;
    margin: 0 0 0.75rem;
}
.lp-contact-lead {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 28rem;
}
.lp-contact-points {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}
.lp-contact-points li {
    position: relative;
    padding-inline-start: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: 0.9375rem;
    color: #cbd5e1;
}
.lp-contact-points li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #818cf8;
}
.lp-contact-meta {
    margin: 1.5rem 0 0;
    font-size: 0.875rem;
    color: #64748b;
}
.lp-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.lp-contact-channel {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.lp-contact-channel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(148, 163, 184, 0.55);
}
.lp-contact-channel--wa {
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.08);
}
.lp-contact-channel--wa:hover {
    background: rgba(37, 211, 102, 0.14);
    border-color: rgba(37, 211, 102, 0.65);
}
.lp-contact-channel-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}
.lp-contact-channel--wa .lp-contact-channel-label { color: #86efac; }
.lp-contact-channel-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f8fafc;
}
.lp-btn--block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    margin-top: 0.5rem;
}
.lp-btn--whatsapp {
    background: #25d366;
    color: #fff;
}
.lp-btn--whatsapp:hover { background: #1ebe57; }
.lp-form-trust {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: var(--lp-muted);
    text-align: center;
}

/* Floating WhatsApp */
.lp-wa-float {
    position: fixed;
    z-index: 95;
    inset-inline-end: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem 0.65rem 0.65rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow:
        0 4px 14px rgba(37, 211, 102, 0.45),
        0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.3s ease;
}
.lp-wa-float:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.5),
        0 10px 28px rgba(15, 23, 42, 0.14);
}
.lp-wa-float.is-raised {
    bottom: 4.75rem;
}
.lp-wa-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}
.lp-wa-float-text {
    font-size: 0.875rem;
    font-weight: 650;
    padding-inline-end: 0.35rem;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .lp-wa-float {
        padding: 0;
        width: 3.25rem;
        height: 3.25rem;
        justify-content: center;
        inset-inline-end: 1rem;
        bottom: 1rem;
    }
    .lp-wa-float.is-raised {
        bottom: 4.5rem;
    }
    .lp-wa-float-icon {
        width: 100%;
        height: 100%;
        background: transparent;
    }
    .lp-wa-float-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

/* Sticky CTA */
.lp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--lp-border);
    box-shadow: 0 -8px 32px -8px rgba(15, 23, 42, 0.12);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.lp-sticky-cta.is-visible {
    transform: translateY(0);
}
.lp-sticky-cta[hidden] { display: none; }
.lp-sticky-cta p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-ink);
}
.lp-form {
    background: var(--lp-bg-white);
    border-radius: var(--lp-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--lp-shadow-lg);
}
.lp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}
.lp-form-grid .lp-field--full { grid-column: 1 / -1; }
.lp-field { margin-bottom: 0.25rem; }
.lp-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--lp-ink);
}
.lp-form input,
.lp-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--lp-border);
    background: var(--lp-bg-white);
    color: var(--lp-ink);
    font: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-form input:focus,
.lp-form textarea:focus {
    outline: none;
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px var(--lp-accent-muted);
}
.lp-form textarea {
    min-height: 96px;
    resize: vertical;
}
.lp-alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.lp-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
}
.lp-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

/* Footer */
.lp-footer {
    padding: 2rem 0;
    background: var(--lp-bg-white);
    border-top: 1px solid var(--lp-border);
    font-size: 0.8125rem;
    color: var(--lp-muted);
}
.lp-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.lp-footer a {
    color: var(--lp-muted);
    text-decoration: none;
}
.lp-footer a:hover { color: var(--lp-ink); }

/* Reveal */
.lp-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.lp-reveal--visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 960px) {
    .lp-hero-grid,
    .lp-split,
    .lp-contact-grid { grid-template-columns: 1fr; }
    .lp-feature-grid,
    .lp-gallery { grid-template-columns: 1fr; }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-pricing { grid-template-columns: 1fr; }
    .lp-cta-band-inner { flex-direction: column; align-items: flex-start; }
    .lp-form-grid { grid-template-columns: 1fr; }
    .lp-hero h1 { max-width: none; }
    .lp-hero-shot { order: -1; }
    .lp-nav-toggle { display: block; }
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--lp-bg-white);
        padding: 0.5rem 1.5rem 1rem;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: var(--lp-shadow);
    }
    .lp-nav-links a {
        display: block;
        width: 100%;
        padding: 0.65rem 0;
    }
    .lp-nav-links.is-open { display: flex; }
    .lp-nav { position: relative; }
    .lp-nav-actions .lp-btn--outline { display: none; }
}
