/* ============================================================================
   SIGNALDESK - SERVICES PAGE STYLES
   Beautiful, creative styles for the services and offers page
   ============================================================================ */

/* ============================================================================
   SERVICES HERO SECTION
   ============================================================================ */

.services-hero {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.services-hero .hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.15;
}

.services-hero .hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* ============================================================================
   OFFERS SECTION (MODULAR OFFERS)
   ============================================================================ */

.offers-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.offers-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--grey-darkest);
    margin-bottom: 1rem;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out;
}

.offers-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--grey-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: var(--leading-relaxed);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--grey-light);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 700;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: var(--font-5xl);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
    transition: all var(--transition-base);
}

.offer-card:hover .offer-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.35);
}

.offer-title {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--grey-darkest);
    margin-bottom: 0.5rem;
}

.offer-description {
    font-size: var(--font-base);
    color: var(--grey-medium);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.offer-features {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--grey-light);
}

.offer-features h4 {
    font-size: var(--font-sm);
    font-weight: 700;
    color: var(--grey-darkest);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.offer-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: var(--font-sm);
    color: var(--grey-dark);
    line-height: var(--leading-normal);
}

.offer-features li i {
    color: var(--success);
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.offer-card .btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    font-size: var(--font-sm);
    margin-top: auto;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.offer-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.offer-card .btn:active {
    transform: translateY(0);
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */

.how-it-works-section {
    padding: var(--spacing-2xl) 0;
    background: var(--grey-lighter);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float 25s ease-in-out infinite;
}

.how-it-works-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--grey-darkest);
    margin-bottom: 1rem;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.how-it-works-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--grey-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: var(--leading-relaxed);
    position: relative;
    z-index: 1;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    border: 1px solid var(--grey-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: var(--font-2xl);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-icon {
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--primary-blue-light);
    margin-bottom: 1rem;
    transition: transform var(--transition-base);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-title {
    font-size: var(--font-xl);
    font-weight: 800;
    color: var(--grey-darkest);
    margin-bottom: 0.5rem;
}

.step-subtitle {
    font-size: var(--font-sm);
    color: var(--grey-medium);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: var(--font-base);
    color: var(--grey-dark);
    line-height: var(--leading-relaxed);
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 22s ease-in-out infinite;
}

.features-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--grey-darkest);
    margin-bottom: 1rem;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.features-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--grey-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: var(--leading-relaxed);
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--grey-light);
    transition: all var(--transition-slow);
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue-light);
    margin-bottom: 1rem;
    display: block;
    transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-title {
    font-size: var(--font-xl);
    font-weight: 800;
    color: var(--grey-darkest);
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    font-size: var(--font-sm);
    color: var(--grey-medium);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: var(--font-base);
    color: var(--grey-dark);
    line-height: var(--leading-relaxed);
}

/* ============================================================================
   EARLY ADOPTER PROGRAM SECTION
   ============================================================================ */

.early-adopter-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--grey-light) 0%, var(--white) 100%);
}

.early-adopter-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-blue-light);
    position: relative;
    overflow: hidden;
}

.early-adopter-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.early-adopter-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--warning), rgba(245, 158, 11, 0.8));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.early-adopter-title {
    font-size: var(--font-3xl);
    font-weight: 900;
    color: var(--grey-darkest);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.early-adopter-description {
    font-size: var(--font-base);
    color: var(--grey-dark);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.early-adopter-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.early-adopter-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: var(--font-base);
    color: var(--grey-dark);
    line-height: var(--leading-normal);
}

.early-adopter-benefits li i {
    color: var(--success);
    font-size: var(--font-lg);
    flex-shrink: 0;
}

.early-adopter-card .btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    font-size: var(--font-base);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.early-adopter-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq-section {
    padding: var(--spacing-2xl) 0;
    background: var(--grey-lighter);
}

.faq-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--grey-darkest);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.faq-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--grey-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: var(--leading-relaxed);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--grey-light);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
    font-weight: 600;
    font-size: var(--font-base);
    color: var(--grey-darkest);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.03));
}

.faq-question i {
    color: var(--primary-blue-light);
    font-size: var(--font-lg);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), transparent);
    border-top: 1px solid var(--grey-light);
    color: var(--grey-dark);
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* ============================================================================
   FINAL CTA SECTION
   ============================================================================ */

.final-cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

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

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.final-cta-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.final-cta-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: var(--leading-relaxed);
    position: relative;
    z-index: 1;
}

.final-cta-section .btn {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    font-size: var(--font-base);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.final-cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--grey-lighter);
}

.no-pressure-note {
    color: var(--white);
    font-size: var(--font-sm);
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
    .services-hero,
    .offers-section,
    .how-it-works-section,
    .features-section,
    .early-adopter-section,
    .faq-section,
    .final-cta-section {
        padding: var(--spacing-xl) 0;
    }

    .offer-card,
    .step-card,
    .feature-card,
    .early-adopter-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero,
    .offers-section,
    .how-it-works-section,
    .features-section,
    .early-adopter-section,
    .faq-section,
    .final-cta-section {
        padding: var(--spacing-lg) 0;
    }

    .offer-card,
    .step-card,
    .feature-card {
        padding: 1.25rem;
    }

    .early-adopter-card {
        padding: 1.5rem;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-4xl);
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-xl);
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-answer {
        padding: 1.25rem;
    }

    .how-it-works-section .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}
