/* ============================================================
   BRANDING CROWN — LANDING PAGE STYLESHEET
   All classes prefixed .l- to avoid conflicts with style.css
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    --l-black:   #0A0A0A;
    --l-white:   #FAFAFA;
    --l-surface: #111111;
    --l-border:  rgba(255,255,255,0.10);
    --l-orange:  #FF5722;
    --l-orange-dim: rgba(255,87,34,0.15);
    --l-grey:    #888888;
    --l-light-bg: #F7F6F3;
    --l-light-border: #E8E8E4;
    --l-font-head: 'Plus Jakarta Sans', sans-serif;
    --l-font-body: 'Inter', sans-serif;
    --l-ease:    cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================
   2. BASE RESET (scoped to landing)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--l-font-body);
    background: var(--l-black);
    color: var(--l-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: auto !important; /* landing page uses native cursor */
}

/* override main site cursor:none globally */
body * { cursor: auto !important; }
body a, body button, body [role="button"], body summary { cursor: pointer !important; }

::selection { background: var(--l-orange); color: var(--l-white); }

*:focus { outline: none; }
*:focus-visible { outline: 2px solid var(--l-orange); outline-offset: 3px; border-radius: 4px; }

.l-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img { display: block; max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   3. PROGRESS BAR
   ============================================================ */
.l-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--l-orange);
    z-index: 9999;
    pointer-events: none;
    transition: width 0.08s linear;
}

/* ============================================================
   4. MOBILE STICKY CTA
   ============================================================ */
.l-sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--l-orange);
    z-index: 9000;
    padding: 16px 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s var(--l-ease);
    display: none;
}
.l-sticky-cta.is-visible { transform: translateY(0); }
.l-sticky-cta a {
    color: var(--l-white);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    font-family: var(--l-font-head);
}

@media (max-width: 768px) {
    .l-sticky-cta { display: block; }
}

/* ============================================================
   5. HEADER
   ============================================================ */
.l-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--l-border);
}
.l-header-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.l-logo {
    font-family: var(--l-font-head);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--l-white);
    text-decoration: none;
}
.l-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.l-header-proof {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    white-space: nowrap;
}
.l-header-cta { white-space: nowrap; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.l-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--l-orange);
    color: var(--l-white) !important;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--l-font-head);
    text-decoration: none;
    border: none;
    transition: background 0.25s, transform 0.3s var(--l-ease), box-shadow 0.3s;
    letter-spacing: -0.01em;
}
.l-btn-primary:hover {
    background: #e04e1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,87,34,0.35);
}
.l-btn-large { padding: 16px 36px; font-size: 1.05rem; }
.l-btn-white {
    background: var(--l-white);
    color: var(--l-black) !important;
    box-shadow: none;
}
.l-btn-white:hover { background: #eee; box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.l-btn-dark {
    background: var(--l-black);
    color: var(--l-white) !important;
}
.l-btn-dark:hover { background: #222; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.l-btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255,255,255,0.85) !important;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--l-font-head);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: border-color 0.25s, background 0.25s;
}
.l-btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ============================================================
   7. SHARED TYPOGRAPHY PATTERNS
   ============================================================ */
.l-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--l-orange);
    margin-bottom: 20px;
}
.l-eyebrow-dark { color: var(--l-orange); } /* same on light bg */

.l-section-heading {
    font-family: var(--l-font-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--l-white);
    margin-bottom: 24px;
}
.l-heading-dark { color: var(--l-black); }

.l-section-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    max-width: 620px;
    margin-bottom: 60px;
}

/* ============================================================
   8. HERO
   ============================================================ */
.l-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--l-black);
    overflow: hidden;
    padding: 120px 0 100px;
}

.l-hero-grain {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.l-hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(255,87,34,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.l-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.l-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}
.l-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--l-orange);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}
.l-badge-dot--light { background: var(--l-white); }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.l-hero-headline {
    font-family: var(--l-font-head);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--l-white);
    margin-bottom: 30px;
}

.l-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    max-width: 680px;
    margin-bottom: 44px;
}
.l-br-hide-sm { display: block; }

.l-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.l-hero-proof {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--l-border);
    padding-top: 40px;
    gap: 0;
}
.l-proof-item {
    display: flex;
    flex-direction: column;
    padding: 0 40px 0 0;
    min-width: 130px;
}
.l-proof-item:first-child { padding-left: 0; }
.l-proof-num {
    font-family: var(--l-font-head);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--l-white);
    line-height: 1;
    margin-bottom: 4px;
}
.l-proof-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.l-proof-div {
    width: 1px;
    height: 40px;
    background: var(--l-border);
    margin: 0 40px 0 0;
    flex-shrink: 0;
}

/* ============================================================
   9. CLIENTS MARQUEE
   ============================================================ */
.l-clients {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid var(--l-border);
    border-bottom: 1px solid var(--l-border);
    padding: 36px 0;
    overflow: hidden;
}
.l-clients-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
}
.l-clients-scroll {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.l-clients-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 0;
    animation: l-scroll-clients 35s linear infinite;
    font-family: var(--l-font-head);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
}
.l-clients-track span { padding: 0 10px; }
.l-client-dot { color: var(--l-orange) !important; opacity: 0.6; }
@keyframes l-scroll-clients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   10. PROBLEM / OPPORTUNITY
   ============================================================ */
.l-problem {
    padding: 140px 0;
    background: var(--l-black);
    border-bottom: 1px solid var(--l-border);
}
.l-problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.l-problem-heading {
    font-family: var(--l-font-head);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--l-white);
}
.l-problem-heading em {
    font-style: normal;
    color: var(--l-orange);
}
.l-problem-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}
.l-problem-body .l-btn-primary { margin-top: 10px; }

/* ============================================================
   11. SERVICES
   ============================================================ */
.l-services {
    padding: 140px 0;
    background: var(--l-light-bg);
    border-bottom: 1px solid var(--l-light-border);
}
.l-services .l-section-heading { color: var(--l-black); margin-bottom: 60px; }
.l-services .l-eyebrow { color: var(--l-orange); }

.l-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--l-light-border);
    border: 1px solid var(--l-light-border);
    border-radius: 20px;
    overflow: hidden;
}
.l-service-card {
    background: var(--l-white);
    padding: 40px 36px;
    transition: background 0.3s;
}
.l-service-card:hover { background: #F0EEE8; }
.l-service-icon {
    width: 50px;
    height: 50px;
    background: var(--l-light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--l-black);
    transition: background 0.3s;
}
.l-service-card:hover .l-service-icon { background: var(--l-orange-dim); color: var(--l-orange); }
.l-service-card h3 {
    font-family: var(--l-font-head);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--l-black);
    margin-bottom: 10px;
}
.l-service-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #666;
}

/* ============================================================
   12. METRICS
   ============================================================ */
.l-metrics {
    padding: 120px 0;
    background: var(--l-orange);
}
.l-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}
.l-metric { text-align: center; }
.l-metric-num {
    display: block;
    font-family: var(--l-font-head);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--l-white);
    line-height: 1;
    margin-bottom: 10px;
}
.l-metric-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

/* ============================================================
   13. CASE STUDIES
   ============================================================ */
.l-cases {
    padding: 140px 0;
    background: var(--l-black);
    border-top: 1px solid var(--l-border);
}
.l-cases .l-section-sub { color: rgba(255,255,255,0.55); }

.l-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.l-case-card {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s var(--l-ease), border-color 0.3s;
}
.l-case-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.2); }
.l-case-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1a;
}
.l-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--l-ease);
    opacity: 0.8;
}
.l-case-card:hover .l-case-img img { transform: scale(1.06); }
.l-case-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0,0,0,0.7);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.04em;
}
.l-case-body { padding: 30px 28px; }
.l-case-body h3 {
    font-family: var(--l-font-head);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--l-white);
}
.l-case-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
}
.l-case-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-top: 1px solid var(--l-border);
    padding-top: 20px;
}
.l-case-stat strong {
    display: block;
    font-family: var(--l-font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--l-orange);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.l-case-stat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    line-height: 1.3;
}

.l-cases-cta { text-align: center; }

/* ============================================================
   14. PROCESS
   ============================================================ */
.l-process {
    padding: 140px 0;
    background: var(--l-light-bg);
    border-top: 1px solid var(--l-light-border);
    border-bottom: 1px solid var(--l-light-border);
}
.l-process .l-section-heading { color: var(--l-black); max-width: 600px; }
.l-process .l-eyebrow { color: var(--l-orange); }

.l-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 70px;
}
.l-step {
    position: relative;
    padding-top: 20px;
    border-top: 3px solid var(--l-light-border);
    transition: border-color 0.3s;
}
.l-step:hover { border-top-color: var(--l-orange); }
.l-step-num {
    font-family: var(--l-font-head);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--l-orange);
    margin-bottom: 16px;
}
.l-step-body h3 {
    font-family: var(--l-font-head);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--l-black);
    margin-bottom: 14px;
}
.l-step-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.l-testimonials {
    padding: 140px 0;
    background: var(--l-black);
    border-top: 1px solid var(--l-border);
}

.l-testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
}
.l-testi-card {
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: 20px;
    padding: 36px;
    transition: border-color 0.3s;
}
.l-testi-card:hover { border-color: rgba(255,255,255,0.2); }
.l-testi-card--accent {
    background: var(--l-orange);
    border-color: transparent;
}
.l-testi-stars {
    color: #F5C518;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}
.l-testi-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    font-style: italic;
    flex: 1;
}
.l-testi-card--accent .l-testi-quote { color: rgba(255,255,255,0.95); }
.l-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--l-border);
    padding-top: 20px;
    font-style: normal;
}
.l-testi-card--accent .l-testi-author { border-top-color: rgba(255,255,255,0.25); }
.l-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--l-orange-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--l-orange);
    flex-shrink: 0;
}
.l-testi-card--accent .l-testi-avatar { background: rgba(255,255,255,0.2); color: var(--l-white); }
.l-testi-name {
    display: block;
    font-weight: 700;
    font-style: normal;
    color: var(--l-white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.l-testi-role {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.l-testi-card--accent .l-testi-role { color: rgba(255,255,255,0.7); }

/* ============================================================
   16. WHY US
   ============================================================ */
.l-why {
    padding: 140px 0;
    background: var(--l-light-bg);
    border-top: 1px solid var(--l-light-border);
    border-bottom: 1px solid var(--l-light-border);
}
.l-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.l-why-sub {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #666;
    margin-bottom: 40px;
    max-width: 440px;
}
.l-why-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--l-light-border);
}
.l-why-item:last-child { border-bottom: none; }
.l-why-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
}
.l-why-item h3 {
    font-family: var(--l-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--l-black);
    margin-bottom: 6px;
}
.l-why-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* ============================================================
   17. FAQ
   ============================================================ */
.l-faq {
    padding: 140px 0;
    background: var(--l-black);
    border-top: 1px solid var(--l-border);
}
.l-faq .l-section-heading { max-width: 500px; margin-bottom: 60px; }
.l-faq-list { max-width: 780px; }

.l-faq-item {
    border-top: 1px solid var(--l-border);
}
.l-faq-item:last-child { border-bottom: 1px solid var(--l-border); }

.l-faq-q {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--l-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--l-white);
    list-style: none;
    transition: color 0.2s;
}
.l-faq-q::-webkit-details-marker { display: none; }
.l-faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--l-orange);
    flex-shrink: 0;
    transition: transform 0.3s var(--l-ease);
    line-height: 1;
}
.l-faq-item[open] .l-faq-q::after { transform: rotate(45deg); }
.l-faq-item[open] .l-faq-q { color: var(--l-orange); }

.l-faq-a {
    padding: 0 0 28px 0;
}
.l-faq-a p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    max-width: 680px;
}

/* ============================================================
   18. LEAD CAPTURE FORM
   ============================================================ */
.l-form-section {
    padding: 140px 0;
    background: var(--l-light-bg);
    border-top: 1px solid var(--l-light-border);
}
.l-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.l-form-left .l-section-heading { color: var(--l-black); }
.l-form-left .l-eyebrow { color: var(--l-orange); }
.l-form-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 34px;
    max-width: 460px;
}
.l-form-promises {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.l-form-promises li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #444;
}
.l-form-promises svg { flex-shrink: 0; }

/* Form inputs */
.l-field-group {
    margin-bottom: 28px;
}
.l-field-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.l-label-sm { font-size: 0.88rem !important; font-weight: 600; color: #333; display: block; margin-bottom: 12px; }
.l-req { color: var(--l-orange); font-weight: 700; }
.l-field-group input,
.l-field-group textarea {
    width: 100%;
    background: var(--l-white);
    border: 1.5px solid var(--l-light-border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: var(--l-font-body);
    color: var(--l-black);
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}
.l-field-group input:focus,
.l-field-group textarea:focus {
    outline: none;
    border-color: var(--l-orange);
    box-shadow: 0 0 0 3px rgba(255,87,34,0.1);
}
.l-field-group input[aria-invalid="true"] { border-color: #D82929; }
.l-field-group textarea { min-height: 90px; }

.l-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.l-check { display: inline-flex; }
.l-check input { display: none; }
.l-check span {
    display: inline-block;
    padding: 8px 16px;
    border: 1.5px solid var(--l-light-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    transition: all 0.2s;
    background: var(--l-white);
}
.l-check:hover span { border-color: var(--l-black); }
.l-check input:checked + span { background: var(--l-black); color: var(--l-white); border-color: var(--l-black); }

.l-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--l-black);
    color: var(--l-white);
    border: none;
    border-radius: 12px;
    font-family: var(--l-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 16px;
    transition: background 0.25s, transform 0.3s var(--l-ease);
    letter-spacing: -0.01em;
}
.l-submit-btn:hover { background: #222; transform: translateY(-2px); }
.l-submit-btn:disabled { opacity: 0.6; }
.l-form-privacy {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.5;
}

/* ============================================================
   19. FINAL CTA
   ============================================================ */
.l-final-cta {
    padding: 160px 0;
    background: var(--l-black);
    border-top: 1px solid var(--l-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.l-final-cta::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255,87,34,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.l-final-inner { position: relative; z-index: 1; }
.l-final-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
}
.l-final-heading {
    font-family: var(--l-font-head);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--l-white);
    margin-bottom: 24px;
}
.l-final-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
    max-width: 580px;
    margin: 0 auto 50px;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.l-footer {
    background: var(--l-surface);
    border-top: 1px solid var(--l-border);
    padding: 50px 0;
}
.l-footer-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
.l-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--l-border);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.l-footer-brand {
    font-family: var(--l-font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--l-white);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.l-footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.l-footer-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.l-footer-nav a:hover { color: var(--l-white); }
.l-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.l-footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   21. REVEAL ANIMATIONS (applied by landing.js)
   ============================================================ */
[data-l-fade] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--l-ease), transform 0.8s var(--l-ease); }
[data-l-fade].l-visible { opacity: 1; transform: translateY(0); }
[data-l-reveal] { opacity: 0; transition: opacity 0.9s var(--l-ease); }
[data-l-reveal].l-visible { opacity: 1; }

/* ============================================================
   22. MEDIA QUERIES
   ============================================================ */
@media (max-width: 1100px) {
    .l-services-grid { grid-template-columns: repeat(2, 1fr); }
    .l-cases-grid { grid-template-columns: 1fr 1fr; }
    .l-cases-grid .l-case-card:last-child { grid-column: span 2; }
    .l-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .l-testi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .l-problem-inner { grid-template-columns: 1fr; gap: 40px; }
    .l-why-grid { grid-template-columns: 1fr; gap: 50px; }
    .l-form-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .l-steps { grid-template-columns: 1fr; gap: 0; }
    .l-step { padding: 24px 0; border-top: none; border-left: 3px solid var(--l-light-border); padding-left: 24px; margin-bottom: 30px; }
    .l-step:hover { border-left-color: var(--l-orange); border-top-color: transparent; }
    .l-header-proof { display: none; }
    .l-hero-proof { gap: 30px; flex-wrap: wrap; }
    .l-proof-div { display: none; }
    .l-proof-item { padding-right: 0; min-width: 120px; }
}

@media (max-width: 768px) {
    .l-hero { padding: 100px 0 80px; }
    .l-hero-headline { font-size: clamp(2.5rem, 11vw, 3rem); }
    .l-hero-ctas { flex-direction: column; align-items: flex-start; }
    .l-btn-large { width: 100%; justify-content: center; }
    .l-btn-ghost { width: 100%; justify-content: center; }
    .l-services-grid { grid-template-columns: 1fr; gap: 1px; }
    .l-services-grid .l-service-card:first-child { border-radius: 0; }
    .l-cases-grid { grid-template-columns: 1fr; }
    .l-cases-grid .l-case-card:last-child { grid-column: span 1; }
    .l-testi-grid { grid-template-columns: 1fr; }
    .l-metrics-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .l-problem { padding: 80px 0; }
    .l-services, .l-metrics, .l-cases, .l-process, .l-testimonials, .l-why, .l-faq, .l-form-section { padding: 80px 0; }
    .l-final-cta { padding: 100px 0; }
    .l-final-heading { font-size: clamp(2.5rem, 12vw, 3.5rem); }
    .l-footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
    .l-br-hide-sm { display: none; }
    /* Extra bottom padding when sticky CTA is showing */
    body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
    .l-hero-headline { font-size: clamp(2.2rem, 12vw, 2.8rem); }
    .l-section-heading { font-size: clamp(1.8rem, 8vw, 2.2rem); }
    .l-metrics-grid { grid-template-columns: 1fr; gap: 30px; }
    .l-cases-grid .l-case-card:last-child { grid-column: span 1; }
    .l-hero-proof { gap: 20px; }
    .l-proof-item { min-width: 0; flex: 0 0 40%; }
}
