/* ============================================
   Landing Page Specific Styles
   Conversion-Optimized Design for Paid Ads
   ============================================ */

/* Landing Page Body */
.landing-page {
    background: var(--bg-white);
}

/* Minimal Header (Logo + Phone only) */
.landing-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.header-phone svg {
    flex-shrink: 0;
}

/* Hero Section */
.landing-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.landing-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.landing-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.landing-hero-title .highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Landing CTA */
.landing-cta {
    margin-top: 2rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* Pulse animation for primary CTA */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3), 0 0 0 8px rgba(37, 99, 235, 0.1);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* What You Get Section */
.what-you-get {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-gray);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.timeline-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.timeline-step h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.timeline-step p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* About Brief Section */
.about-brief {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.about-brief-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-brief .about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.about-subtitle {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.credential {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Landing Contact Section */
.landing-contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.contact-box-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-box-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-box-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* Landing Form */
.landing-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Contact Alternatives */
.contact-alternatives {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.or-divider {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--bg-gray);
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.phone-cta:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.phone-cta svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.phone-cta span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.phone-cta strong {
    font-size: 1.375rem;
    color: var(--primary-color);
}

.phone-cta small {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Minimal Footer */
.landing-footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #374151;
    margin-bottom: 1.5rem;
}

.footer-simple .footer-brand h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-simple .footer-brand p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9375rem;
}

.footer-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-contact a {
    color: #9ca3af;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .landing-hero-title {
        font-size: 2.75rem;
    }

    .trust-badges {
        gap: 2rem;
    }

    .about-brief-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-brief .about-image {
        display: flex;
        justify-content: center;
    }

    .credentials {
        align-items: center;
    }

    .footer-simple {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-phone {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }

    .landing-hero {
        padding: 3rem 0 2rem;
    }

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

    .landing-hero-subtitle {
        font-size: 1.125rem;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .badge-number {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .testimonials-grid,
    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }

    .contact-box-header h2 {
        font-size: 2rem;
    }

    .what-you-get,
    .social-proof,
    .how-it-works,
    .about-brief,
    .landing-contact {
        padding: 3.5rem 0;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .phone-cta {
        padding: 1rem 1.5rem;
    }

    .phone-cta strong {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .header-phone {
        font-size: 0.9375rem;
        padding: 0.5rem;
    }

    .header-phone span {
        display: none;
    }

    .landing-hero-title {
        font-size: 1.875rem;
    }

    .landing-hero-subtitle {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }
}
