/* ============================================
   COMPLIANT AI IMPLEMENTATION PAGE STYLES
   ============================================ */

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

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

.ci-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-subtle) 100%);
    text-align: center;
}

.ci-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.ci-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.ci-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ci-hero-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ci-price-badge,
.ci-timeline-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    font-family: 'Montserrat', sans-serif;
}

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

.ci-timeline-badge {
    background: white;
    color: var(--navy);
    border: 2px solid var(--navy);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

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

/* ============================================
   WHAT'S INCLUDED — CARD GRID
   ============================================ */

.ci-included-section {
    padding: 4rem 0;
}

.ci-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

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

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

.ci-card h3 {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

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

/* ============================================
   HOW IT WORKS — PROCESS STEPS
   ============================================ */

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

.ci-process-steps {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ci-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ci-step:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.ci-step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
}

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

.ci-step-duration {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

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

.ci-stabilisation-note {
    max-width: 720px;
    margin: 2rem auto 0;
    padding: 1.25rem 1.5rem;
    background: white;
    border-left: 4px solid var(--green);
    border-radius: 8px;
    text-align: center;
}

.ci-stabilisation-note p {
    margin: 0;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
}

/* ============================================
   PRICE DRIVERS
   ============================================ */

.ci-pricing-section {
    padding: 4rem 0;
}

.ci-pricing-tiers {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ci-tier {
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--blue);
    box-shadow: 0 2px 8px rgba(15, 31, 51, 0.06);
}

.ci-tier-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   WHAT SETS US APART — DIFFERENTIATORS
   ============================================ */

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

.ci-differentiators {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ci-differentiator {
    position: relative;
    padding: 0 0 0 2rem;
}

.ci-differentiator::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: var(--green);
    font-weight: 700;
    font-size: 1.125rem;
}

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

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

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

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

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

.ci-final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.ci-cta-button {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: white;
    color: var(--navy);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

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

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

.ci-cta-phone {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
}

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

.ci-cta-phone a:hover {
    opacity: 0.85;
}

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

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

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

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

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

    .ci-hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .ci-card-grid {
        grid-template-columns: 1fr;
    }

    .ci-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .ci-step-number {
        margin: 0 auto;
    }

    .ci-section-header h2 {
        font-size: 1.5rem;
    }

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

    .ci-cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .ci-tier-price {
        font-size: 1.25rem;
    }
}

/* ============================================
   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;
    }
}
