/* ==================================================
   LEMON LAVISH CASE STUDY — DEDICATED STYLESHEET
   Nexovex High-Leverage API Composition & Boutique Web Design
   ================================================== */

:root {
    --ll-citrus: #EAB308;
    --ll-citrus-glow: #FACC15;
    --ll-citrus-pale: #FFFDF0;
    --ll-citrus-light: rgba(234, 179, 8, 0.09);
    --ll-citrus-border: rgba(234, 179, 8, 0.28);
    --ll-amber: #D97706;
    --ll-amber-dark: #B45309;
    --ll-amber-light: rgba(217, 119, 6, 0.09);
    --ll-amber-border: rgba(217, 119, 6, 0.26);
    --ll-olive: #65A30D;
    --ll-olive-dark: #4D7C0F;
    --ll-olive-light: rgba(101, 163, 13, 0.09);
    --ll-olive-border: rgba(101, 163, 13, 0.26);
    --ll-sky: #0284C7;
    --ll-sky-light: rgba(2, 132, 199, 0.09);
    --ll-sky-border: rgba(2, 132, 199, 0.26);
    --ll-canvas: #FAF7F2;
    --ll-canvas-alt: #F4EFE6;
    --ll-card-bg: #FFFFFF;
    --ll-slate: #1C1917;
    --ll-slate-dark: #141210;
    --ll-slate-deep: #0C0A09;
    --ll-text: #1C1917;
    --ll-text-muted: #57534E;
    --ll-text-light: #78716C;
    --ll-border: rgba(28, 25, 23, 0.08);
    --ll-border-hover: rgba(234, 179, 8, 0.45);
    --ll-shadow-sm: 0 4px 20px rgba(28, 25, 23, 0.04);
    --ll-shadow-md: 0 12px 36px rgba(28, 25, 23, 0.08);
    --ll-shadow-lg: 0 24px 60px rgba(28, 25, 23, 0.12);
    --ll-radius-sm: 8px;
    --ll-radius-md: 14px;
    --ll-radius-lg: 20px;
    --ll-radius-xl: 28px;
}

body.lemonlavish-page {
    background-color: var(--ll-canvas);
    color: var(--ll-text);
    font-family: var(--font-sans), sans-serif;
    overflow-x: hidden;
}

/* ==================================================
   CASE STUDY SUB-HEADER
   ================================================== */
.lemonlavish-sub-header {
    position: sticky;
    top: 84px;
    z-index: 990;
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ll-border);
    box-shadow: 0 4px 20px rgba(28, 25, 23, 0.04);
    height: 56px;
    display: flex;
    align-items: center;
    transition: top 0.25s ease, background-color 0.25s ease;
}

.lemonlavish-sub-header .sub-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
}

.lemonlavish-sub-header .sub-header-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lemonlavish-sub-header .sub-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--ll-slate);
}

.lemonlavish-sub-header .sub-header-divider {
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--ll-border);
}

.lemonlavish-sub-header .sub-header-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 6px;
}

.lemonlavish-sub-header .sub-header-nav {
    display: flex;
    align-items: center;
}

.lemonlavish-sub-header .sub-nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lemonlavish-sub-header .sub-nav-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ll-text-muted);
    text-decoration: none;
    position: relative;
    padding: 0.35rem 0;
    transition: color 0.2s ease;
}

.lemonlavish-sub-header .sub-nav-link:hover,
.lemonlavish-sub-header .sub-nav-link.active {
    color: var(--ll-amber-dark);
}

.lemonlavish-sub-header .sub-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ll-citrus), var(--ll-amber), var(--ll-olive));
    border-radius: 2px;
}

.lemonlavish-live-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ll-citrus);
    box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7);
    display: inline-block;
    flex-shrink: 0;
    animation: livePulseDotLL 2s infinite;
}

@keyframes livePulseDotLL {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(234, 179, 8, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0);
    }
}

.lemonlavish-sub-header .sub-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lemonlavish-sub-header .sub-header-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ll-border);
    padding: 0.35rem;
    border-radius: 6px;
    color: var(--ll-text);
    cursor: pointer;
}

/* Mobile Sub-Header Drawer */
@media (max-width: 992px) {
    .lemonlavish-sub-header .sub-header-nav {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--ll-border);
        box-shadow: 0 12px 30px rgba(28, 25, 23, 0.08);
        padding: 1.25rem 1.5rem;
        display: none;
        flex-direction: column;
    }
    .lemonlavish-sub-header .sub-header-nav.is-open {
        display: flex;
    }
    .lemonlavish-sub-header .sub-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        width: 100%;
    }
    .lemonlavish-sub-header .sub-nav-link {
        font-size: 0.92rem;
        padding: 0.4rem 0;
        width: 100%;
    }
    .lemonlavish-sub-header .sub-nav-link.active::after {
        display: none;
    }
    .lemonlavish-sub-header .sub-header-mobile-toggle {
        display: inline-flex;
    }
}

/* ==================================================
   HERO SECTION
   ================================================== */
.ll-hero-section {
    position: relative;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
    background: radial-gradient(circle at 85% 15%, rgba(234, 179, 8, 0.10) 0%, transparent 55%),
                radial-gradient(circle at 10% 85%, rgba(101, 163, 13, 0.08) 0%, transparent 50%),
                var(--ll-canvas);
}

.ll-hero-bg-accent {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.12) 0%, rgba(217, 119, 6, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.ll-hero-bg-accent-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(101, 163, 13, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.ll-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ll-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ll-amber-dark);
    background: var(--ll-citrus-light);
    border: 1px solid var(--ll-citrus-border);
    padding: 6px 14px;
    border-radius: 9999px;
    margin-bottom: 1.35rem;
}

.ll-eyebrow-pill {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ll-citrus);
    display: inline-block;
}

.ll-hero-title {
    font-size: clamp(2.35rem, 3.8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--ll-slate);
    margin-bottom: 1.35rem;
}

.ll-hero-title-italic {
    font-family: var(--font-serif), Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--ll-amber-dark);
    letter-spacing: -0.01em;
}

.ll-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ll-text-muted);
    max-width: 580px;
    margin-bottom: 1.85rem;
}

.ll-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.ll-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ll-slate);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--ll-border);
    padding: 6px 13px;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(28, 25, 23, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ll-chip:hover {
    transform: translateY(-1px);
    border-color: var(--ll-citrus-border);
}

.ll-chip svg {
    color: var(--ll-amber-dark);
}

.ll-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.15rem;
    margin-top: 1.6rem;
}

.ll-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #EAB308 0%, #D97706 100%);
    color: #FFFFFF;
    padding: 0.95rem 2.15rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px -4px rgba(217, 119, 6, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
    cursor: pointer;
    border: none;
}

.ll-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -4px rgba(217, 119, 6, 0.52), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.ll-hero-btn-primary svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.ll-hero-btn-primary:hover svg {
    transform: translateX(3px);
}

.ll-hero-btn-live {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #FFFFFF;
    color: var(--ll-slate);
    border: 1.5px solid rgba(28, 25, 23, 0.14);
    padding: 0.9rem 1.95rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(28, 25, 23, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
    cursor: pointer;
}

.ll-hero-btn-live:hover {
    transform: translateY(-2px);
    border-color: var(--ll-citrus);
    color: var(--ll-amber-dark);
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.2);
}

.ll-hero-btn-live svg {
    color: var(--ll-text-light);
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.ll-hero-btn-live:hover svg {
    color: var(--ll-amber-dark);
    transform: translate(2px, -2px);
}

/* Hero Visual & Glass Floating Badges */
.ll-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ll-hero-preview-frame {
    position: relative;
    border-radius: var(--ll-radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 60px -12px rgba(28, 25, 23, 0.16), 0 0 0 1px rgba(28, 25, 23, 0.06);
    background: #FFFFFF;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ll-hero-preview-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px -12px rgba(28, 25, 23, 0.22), 0 0 0 1px rgba(234, 179, 8, 0.2);
}

.ll-hero-preview-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ll-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 34px -4px rgba(28, 25, 23, 0.12), 0 0 0 1px rgba(28, 25, 23, 0.05);
    border-radius: var(--ll-radius-md);
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.ll-float-card-1 {
    top: 25px;
    left: -20px;
    animation: floatCard1 6s ease-in-out infinite;
}

.ll-float-card-2 {
    bottom: 25px;
    right: -20px;
    animation: floatCard2 6.5s ease-in-out 0.8s infinite;
}

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

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

.ll-float-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ll-float-icon.citrus {
    background: var(--ll-citrus-light);
    color: var(--ll-amber-dark);
    border: 1px solid var(--ll-citrus-border);
}

.ll-float-icon.olive {
    background: var(--ll-olive-light);
    color: var(--ll-olive-dark);
    border: 1px solid var(--ll-olive-border);
}

.ll-float-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ll-text-light);
    margin-bottom: 2px;
}

.ll-float-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ll-slate);
}

/* ==================================================
   EXECUTIVE BRIEF BAR
   ================================================== */
.ll-brief-section {
    padding: 2.25rem 0;
    background: #FFFFFF;
    border-top: 1px solid var(--ll-border);
    border-bottom: 1px solid var(--ll-border);
}

.ll-brief-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ll-brief-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ll-brief-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ll-text-light);
}

.ll-brief-label svg {
    color: var(--ll-amber);
}

.ll-brief-value {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ll-slate);
    line-height: 1.35;
}

.ll-brief-sub {
    font-size: 0.8rem;
    color: var(--ll-text-muted);
}

/* ==================================================
   SECTION HEADERS & SHARED LAYOUT
   ================================================== */
.ll-section {
    padding: 6.5rem 0;
    position: relative;
}

.ll-section-header {
    max-width: 760px;
    margin: 0 auto 3.75rem;
    text-align: center;
}

.ll-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ll-amber-dark);
    margin-bottom: 0.85rem;
}

.ll-section-title {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--ll-slate);
    margin-bottom: 1.15rem;
}

.ll-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.68;
    color: var(--ll-text-muted);
}

/* ==================================================
   ARCHITECTURAL BOTTLENECKS / CHALLENGES
   ================================================== */
.ll-bottlenecks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.ll-bottleneck-card {
    background: #FFFFFF;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 2.25rem;
    box-shadow: var(--ll-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ll-bottleneck-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ll-shadow-md);
    border-color: rgba(217, 119, 6, 0.28);
}

.ll-bottleneck-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.ll-bottleneck-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--ll-amber-dark);
    background: var(--ll-amber-light);
    border: 1px solid var(--ll-amber-border);
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.ll-bottleneck-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #DC2626;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.22);
    padding: 3px 9px;
    border-radius: 9999px;
}

.ll-bottleneck-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ll-slate);
    margin-bottom: 0.85rem;
    line-height: 1.28;
}

.ll-bottleneck-desc {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--ll-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ll-bottleneck-impact {
    background: var(--ll-canvas-alt);
    border-radius: var(--ll-radius-sm);
    padding: 1rem 1.15rem;
    border-left: 3px solid #DC2626;
}

.ll-bottleneck-impact-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #DC2626;
    margin-bottom: 3px;
}

.ll-bottleneck-impact-text {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ll-slate);
    line-height: 1.4;
}

/* ==================================================
   ENGINEERED SOLUTION PILLARS
   ================================================== */
.ll-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.85rem;
}

.ll-solution-card {
    background: #FFFFFF;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--ll-shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ll-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ll-citrus), var(--ll-amber), var(--ll-olive));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.ll-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ll-shadow-md);
    border-color: var(--ll-citrus-border);
}

.ll-solution-card:hover::before {
    opacity: 1;
}

.ll-solution-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.ll-solution-icon-wrap.citrus {
    background: var(--ll-citrus-light);
    color: var(--ll-amber-dark);
    border: 1px solid var(--ll-citrus-border);
}

.ll-solution-icon-wrap.olive {
    background: var(--ll-olive-light);
    color: var(--ll-olive-dark);
    border: 1px solid var(--ll-olive-border);
}

.ll-solution-icon-wrap.amber {
    background: var(--ll-amber-light);
    color: var(--ll-amber-dark);
    border: 1px solid var(--ll-amber-border);
}

.ll-solution-icon-wrap.sky {
    background: var(--ll-sky-light);
    color: var(--ll-sky);
    border: 1px solid var(--ll-sky-border);
}

.ll-solution-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ll-slate);
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.ll-solution-desc {
    font-size: 0.95rem;
    line-height: 1.68;
    color: var(--ll-text-muted);
    margin-bottom: 1.65rem;
    flex-grow: 1;
}

.ll-solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ll-sol-tag {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--ll-slate);
    background: var(--ll-canvas-alt);
    border: 1px solid var(--ll-border);
    padding: 3px 9px;
    border-radius: 6px;
}

.ll-solution-takeaway {
    background: var(--ll-canvas);
    border-radius: var(--ll-radius-sm);
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--ll-olive);
}

.ll-solution-takeaway-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ll-olive-dark);
    margin-bottom: 3px;
}

.ll-solution-takeaway-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ll-slate);
    line-height: 1.4;
}

/* ==================================================
   INTERACTIVE SYSTEM FLOW & TELEMETRY ENGINE
   ================================================== */
.ll-flow-card {
    background: #FFFFFF;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-xl);
    box-shadow: var(--ll-shadow-lg);
    overflow: hidden;
}

.ll-flow-nav {
    display: flex;
    background: var(--ll-canvas-alt);
    border-bottom: 1px solid var(--ll-border);
    overflow-x: auto;
    scrollbar-width: none;
}

.ll-flow-nav::-webkit-scrollbar {
    display: none;
}

.ll-flow-tab-btn {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ll-text-muted);
    transition: all 0.2s ease;
    text-align: left;
}

.ll-flow-tab-btn:hover {
    color: var(--ll-slate);
    background: rgba(255, 255, 255, 0.5);
}

.ll-flow-tab-btn.active {
    color: var(--ll-slate);
    background: #FFFFFF;
    border-bottom-color: var(--ll-amber-dark);
    font-weight: 700;
}

.ll-flow-tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ll-canvas);
    color: var(--ll-amber-dark);
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.ll-flow-tab-btn.active .ll-flow-tab-icon {
    background: var(--ll-citrus-light);
    color: var(--ll-amber-dark);
}

.ll-flow-body {
    padding: 2.75rem;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 2.75rem;
    align-items: start;
}

.ll-flow-pipeline-title {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ll-slate);
    margin-bottom: 0.75rem;
}

.ll-flow-pipeline-desc {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--ll-text-muted);
    margin-bottom: 2rem;
}

.ll-flow-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    position: relative;
}

.ll-flow-steps-timeline::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 17px;
    width: 2px;
    background: var(--ll-border);
}

.ll-flow-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    position: relative;
    z-index: 1;
}

.ll-flow-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--ll-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--ll-text-muted);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.ll-flow-step-item.active .ll-flow-step-num {
    border-color: var(--ll-citrus);
    background: var(--ll-citrus-light);
    color: var(--ll-amber-dark);
    box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.18);
}

.ll-flow-step-content {
    background: var(--ll-canvas-alt);
    border-radius: var(--ll-radius-md);
    padding: 1.1rem 1.35rem;
    border: 1px solid var(--ll-border);
    flex-grow: 1;
}

.ll-flow-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.ll-flow-step-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ll-slate);
}

.ll-flow-step-meta {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ll-amber-dark);
    background: var(--ll-citrus-light);
    padding: 2px 7px;
    border-radius: 4px;
}

.ll-flow-step-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--ll-text-muted);
    margin: 0;
}

/* Telemetry Terminal */
.ll-telemetry-panel {
    background: #141210;
    border-radius: var(--ll-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(20, 18, 16, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ll-telemetry-header {
    background: #1C1917;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ll-telemetry-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FACC15;
}

.ll-telemetry-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
    box-shadow: 0 0 6px #10B981;
}

.ll-telemetry-stats {
    display: flex;
    gap: 1.15rem;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ll-stat-cell {
    display: flex;
    flex-direction: column;
}

.ll-stat-label {
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #A8A29E;
}

.ll-stat-val {
    font-size: 0.88rem;
    font-weight: 800;
    color: #F5F5F4;
    font-family: monospace;
}

.ll-telemetry-code {
    padding: 1.25rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.8rem;
    line-height: 1.55;
    color: #E7E5E4;
    max-height: 380px;
    overflow-y: auto;
    margin: 0;
}

/* ==================================================
   TRANSPARENT 4-PHASE ROADMAP
   ================================================== */
.ll-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ll-roadmap-card {
    background: #FFFFFF;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--ll-shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ll-roadmap-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ll-shadow-md);
}

.ll-roadmap-card.phase-current {
    border-color: var(--ll-citrus-border);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.1);
}

.ll-roadmap-card.phase-current::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ll-citrus), var(--ll-amber));
}

.ll-roadmap-phase-pill {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 9999px;
    align-self: flex-start;
    margin-bottom: 1.2rem;
}

.phase-current .ll-roadmap-phase-pill {
    background: var(--ll-citrus-light);
    color: var(--ll-amber-dark);
    border: 1px solid var(--ll-citrus-border);
}

.phase-dev .ll-roadmap-phase-pill {
    background: var(--ll-sky-light);
    color: var(--ll-sky);
    border: 1px solid var(--ll-sky-border);
}

.phase-horizon .ll-roadmap-phase-pill {
    background: var(--ll-olive-light);
    color: var(--ll-olive-dark);
    border: 1px solid var(--ll-olive-border);
}

.phase-vision .ll-roadmap-phase-pill {
    background: rgba(120, 113, 108, 0.1);
    color: var(--ll-text-light);
    border: 1px solid rgba(120, 113, 108, 0.2);
}

.ll-roadmap-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--ll-slate);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.ll-roadmap-timeline {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ll-text-light);
    margin-bottom: 1.25rem;
}

.ll-roadmap-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--ll-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ll-roadmap-deliverables {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid var(--ll-border);
    padding-top: 1.25rem;
}

.ll-roadmap-del-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--ll-text);
}

.ll-roadmap-del-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.phase-current .ll-roadmap-del-item svg {
    color: var(--ll-amber-dark);
}

.phase-dev .ll-roadmap-del-item svg {
    color: var(--ll-sky);
}

.phase-horizon .ll-roadmap-del-item svg {
    color: var(--ll-olive);
}

.phase-vision .ll-roadmap-del-item svg {
    color: var(--ll-text-light);
}

/* ==================================================
   BEHIND THE BUILD CODE VIEWER
   ================================================== */
.ll-code-browser {
    background: #141210;
    border-radius: var(--ll-radius-xl);
    overflow: hidden;
    box-shadow: var(--ll-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ll-code-chrome {
    background: #1C1917;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ll-chrome-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ll-dot-red { background: #EF4444; }
.ll-dot-yellow { background: #F59E0B; }
.ll-dot-green { background: #10B981; }

.ll-code-tabs {
    display: flex;
    gap: 0.5rem;
}

.ll-code-tab-btn {
    background: transparent;
    border: none;
    color: #A8A29E;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: monospace;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ll-code-tab-btn:hover {
    color: #F5F5F4;
    background: rgba(255, 255, 255, 0.05);
}

.ll-code-tab-btn.active {
    color: #FDE047;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.25);
}

.ll-copy-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #D6D3D1;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.ll-copy-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

.ll-code-pre {
    margin: 0;
    padding: 1.75rem 2rem;
    background: #141210;
    max-height: 520px;
    overflow-y: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.84rem;
    line-height: 1.6;
    color: #E7E5E4;
}

/* ==================================================
   MEASURABLE RESULTS & IMPACT
   ================================================== */
.ll-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.ll-result-card {
    background: #FFFFFF;
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--ll-shadow-sm);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ll-result-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ll-shadow-md);
    border-color: var(--ll-citrus-border);
}

.ll-result-val {
    font-size: clamp(2.5rem, 3.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.65rem;
}

.ll-result-val.citrus { color: var(--ll-amber-dark); }
.ll-result-val.olive { color: var(--ll-olive-dark); }
.ll-result-val.amber { color: var(--ll-amber); }
.ll-result-val.slate { color: var(--ll-slate); }

.ll-result-label {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ll-slate);
    margin-bottom: 0.45rem;
}

.ll-result-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--ll-text-muted);
}

/* Client Testimonial Card */
.ll-testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF5 100%);
    border: 1px solid var(--ll-citrus-border);
    border-radius: var(--ll-radius-xl);
    padding: 3.5rem 3.25rem;
    box-shadow: 0 20px 50px rgba(234, 179, 8, 0.08);
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.ll-quote-mark {
    font-family: var(--font-serif), Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--ll-citrus);
    opacity: 0.45;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.ll-testimonial-quote {
    font-family: var(--font-serif), Georgia, serif;
    font-size: clamp(1.15rem, 1.8vw, 1.38rem);
    line-height: 1.65;
    color: var(--ll-slate);
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.ll-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    position: relative;
    z-index: 1;
}

.ll-author-monogram {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EAB308 0%, #D97706 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}

.ll-author-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ll-slate);
}

.ll-author-role {
    font-size: 0.85rem;
    color: var(--ll-text-muted);
}

/* ==================================================
   CTA SECTION
   ================================================== */
.ll-cta-section {
    padding: 6rem 0;
    background: var(--ll-slate);
    position: relative;
    overflow: hidden;
}

.ll-cta-card {
    background: linear-gradient(135deg, rgba(38, 33, 30, 0.95) 0%, rgba(20, 18, 16, 0.98) 100%);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: var(--ll-radius-xl);
    padding: 4.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ll-cta-glow-1 {
    position: absolute;
    top: -100px;
    left: 20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.ll-cta-glow-2 {
    position: absolute;
    bottom: -100px;
    right: 20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(101, 163, 13, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.ll-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FACC15;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 5px 14px;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.ll-cta-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.ll-cta-title-gradient {
    background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ll-cta-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #D6D3D1;
    max-width: 650px;
    margin: 0 auto 2.25rem;
}

.ll-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #EAB308 0%, #D97706 100%);
    color: #FFFFFF;
    padding: 1.05rem 2.45rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ll-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(217, 119, 6, 0.55);
    color: #FFFFFF;
}

/* ==================================================
   RESPONSIVE BREAKPOINTS
   ================================================== */
@media (max-width: 1200px) {
    .ll-roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ll-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ll-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ll-brief-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .ll-bottlenecks-grid,
    .ll-solutions-grid {
        grid-template-columns: 1fr;
    }
    .ll-flow-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ll-float-card-1 {
        left: 0;
        top: 10px;
    }
    .ll-float-card-2 {
        right: 0;
        bottom: 10px;
    }
}

@media (max-width: 768px) {
    .ll-brief-grid {
        grid-template-columns: 1fr;
    }
    .ll-roadmap-grid {
        grid-template-columns: 1fr;
    }
    .ll-results-grid {
        grid-template-columns: 1fr;
    }
    .ll-flow-body {
        padding: 1.75rem 1.25rem;
    }
    .ll-cta-card {
        padding: 3rem 1.5rem;
    }
    .ll-testimonial-card {
        padding: 2.5rem 1.75rem;
    }
}
