/**
 * HIPAA Compliance Services Landing Page Styles
 * Complete style isolation from site's style.css
 * Fixed responsiveness with overflow control
 * 
 * @package HIPAATraining
 * @since 1.0.0
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
.exposure-check-page {
    --primary-dark: #1e3a8a;
    --primary-blue: #2563eb;
    --primary-purple: #7c3aed;
    --cta-red: #dc2626;
    --cta-red-hover: #b91c1c;
    --success-green: #10b981;
    --white: #ffffff;
    --off-white: #f9fafb;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #1f2937;
    --warning-bg: #fef2f2;
    --warning-border: #fecaca;
}

/* ============================================
   BASE RESET - Isolate from site styles
   CRITICAL: Overflow control for responsiveness
   ============================================ */
   
   
 html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}  


   
.exposure-check-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--gray-700) !important;
    line-height: 1.6 !important;
    background: var(--white) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    display: block !important;
    box-sizing: border-box !important;
    position: relative !important;
}

.exposure-check-page *,
.exposure-check-page *::before,
.exposure-check-page *::after {
    box-sizing: border-box !important;
}

/* Reset inherited margins/paddings */
.exposure-check-page h1,
.exposure-check-page h2,
.exposure-check-page h3,
.exposure-check-page h4,
.exposure-check-page h5,
.exposure-check-page h6,
.exposure-check-page p,
.exposure-check-page ul,
.exposure-check-page ol,
.exposure-check-page li {
    margin: 0;
    padding: 0;
}

.exposure-check-page ul,
.exposure-check-page ol {
    list-style: none;
}

.exposure-check-page a {
    text-decoration: none;
    color: inherit;
}

.exposure-check-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CUSTOM CONTAINER - Avoid site's .container
   ============================================ */
.exposure-check-page .ec-container {
    display: block !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ============================================
   URGENCY BANNER
   ============================================ */
.exposure-check-page .urgency-banner {
    background: var(--cta-red) !important;
    color: var(--white) !important;
    text-align: center !important;
    padding: 12px 15px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.exposure-check-page .strategy-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
    color: var(--white) !important;
    padding: 60px 0 80px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.exposure-check-page .hero-inner {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.exposure-check-page .price-badge {
    display: inline-block !important;
    background: var(--success-green) !important;
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    font-size: 1rem !important;
    animation: fadeInDown 0.6s ease !important;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.exposure-check-page .strategy-hero h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
    font-weight: 800 !important;
    animation: fadeInUp 0.6s 0.2s both !important;
    color: var(--white) !important;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.exposure-check-page .hero-subheadline {
    font-size: 1.15rem !important;
    margin-bottom: 35px !important;
    opacity: 0.95 !important;
    line-height: 1.6 !important;
    animation: fadeInUp 0.6s 0.3s both !important;
    max-width: 750px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: var(--white) !important;
}

.exposure-check-page .cta-button {
    display: inline-block !important;
    background: var(--cta-red) !important;
    color: var(--white) !important;
    padding: 18px 40px !important;
    border-radius: 8px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3) !important;
    cursor: pointer !important;
    border: none !important;
    animation: fadeInUp 0.6s 0.4s both !important;
    font-family: inherit !important;
}

.exposure-check-page .cta-button:hover {
    background: var(--cta-red-hover) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.4) !important;
}

.exposure-check-page .hero-note {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.95rem !important;
    margin-top: 16px !important;
    animation: fadeInUp 0.6s 0.5s both !important;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.exposure-check-page .section {
    padding: 60px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.exposure-check-page .section-white {
    background: var(--white) !important;
}

.exposure-check-page .section-gray {
    background: var(--gray-50) !important;
}

.exposure-check-page .section-warning {
    background: var(--warning-bg) !important;
}

.exposure-check-page .section-dark {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.exposure-check-page .strategy-section-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.exposure-check-page .section-label {
    display: inline-block !important;
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
}

.exposure-check-page .strategy-section-header h2 {
    font-size: 2rem !important;
    color: var(--primary-dark) !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

.exposure-check-page .section-dark .strategy-section-header h2 {
    color: var(--white) !important;
}

.exposure-check-page .strategy-section-header p {
    color: var(--gray-500) !important;
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
}

.exposure-check-page .section-dark .strategy-section-header p {
    color: rgba(255,255,255,0.8) !important;
}

/* ============================================
   ASSUMPTION CARDS
   ============================================ */
.exposure-check-page .assumption-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 900px !important;
    margin: 0 auto 40px !important;
}

.exposure-check-page .assumption-card {
    background: var(--white) !important;
    padding: 20px 24px !important;
    border-radius: 12px !important;
    border-left: 4px solid var(--cta-red) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

.exposure-check-page .assumption-card p {
    color: var(--gray-600) !important;
    font-style: italic !important;
    margin: 0 !important;
    font-size: 1rem !important;
}

.exposure-check-page .assumption-card p::before {
    content: '"' !important;
    color: var(--cta-red) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.exposure-check-page .assumption-card p::after {
    content: '"' !important;
    color: var(--cta-red) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.exposure-check-page .warning-box {
    background: var(--white) !important;
    border: 2px solid var(--warning-border) !important;
    border-radius: 12px !important;
    padding: 24px 28px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.exposure-check-page .warning-box p {
    color: var(--gray-700) !important;
    margin: 0 !important;
    line-height: 1.7 !important;
}

/* ============================================
   STATS GRID
   ============================================ */
.exposure-check-page .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
}

.exposure-check-page .stat-card {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 28px 24px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.exposure-check-page .stat-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.exposure-check-page .stat-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #2563eb, #7c3aed) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 16px !important;
    font-size: 1.8rem !important;
}

.exposure-check-page .stat-card h4 {
    color: var(--primary-dark) !important;
    font-size: 1.05rem !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
}

.exposure-check-page .stat-card p {
    color: var(--gray-500) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

/* ============================================
   OCR SCREENSHOT SECTION
   ============================================ */
.exposure-check-page .ocr-screenshot-wrapper {
    max-width: 950px !important;
    margin: 0 auto !important;
}

.exposure-check-page .ocr-screenshot {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: block !important;
    text-decoration: none !important;
}

.exposure-check-page .ocr-screenshot:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 70px rgba(0,0,0,0.2) !important;
}

.exposure-check-page .ocr-screenshot-placeholder {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%) !important;
    padding: 0 !important;
}

.exposure-check-page .ocr-header {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    padding: 18px 24px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.exposure-check-page .ocr-header::before {
    content: '🏛️' !important;
    font-size: 1.2rem !important;
}

.exposure-check-page .ocr-table {
    background: var(--white) !important;
}

.exposure-check-page .ocr-table-header {
    display: grid !important;
    grid-template-columns: 2fr 1.5fr 1fr 1fr !important;
    gap: 16px !important;
    padding: 14px 24px !important;
    background: var(--gray-50) !important;
    border-bottom: 2px solid var(--gray-200) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    color: var(--gray-600) !important;
}

.exposure-check-page .ocr-table-row {
    display: grid !important;
    grid-template-columns: 2fr 1.5fr 1fr 1fr !important;
    gap: 16px !important;
    padding: 16px 24px !important;
    border-bottom: 1px solid var(--gray-200) !important;
    font-size: 0.9rem !important;
}

.exposure-check-page .ocr-table-row:last-child {
    border-bottom: none !important;
}

.exposure-check-page .ocr-table-row .entity {
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
}

.exposure-check-page .ocr-table-row .type {
    color: var(--cta-red) !important;
    font-weight: 500 !important;
}

.exposure-check-page .ocr-table-row .location {
    color: var(--gray-600) !important;
}

.exposure-check-page .ocr-table-row .affected {
    color: var(--gray-900) !important;
    font-weight: 700 !important;
}

.exposure-check-page .ocr-screenshot-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(30, 58, 138, 0.92) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.exposure-check-page .ocr-screenshot:hover .ocr-screenshot-overlay {
    opacity: 1 !important;
}

.exposure-check-page .ocr-screenshot-overlay span {
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
}

.exposure-check-page .ocr-screenshot-overlay .arrow {
    color: var(--cta-red) !important;
    font-size: 2.5rem !important;
}

.exposure-check-page .ocr-caption {
    text-align: center !important;
    margin-top: 24px !important;
    color: var(--gray-600) !important;
    font-size: 0.95rem !important;
    font-style: italic !important;
}

/* ============================================
   TIMELINE
   ============================================ */
.exposure-check-page .timeline {
    max-width: 700px !important;
    margin: 0 auto !important;
}

.exposure-check-page .timeline-item {
    display: flex !important;
    gap: 20px !important;
    padding-bottom: 32px !important;
    position: relative !important;
}

.exposure-check-page .timeline-item:last-child {
    padding-bottom: 0 !important;
}

.exposure-check-page .timeline-item::before {
    content: '' !important;
    position: absolute !important;
    left: 15px !important;
    top: 40px !important;
    bottom: 0 !important;
    width: 3px !important;
    background: var(--gray-200) !important;
}

.exposure-check-page .timeline-item:last-child::before {
    display: none !important;
}

.exposure-check-page .timeline-marker {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    background: var(--cta-red) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
}

.exposure-check-page .timeline-content h4 {
    color: var(--primary-dark) !important;
    margin-bottom: 6px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.exposure-check-page .timeline-content p {
    color: var(--gray-600) !important;
    margin: 0 !important;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.exposure-check-page .benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.exposure-check-page .benefit-card {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 25px !important;
    background: var(--white) !important;
    border-radius: 12px !important;
    border: 1px solid var(--gray-200) !important;
    transition: all 0.3s ease !important;
}

.exposure-check-page .benefit-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.exposure-check-page .benefit-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    background: linear-gradient(135deg, #2563eb, #7c3aed) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    flex-shrink: 0 !important;
}

.exposure-check-page .benefit-content h4 {
    color: var(--primary-dark) !important;
    margin-bottom: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.exposure-check-page .benefit-content p {
    color: var(--gray-500) !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* ============================================
   AUDIENCE LIST
   ============================================ */
.exposure-check-page .audience-list {
    max-width: 700px !important;
    margin: 0 auto !important;
}

.exposure-check-page .audience-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid var(--gray-200) !important;
}

.exposure-check-page .audience-item:last-child {
    border-bottom: none !important;
}

.exposure-check-page .audience-check {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    background: var(--success-green) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--white) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
}

.exposure-check-page .audience-item p {
    color: var(--gray-700) !important;
    margin: 0 !important;
    font-size: 1.05rem !important;
    padding-top: 3px !important;
}

.exposure-check-page .not-for-note {
    background: var(--gray-100) !important;
    border-radius: 8px !important;
    padding: 20px 24px !important;
    max-width: 700px !important;
    margin: 32px auto 0 !important;
    color: var(--gray-600) !important;
    font-size: 0.95rem !important;
}

/* ============================================
   DIFFERENCE GRID
   ============================================ */
.exposure-check-page .difference-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: 950px !important;
    margin: 0 auto !important;
}

.exposure-check-page .difference-card {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    padding: 28px !important;
    text-align: center !important;
}

.exposure-check-page .difference-card h4 {
    color: var(--white) !important;
    margin-bottom: 10px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.exposure-check-page .difference-card p {
    color: rgba(255,255,255,0.75) !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
}

/* ============================================
   ABOUT CARL SECTION
   ============================================ */
.exposure-check-page .about-carl {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    padding: 60px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.exposure-check-page .about-carl-content {
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
    gap: 50px !important;
    align-items: start !important;
    max-width: 950px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.exposure-check-page .carl-profile {
    text-align: center !important;
}

.exposure-check-page .carl-avatar {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    border: 5px solid rgba(255,255,255,0.3) !important;
    object-fit: cover !important;
    margin-bottom: 20px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
}

.exposure-check-page .carl-credentials {
    background: rgba(255,255,255,0.1) !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: var(--white) !important;
}

.exposure-check-page .carl-credentials strong {
    display: block !important;
    font-size: 1.1rem !important;
    margin-bottom: 5px !important;
}

.exposure-check-page .about-carl-text h2 {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
    color: var(--white) !important;
    font-weight: 700 !important;
}

.exposure-check-page .about-carl-text p {
    margin-bottom: 18px !important;
    line-height: 1.7 !important;
    opacity: 0.95 !important;
    font-size: 1.05rem !important;
    color: var(--white) !important;
}

.exposure-check-page .about-carl-text p:last-child {
    margin-bottom: 0 !important;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.exposure-check-page .final-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
    padding: 80px 0 !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.exposure-check-page .final-cta h2 {
    color: var(--white) !important;
    font-size: 2.25rem !important;
    margin-bottom: 16px !important;
    font-weight: 800 !important;
}

.exposure-check-page .final-cta p {
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 32px !important;
    font-size: 1.1rem !important;
}

.exposure-check-page .final-cta .cta-button {
    font-size: 1.25rem !important;
    padding: 20px 48px !important;
}

.exposure-check-page .final-cta-note {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem !important;
    margin-top: 16px !important;
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.exposure-check-page .sticky-cta {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    background: var(--cta-red) !important;
    color: var(--white) !important;
    padding: 16px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4) !important;
    cursor: pointer !important;
    border: none !important;
    display: none !important;
    transition: all 0.3s ease !important;
    animation: pulse-cta 2s infinite !important;
    font-family: inherit !important;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.exposure-check-page .sticky-cta:hover {
    background: var(--cta-red-hover) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.5) !important;
}

/* ============================================
   MULTI-STEP FORM MODAL
   ============================================ */
.exposure-check-page .form-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.75) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    padding: 20px !important;
}

.exposure-check-page .form-modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.exposure-check-page .form-modal {
    background: var(--white) !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 580px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    transform: translateY(20px) !important;
    transition: transform 0.3s ease !important;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3) !important;
}

.exposure-check-page .form-modal-overlay.active .form-modal {
    transform: translateY(0) !important;
}

.exposure-check-page .form-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
    padding: 28px 32px !important;
    border-radius: 16px 16px 0 0 !important;
    position: relative !important;
}

.exposure-check-page .form-header h3 {
    color: var(--white) !important;
    font-size: 1.3rem !important;
    margin-bottom: 4px !important;
    font-weight: 700 !important;
}

.exposure-check-page .form-header-subtitle {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem !important;
}

.exposure-check-page .form-progress {
    display: flex !important;
    gap: 6px !important;
    margin-top: 20px !important;
}

.exposure-check-page .form-progress-step {
    flex: 1 !important;
    height: 5px !important;
    background: rgba(255,255,255,0.25) !important;
    border-radius: 3px !important;
    transition: background 0.3s ease !important;
}

.exposure-check-page .form-progress-step.active {
    background: var(--cta-red) !important;
}

.exposure-check-page .form-progress-step.completed {
    background: var(--success-green) !important;
}

.exposure-check-page .form-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255,255,255,0.15) !important;
    border: none !important;
    color: var(--white) !important;
    font-size: 1.3rem !important;
    cursor: pointer !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.exposure-check-page .form-close:hover {
    background: rgba(255,255,255,0.25) !important;
}

.exposure-check-page .form-body {
    padding: 32px !important;
}

.exposure-check-page .form-step {
    display: none !important;
}

.exposure-check-page .form-step.active {
    display: block !important;
    animation: fadeIn 0.3s ease !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.exposure-check-page .form-step-label {
    color: var(--gray-400) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 8px !important;
}

.exposure-check-page .form-step h4 {
    color: var(--primary-dark) !important;
    font-size: 1.3rem !important;
    margin-bottom: 24px !important;
    font-weight: 700 !important;
}

.exposure-check-page .form-step-helper {
    color: var(--gray-500) !important;
    font-size: 0.9rem !important;
    margin-top: -16px !important;
    margin-bottom: 20px !important;
}

.exposure-check-page .form-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.exposure-check-page .form-option {
    position: relative !important;
}

.exposure-check-page .form-option input {
    position: absolute !important;
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}

.exposure-check-page .form-option label {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 16px 20px !important;
    background: var(--gray-50) !important;
    border: 2px solid transparent !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-weight: 500 !important;
    color: var(--gray-700) !important;
    font-size: 1rem !important;
}

.exposure-check-page .form-option label::before {
    content: '' !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border: 2px solid var(--gray-400) !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    background: var(--white) !important;
}

.exposure-check-page .form-option.checkbox label::before {
    border-radius: 6px !important;
}

.exposure-check-page .form-option input:checked + label {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: var(--success-green) !important;
}

.exposure-check-page .form-option input:checked + label::before {
    background: var(--success-green) !important;
    border-color: var(--success-green) !important;
}

.exposure-check-page .form-option input:checked + label::after {
    content: '✓' !important;
    position: absolute !important;
    left: 26px !important;
    color: var(--white) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
}

.exposure-check-page .form-option label:hover {
    background: var(--gray-100) !important;
    border-color: var(--gray-200) !important;
}

.exposure-check-page .form-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 32px !important;
    padding-top: 24px !important;
    border-top: 1px solid var(--gray-200) !important;
}

.exposure-check-page .btn-back {
    background: none !important;
    border: none !important;
    color: var(--gray-500) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 0 !important;
    transition: color 0.2s ease !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
}

.exposure-check-page .btn-back:hover {
    color: var(--gray-700) !important;
}

.exposure-check-page .btn-next {
    background: var(--cta-red) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25) !important;
    font-family: inherit !important;
}

.exposure-check-page .btn-next:hover {
    background: var(--cta-red-hover) !important;
    transform: translateY(-2px) !important;
}

.exposure-check-page .btn-next:disabled {
    background: var(--gray-400) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Results Step */
.exposure-check-page .results-summary {
    background: var(--warning-bg) !important;
    border: 1px solid var(--warning-border) !important;
    border-radius: 12px !important;
    padding: 24px !important;
    margin-bottom: 24px !important;
}

.exposure-check-page .results-summary h5 {
    color: var(--cta-red) !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.exposure-check-page .results-summary h5::before {
    content: '⚠️' !important;
}

.exposure-check-page .results-summary ul {
    margin: 0 !important;
    padding-left: 20px !important;
    color: var(--gray-700) !important;
    list-style: disc !important;
}

.exposure-check-page .results-summary li {
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
}

.exposure-check-page .results-summary li:last-child {
    margin-bottom: 0 !important;
}

.exposure-check-page .results-disclaimer {
    background: var(--gray-50) !important;
    border-radius: 8px !important;
    padding: 16px !important;
    font-size: 0.9rem !important;
    color: var(--gray-600) !important;
    margin-top: 20px !important;
    line-height: 1.6 !important;
}

.exposure-check-page .results-buttons {
    display: flex !important;
    gap: 12px !important;
    margin-top: 24px !important;
}

.exposure-check-page .btn-secondary {
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    border: 2px solid var(--primary-dark) !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
}

.exposure-check-page .btn-secondary:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

/* Email Input */
.exposure-check-page .email-input-wrapper {
    margin-bottom: 16px !important;
}

.exposure-check-page .email-input-wrapper label {
    display: block !important;
    color: var(--gray-700) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.exposure-check-page .email-input-wrapper input {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: border-color 0.2s ease !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
    background: var(--white) !important;
    color: var(--gray-700) !important;
}

.exposure-check-page .email-input-wrapper input:focus {
    outline: none !important;
    border-color: var(--primary-blue) !important;
}

.exposure-check-page .email-helper {
    color: var(--gray-500) !important;
    font-size: 0.85rem !important;
    margin-top: 8px !important;
}

/* Final Step */
.exposure-check-page .final-step-content {
    text-align: center !important;
    padding: 20px 0 !important;
}

.exposure-check-page .final-step-content h4 {
    margin-bottom: 12px !important;
}

.exposure-check-page .final-step-content > p {
    color: var(--gray-600) !important;
    margin-bottom: 28px !important;
    line-height: 1.6 !important;
}

.exposure-check-page .btn-cta-large {
    background: var(--success-green) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 18px 40px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35) !important;
    font-family: inherit !important;
}

.exposure-check-page .btn-cta-large:hover {
    background: #0ea55c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45) !important;
}

.exposure-check-page .skip-link {
    display: block !important;
    margin-top: 20px !important;
    color: var(--gray-500) !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
}

.exposure-check-page .skip-link:hover {
    color: var(--gray-700) !important;
}

/* Step 8 Contact Form */
.exposure-check-page .final-step-contact {
    text-align: left !important;
}

.exposure-check-page .final-step-contact h4 {
    text-align: center !important;
    margin-bottom: 8px !important;
}

.exposure-check-page .final-step-contact > p {
    text-align: center !important;
}

.exposure-check-page .contact-form {
    max-width: 400px !important;
    margin: 0 auto !important;
}

.exposure-check-page .contact-form .email-input-wrapper {
    margin-bottom: 16px !important;
}

.exposure-check-page .final-step-contact .skip-link {
    display: block !important;
    text-align: center !important;
    margin-top: 20px !important;
}

.exposure-check-page .final-step-success {
    text-align: center !important;
    padding: 20px 0 !important;
}

.exposure-check-page .final-step-success h4 {
    color: var(--success-green) !important;
    margin-bottom: 8px !important;
}

/* Turnstile widget */
.exposure-check-page .cf-turnstile {
    margin: 20px 0 !important;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 992px) {
    .exposure-check-page .strategy-hero h1 {
        font-size: 2rem !important;
    }

    .exposure-check-page .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .exposure-check-page .assumption-grid {
        grid-template-columns: 1fr !important;
    }

    .exposure-check-page .benefits-grid {
        grid-template-columns: 1fr !important;
    }

    .exposure-check-page .difference-grid {
        grid-template-columns: 1fr !important;
    }

    .exposure-check-page .about-carl-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .exposure-check-page .carl-profile {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 768px) {
    .exposure-check-page .section {
        padding: 50px 0 !important;
    }

    .exposure-check-page .strategy-hero {
        padding: 40px 0 60px !important;
    }

    .exposure-check-page .strategy-hero h1 {
        font-size: 1.75rem !important;
    }

    .exposure-check-page .hero-subheadline {
        font-size: 1rem !important;
    }

    .exposure-check-page .cta-button {
        padding: 16px 32px !important;
        font-size: 1.05rem !important;
    }

    .exposure-check-page .strategy-section-header h2 {
        font-size: 1.6rem !important;
    }

    .exposure-check-page .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .exposure-check-page .ocr-table-header,
    .exposure-check-page .ocr-table-row {
        grid-template-columns: 1fr 1fr !important;
        font-size: 0.85rem !important;
        padding: 12px 16px !important;
    }

    .exposure-check-page .ocr-table-header > *:nth-child(3),
    .exposure-check-page .ocr-table-header > *:nth-child(4),
    .exposure-check-page .ocr-table-row > *:nth-child(3),
    .exposure-check-page .ocr-table-row > *:nth-child(4) {
        display: none !important;
    }

    .exposure-check-page .form-modal {
        border-radius: 12px !important;
        margin: 10px !important;
    }

    .exposure-check-page .form-header {
        padding: 24px !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .exposure-check-page .form-body {
        padding: 24px !important;
    }

    .exposure-check-page .sticky-cta {
        bottom: 15px !important;
        right: 15px !important;
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
    }
    
    .exposure-check-page .final-cta h2 {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 480px) {
    .exposure-check-page .urgency-banner {
        font-size: 0.85rem !important;
        padding: 10px 12px !important;
    }

    .exposure-check-page .price-badge {
        font-size: 0.9rem !important;
        padding: 8px 18px !important;
    }
    
    .exposure-check-page .ec-container {
        padding: 0 15px !important;
    }
    
    .exposure-check-page .hero-inner {
        padding: 0 15px !important;
    }
    
    .exposure-check-page .about-carl-content {
        padding: 0 15px !important;
    }
    
    .exposure-check-page .cta-button {
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }
    
    .exposure-check-page .final-cta .cta-button {
        padding: 16px 32px !important;
        font-size: 1.1rem !important;
    }
}
