/* ===========================
   Quick Win Landing Page
   =========================== */

/* --- Reuse lp-header, lp-hero, lp-trust-bar, lp-problem,
       lp-benefits, lp-mid-cta, lp-steps, lp-faq,
       lp-final-cta, lp-footer from ki-audit-lp.css --- */

/* --- Hero Video --- */
.qw-hero-video {
    position: relative;
    max-width: 720px;
    margin: 2rem auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 9;
    background: #000;
}

/* Thumbnail layer */
.qw-video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.qw-video--playing .qw-video-thumb {
    opacity: 0;
    pointer-events: none;
}

/* Inline muted autoplay layer */
.qw-video-inline {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.qw-video-inline iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Play overlay layer */
.qw-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.qw-hero-video:hover .qw-video-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.qw-play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.75rem;
    box-shadow: 0 8px 30px rgba(255, 196, 77, 0.4);
    transition: transform 0.3s ease;
}

.qw-hero-video:hover .qw-play-btn {
    transform: scale(1.1);
}

/* --- Video Modal --- */
.qw-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qw-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.qw-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.qw-video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.qw-video-modal.active .qw-video-modal-content {
    transform: scale(1);
}

.qw-video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qw-video-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.qw-video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

/* --- Social Proof Bar (below hero) --- */
.qw-proof-bar {
    padding: 3rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.qw-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.qw-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qw-proof-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.qw-proof-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

/* --- Elephant / Quick Win Approach --- */
.qw-approach {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.qw-approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.qw-approach .container {
    position: relative;
    z-index: 1;
}

.qw-approach-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.qw-approach-quote {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.qw-approach-quote span {
    color: var(--primary-color);
}

.qw-approach-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.qw-approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- SVG Wall --- */
.qw-wall-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qw-wall-svg svg {
    width: 100%;
    max-width: 480px;
    height: auto;
}

.qw-brick {
    transition: opacity 0.6s ease, fill 0.3s ease;
}

.qw-brick--1 {
    fill: url(#goldGrad);
}

.qw-brick--2 {
    fill: rgba(255, 196, 77, 0.55);
}

.qw-brick--3 {
    fill: rgba(255, 196, 77, 0.25);
}

.qw-brick--4 {
    fill: rgba(255, 196, 77, 0.1);
}

/* Sparkle float animations */
.qw-sparkle {
    animation: sparkleFloat 4s ease-in-out infinite;
}

.qw-sparkle--1 { animation-delay: 0s; }
.qw-sparkle--2 { animation-delay: 1s; }
.qw-sparkle--3 { animation-delay: 2s; }
.qw-sparkle--4 { animation-delay: 3s; }

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.15; }
    50% { transform: translateY(-8px); opacity: 0.6; }
}

/* --- Step Cards --- */
.qw-approach-steps {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.qw-approach-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.qw-approach-card:hover {
    border-color: rgba(255, 196, 77, 0.3);
    transform: translateY(-2px);
}

.qw-approach-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 196, 77, 0.12);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qw-approach-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.qw-approach-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* --- Pain Points (expanded) --- */
.qw-pains {
    padding: 5rem 0;
    background: var(--bg-light);
}

.qw-pains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.qw-pain-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.qw-pain-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.qw-pain-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: #ef4444;
}

.qw-pain-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.qw-pain-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* --- Qualification Matrix (For You / Not For You) --- */
.qw-qualify {
    padding: 5rem 0;
    background: var(--bg-white);
}

.qw-qualify-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 850px;
    margin: 3rem auto 0;
}

.qw-qualify-col {
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.qw-qualify-col--good {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
}

.qw-qualify-col--bad {
    background: rgba(239, 68, 68, 0.03);
    border-color: rgba(239, 68, 68, 0.15);
}

.qw-qualify-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.qw-qualify-col--good .qw-qualify-label {
    color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
}

.qw-qualify-col--bad .qw-qualify-label {
    color: var(--error-color);
    background: rgba(239, 68, 68, 0.08);
}

.qw-qualify-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qw-qualify-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.qw-qualify-list li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.qw-qualify-col--good .qw-qualify-list li i {
    color: var(--success-color);
}

.qw-qualify-col--bad .qw-qualify-list li i {
    color: var(--error-color);
}

/* --- Results (Dark KPI Section) --- */
.qw-results {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.qw-results::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.qw-results .container {
    position: relative;
    z-index: 1;
}

.qw-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.qw-result-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.qw-result-card:hover {
    border-color: rgba(255, 196, 77, 0.3);
    transform: translateY(-4px);
}

.qw-result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 196, 77, 0.12);
    color: var(--primary-color);
    font-size: 1.15rem;
    margin: 0 auto 1rem;
}

.qw-result-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.qw-result-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* --- Why CREATE Differentiators --- */
.qw-why {
    padding: 5rem 0;
    background: var(--bg-light);
}

.qw-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.qw-why-card {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.qw-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.qw-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 196, 77, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    color: var(--primary-color);
}

.qw-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.qw-why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* --- Quick Win Hero adjustments --- */
.qw-hero .hero-title {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.qw-hero .hero-subtitle {
    max-width: 700px;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 992px) {
    .qw-approach-layout {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .qw-wall-svg svg {
        max-width: 300px;
    }

    .qw-qualify-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .qw-why-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .qw-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .qw-video-modal {
        padding: 16px;
    }

    .qw-video-modal-close {
        top: -45px;
        width: 36px;
        height: 36px;
    }

    .qw-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .qw-proof-value {
        font-size: 1.75rem;
    }

    .qw-pains-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .qw-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qw-approach-quote {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .qw-proof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .qw-proof-value {
        font-size: 1.5rem;
    }

    .qw-results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .qw-result-value {
        font-size: 1.5rem;
    }
}
