/* ===========================
   KI-Audit Google Ads Landing Page
   =========================== */

/* --- LP Header --- */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.lp-header-cta {
    padding: 0.6rem 1.25rem !important;
    font-size: 0.9rem !important;
}

.lp-header-cta i {
    margin-right: 0.35rem;
}

/* --- Client Logos --- */
.lp-logos {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-logos-title {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    margin-bottom: 1rem;
}

.lp-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.lp-logo-item {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lp-logo-item:hover {
    opacity: 0.8;
}

.lp-logo-item img {
    width: auto;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* --- LP Hero --- */
.lp-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Demo mockup wrapper */
.lp-demo-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.lp-demo-label {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    font-weight: 500;
}

.lp-demo-label i {
    margin-right: 0.35rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.lp-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.lp-hero-cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.lp-hero-cta-note i {
    margin-right: 0.25rem;
    color: var(--primary-color);
}

.lp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.lp-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-hero-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.lp-hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* --- Trust Bar --- */
.lp-trust-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.lp-trust-items {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.lp-trust-item i {
    color: var(--success-color);
    font-size: 1rem;
}

/* --- Problem Section --- */
.lp-problem {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.lp-problem-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
}

.lp-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lp-problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    color: #ef4444;
}

.lp-problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.lp-problem-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* --- Benefits Section --- */
.lp-benefits {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.lp-benefits::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;
}

.lp-benefits .container {
    position: relative;
    z-index: 1;
}

.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.lp-benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.lp-benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 196, 77, 0.1);
    line-height: 1;
}

.lp-benefit-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.2rem;
    color: var(--primary-color);
}

.lp-benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.lp-benefit-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.lp-benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-benefit-card ul li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    position: relative;
}

.lp-benefit-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.7rem;
    top: 0.5rem;
}

/* --- Mid CTA --- */
.lp-mid-cta {
    padding: 4rem 0;
    background: var(--bg-white);
}

.lp-mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 196, 77, 0.08) 0%, rgba(255, 196, 77, 0.03) 100%);
    border: 1px solid rgba(255, 196, 77, 0.2);
    border-radius: 16px;
}

.lp-mid-cta-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.lp-mid-cta-text h2 strong {
    color: var(--primary-dark);
}

.lp-mid-cta-text p {
    color: var(--text-light);
    font-size: 1rem;
}

.lp-mid-cta .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- Steps --- */
.lp-steps {
    padding: 5rem 0;
    background: var(--bg-light);
}

.lp-steps-grid {
    max-width: 600px;
    margin: 3rem auto 0;
}

.lp-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: var(--card-border);
    transition: all 0.3s ease;
}

.lp-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.lp-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lp-step-time {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(255, 196, 77, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    white-space: nowrap;
}

.lp-step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.lp-step-connector {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
    color: var(--border-color);
    font-size: 1rem;
}

/* --- ROI Teaser --- */
.lp-roi-teaser {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.lp-roi-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: var(--card-border);
    transition: all 0.3s ease;
}

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

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

.lp-roi-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.lp-roi-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- FAQ --- */
.lp-faq {
    padding: 5rem 0;
    background: var(--bg-light);
}

.lp-faq-list {
    max-width: 700px;
    margin: 2.5rem auto 0;
}

.lp-faq-item {
    background: var(--bg-white);
    border: var(--card-border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.lp-faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.lp-faq-item[open] summary::after {
    transform: rotate(180deg);
}

.lp-faq-item[open] summary {
    color: var(--primary-dark);
}

.lp-faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Final CTA --- */
.lp-final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #C99A38 100%);
    text-align: center;
}

.lp-final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.lp-final-cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.lp-final-cta p {
    font-size: 1.15rem;
    color: rgba(16, 18, 17, 0.8);
    margin-bottom: 2rem;
}

.lp-final-cta .btn {
    margin-bottom: 1.5rem;
}

.lp-final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lp-final-cta-trust span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(16, 18, 17, 0.7);
}

.lp-final-cta-trust i {
    color: var(--text-dark);
    margin-right: 0.25rem;
}

/* --- LP Footer --- */
.lp-footer {
    background: var(--bg-dark);
    padding: 1.5rem 0;
}

.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.lp-footer-links {
    display: flex;
    gap: 1.5rem;
}

.lp-footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

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

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

    .lp-mid-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .lp-hero .hero-visual {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        min-height: auto;
    }

    .lp-demo-wrapper {
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }

    .audit-demo-mockup {
        min-width: 0;
        width: 100%;
    }

    .lp-hero {
        padding: 8rem 0 4rem;
    }

    .lp-hero .hero-title {
        font-size: 2.25rem;
    }

    .lp-hero .hero-subtitle {
        font-size: 1.05rem;
    }

    .lp-hero-stats {
        gap: 1.5rem;
    }

    .lp-hero-stat-value {
        font-size: 1.4rem;
    }

    .lp-trust-items {
        gap: 1.25rem;
    }

    .lp-trust-item span {
        display: none;
    }

    .lp-trust-item i {
        font-size: 1.2rem;
    }

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

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

    .lp-final-cta h2 {
        font-size: 1.75rem;
    }

    .lp-footer-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lp-hero {
        padding: 7rem 0 3.5rem;
    }

    .lp-hero .hero-title {
        font-size: 1.85rem;
    }

    .lp-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .lp-trust-items {
        justify-content: space-around;
    }

    .lp-roi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .lp-roi-value {
        font-size: 1.4rem;
    }

    .lp-final-cta h2 {
        font-size: 1.5rem;
    }

    .lp-final-cta-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .lp-header-cta span {
        display: none;
    }
}
