/* ============================================
   AI COMPLIANCE AUDIT PAGE STYLES
   ============================================ */

/* Main offset for fixed header */
main {
    margin-top: 90px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   WHISPER ANIMATION DELAYS
   ============================================ */

.whisper-delay-1.visible {
    animation-delay: 0.3s;
}

.whisper-delay-2.visible {
    animation-delay: 0.6s;
}

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

.hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-urgency {
    background: var(--red);
    color: white;
}

.badge-price {
    background: var(--navy);
    color: white;
}

/* ============================================
   WHAT'S INCLUDED SECTION
   ============================================ */

.whats-included-section {
    padding: 4rem 0;
    background: var(--bg-subtle);
}

.whats-included-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.whats-included-section .section-header h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.deliverable-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.deliverable-card-wide {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.deliverable-icon {
    margin-bottom: 1rem;
}

.deliverable-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    margin-top: 0;
}

.deliverable-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   HOW IT WORKS — TIMELINE
   ============================================ */

.how-it-works-section {
    padding: 4rem 0;
    background: white;
}

.how-it-works-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works-section .section-header h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--blue);
    opacity: 0.3;
}

.timeline-step {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 2rem;
    display: flex;
    justify-content: center;
}

.timeline-week {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    left: -0.25rem;
}

.timeline-content {
    background: var(--bg-subtle);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--blue);
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    margin-top: 0;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   WHO THIS IS FOR
   ============================================ */

.who-section {
    padding: 4rem 0;
    background: var(--bg-subtle);
}

.who-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.who-section .section-header h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0;
}

.audience-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.audience-list li {
    padding: 1rem 1rem 1rem 2.5rem;
    position: relative;
    color: var(--text);
    font-size: 1.0625rem;
    line-height: 1.6;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.audience-list li:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.audience-list li::before {
    content: '\2713';
    position: absolute;
    left: 1rem;
    color: var(--green);
    font-weight: 700;
}

/* ============================================
   GUARANTEE
   ============================================ */

.guarantee-section {
    padding: 4rem 0;
    background: white;
}

.guarantee-section .guarantee-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(56, 161, 105, 0.1);
}

.guarantee-icon {
    margin-bottom: 1.5rem;
}

.guarantee-section .guarantee-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.guarantee-primary {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.guarantee-secondary {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0;
}

/* ============================================
   ROI FRAMING
   ============================================ */

.roi-section {
    padding: 4rem 0;
    background: var(--bg-subtle);
}

.roi-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.roi-section .section-header h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0;
}

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

.roi-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.roi-card:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(15, 31, 51, 0.1);
}

.roi-stat {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.roi-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

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

.final-cta-section {
    background: var(--navy);
    color: white;
    padding: 4rem 0;
}

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

.final-cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.3;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--navy);
}

.cta-large:hover {
    background: var(--bg-subtle);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cta-secondary-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-secondary-text a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.cta-secondary-text a:hover {
    color: rgba(255, 255, 255, 0.9);
}

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

@media (max-width: 768px) {
    main {
        margin-top: 70px;
    }

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

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

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

    .deliverable-card-wide {
        max-width: none;
    }

    .timeline {
        padding-left: 2.5rem;
    }

    .timeline::before {
        left: 0.75rem;
    }

    .timeline-marker {
        left: -2.5rem;
    }

    .timeline-content {
        padding: 1.25rem 1.5rem;
    }

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

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

    .cta-large {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }

    .whats-included-section .section-header h2,
    .how-it-works-section .section-header h2,
    .who-section .section-header h2,
    .roi-section .section-header h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .whisper {
        animation: none;
        opacity: 1;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
