/* Lead Generation Page Specific Styles */

/* ===== SECTION STYLES ===== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: linear-gradient(to bottom, var(--muted), var(--background));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== PROCESS GRID ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.process-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 102, 60, 0.3);
}

.process-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 16px rgba(201, 102, 60, 0.3);
    transition: all 0.4s var(--transition-smooth);
}

.process-card:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(201, 102, 60, 0.4);
}

.process-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.process-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    gap: 2rem;
    transition: all 0.4s var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 102, 60, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201, 102, 60, 0.1), rgba(212, 165, 116, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    transition: color 0.4s var(--transition-smooth);
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.feature-content p {
    color: var(--muted-foreground);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(201, 102, 60, 0.15);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(201, 102, 60, 0.3);
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.pricing-card .price {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #c9663c 0%, #d4a574 50%, #e07b4f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.btn-cta {
    background: white;
    color: var(--accent);
    padding: 1.35rem 3rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 2.5rem 2rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .process-card {
        padding: 2rem 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}