/* ============================================
   COMPLIANCE RETAINER PAGE STYLES
   ============================================ */

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;
}

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

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

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

.retainer-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;
}

.hero-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-subtle);
    border-radius: 12px;
    display: inline-flex;
}

.hero-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}

.hero-terms {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-essential {
    font-size: 1.0625rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SECTION HEADER (shared pattern)
   ============================================ */

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

.section-label {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   WHY ONGOING COMPLIANCE MATTERS
   ============================================ */

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

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

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

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

.why-ongoing-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.why-ongoing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.why-ongoing-card p {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0;
}

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

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

.included-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--blue);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
}

.included-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.included-features li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
    line-height: 1.6;
    border-bottom: 1px solid #f0f4f8;
}

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

.included-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ============================================
   PRICE TIERS
   ============================================ */

.tiers-section {
    padding: 4rem 0;
    background: var(--bg-subtle);
    scroll-margin-top: 90px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 31, 51, 0.1);
}

.tier-featured {
    border-color: var(--blue);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
}

.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 0.25rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.tier-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

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

.tier-period {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
}

.tier-summary {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.tier-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.tier-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.tier-features li:first-child::before {
    content: '';
}

.tier-features li:first-child {
    padding-left: 0;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.875rem;
    border-bottom: 1px solid #f0f4f8;
    margin-bottom: 0.25rem;
}

/* Override for Core tier (no "Everything in..." first item) */
.tier-card:first-child .tier-features li:first-child::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
}

.tier-card:first-child .tier-features li:first-child {
    padding-left: 1.75rem;
    font-weight: 400;
    color: var(--text);
    font-size: 0.9375rem;
    border-bottom: none;
    margin-bottom: 0;
}

.tier-card .cta-button {
    align-self: center;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

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

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-card {
    background: var(--bg-subtle);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.process-number {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

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

/* ============================================
   CTA BUTTONS (shared pattern)
   ============================================ */

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

.cta-primary {
    background: var(--navy);
    color: white;
}

.cta-primary:hover {
    background: #1a2f4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 31, 51, 0.2);
}

.cta-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.cta-secondary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   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.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.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-trust-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.cta-trust-note a {
    color: white;
    text-decoration: underline;
}

.cta-trust-note a:hover {
    opacity: 0.8;
}

/* ============================================
   WHISPER DELAY CLASSES
   ============================================ */

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

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

.whisper-delay-3 {
    animation-delay: 0.9s;
}

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

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

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

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

    .hero-price {
        font-size: 1.5rem;
    }

    .hero-price-block {
        padding: 1rem 1.5rem;
    }

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

    .why-ongoing-grid {
        grid-template-columns: 1fr;
    }

    .included-card {
        padding: 1.5rem;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .tier-price {
        font-size: 2rem;
    }

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

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

    .cta-lead {
        font-size: 1.0625rem;
    }

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

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