/* Data Page Styles */

/* Hero Section */
.data-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.data-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.data-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.data-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.data-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    font-weight: 400;
}

.crisis-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.crisis-stat {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(59, 130, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.crisis-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 0 0 4px 4px;
}

.crisis-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.crisis-stat:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(30, 41, 59, 1) 0%, rgba(15, 23, 42, 1) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.crisis-stat:hover::before {
    width: 80%;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

.crisis-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: inline-block;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 1;
}

.crisis-stat-percent {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    display: inline-block;
    margin-left: 0.1rem;
    vertical-align: top;
    margin-top: 0.25rem;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.crisis-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.crisis-stat-sublabel {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .crisis-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .crisis-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .crisis-stat {
        padding: 1.5rem 1.25rem;
    }
}

/* Receptionist Reality Section */
.section-receptionist-reality {
    background: var(--bg-lightest);  /* Soft background, not harsh white */
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.reality-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #e2e8f0;
}

.reality-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.reality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reality-list li {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.reality-list li:last-child {
    border-bottom: none;
}

.reality-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.reality-desc {
    font-size: 0.95rem;
    color: #64748b;
}

.reality-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reality-bad {
    background: #fee2e2;
    color: #991b1b;
}

.reality-critical {
    background: #dc2626;
    color: #ffffff;
}

.reality-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
    font-size: 1.25rem;
    color: #dc2626;
    font-weight: 700;
}

.reality-chart-container {
    background: var(--bg-lightest);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #e2e8f0;
    margin-top: 3rem;
}

.reality-chart-container h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

/* Revenue Math Section */
.section-revenue-math {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
}

.section-revenue-math .section-title {
    color: #ffffff;
}

.section-revenue-math .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.revenue-calculator {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.revenue-calculator h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.calc-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.calc-input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.calc-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

.calc-input-group small {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

.calc-result-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.calc-result-highlight {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid #3b82f6;
}

.calc-result-critical {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
}

.calc-result-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.calc-result-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.calc-result-item small {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.conversion-problem {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid #dc2626;
    border-radius: 16px;
    padding: 3rem;
}

.conversion-problem h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.conversion-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.conversion-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-width: 250px;
}

.conversion-highlight {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid #3b82f6;
}

.conversion-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.conversion-rate {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.conversion-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.conversion-arrow {
    font-size: 3rem;
    color: #3b82f6;
}

.conversion-impact {
    text-align: center;
    font-size: 1.25rem;
    color: #ffffff;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Hiring Nightmare Section */
.section-hiring-nightmare {
    background: var(--bg-lightest);
}

.nightmare-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.nightmare-stat {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.nightmare-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.nightmare-label {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.nightmare-timeline {
    background: #f8fafc;
    border-radius: 16px;
    padding: 3rem;
    border: 2px solid #e2e8f0;
}

.nightmare-timeline h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e293b;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3.7rem;
    top: 0;
    width: 80px;
    height: 40px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.timeline-content {
    background: var(--bg-lightest);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
}

.timeline-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.timeline-content p {
    color: #64748b;
    margin-bottom: 0.75rem;
}

.timeline-cost {
    display: block;
    font-weight: 700;
    color: #dc2626;
}

.timeline-cost-critical {
    background: #dc2626;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.timeline-repeat {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fee2e2;
    border-radius: 12px;
    text-align: center;
    color: #991b1b;
    font-weight: 700;
}

/* automated Advantage Section */
.section-ai-advantage {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.comparison-table {
    background: var(--bg-lightest);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #1e293b;
    color: #ffffff;
    font-weight: 700;
    padding: 1.5rem;
    gap: 1rem;
}

.comparison-col {
    text-align: center;
}

.comparison-traditional {
    color: #fca5a5;
}

.comparison-dvp {
    color: #60a5fa;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
}

.comparison-row:nth-child(even) {
    background: #f8fafc;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-metric {
    font-weight: 600;
    color: #1e293b;
}

.comparison-value {
    text-align: center;
}

.comparison-value span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.value-bad {
    color: #dc2626;
}

.value-good {
    color: #10b981;
}

.comparison-value small {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
}

.roi-showcase {
    background: var(--bg-lightest);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.roi-showcase h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e293b;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.roi-item {
    background: #f0f9ff;
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    overflow: hidden;
}

.roi-item-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #1d4ed8;
}

.roi-item-highlight .roi-label,
.roi-item-highlight .roi-value,
.roi-item-highlight small {
    color: #ffffff !important;
}

.roi-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.roi-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.roi-item small {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }
}

/* Case Study Section */
.section-case-study {
    background: var(--bg-lightest);
}

.case-study-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lightest) 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.case-study-icon {
    font-size: 3rem;
}

.case-study-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.case-study-info p {
    color: #64748b;
}

.case-study-comparison {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.case-study-before,
.case-study-after {
    flex: 1;
    min-width: 300px;
    background: var(--bg-lightest);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
}

.case-study-after {
    border-color: #10b981;
    background: #f0fdf4;
}

.case-study-before h4,
.case-study-after h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.case-study-before ul,
.case-study-after ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-before li,
.case-study-after li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.case-study-before li:last-child,
.case-study-after li:last-child {
    border-bottom: none;
}

.case-study-arrow {
    font-size: 3rem;
    color: #10b981;
}

.case-study-result {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.case-study-result strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Competitive Wedge Section */
.section-competitive-wedge {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
}

.section-competitive-wedge .section-title {
    color: #ffffff;
}

.section-competitive-wedge .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.wedge-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.wedge-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.wedge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wedge-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 1rem;
}

.wedge-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.wedge-impact {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.wedge-timeline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.wedge-timeline h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.wedge-timeline-flow {
    max-width: 600px;
    margin: 0 auto;
}

.wedge-flow-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.wedge-flow-critical {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
}

.wedge-flow-lost {
    background: rgba(249, 115, 22, 0.2);
    border: 2px solid #f97316;
}

.wedge-flow-final {
    background: rgba(220, 38, 38, 0.3);
    border: 2px solid #dc2626;
}

.wedge-flow-time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.wedge-flow-event {
    font-size: 1.1rem;
    color: #ffffff;
}

.wedge-flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: #3b82f6;
    margin: 0.5rem 0;
}

.wedge-warning {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.wedge-warning h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.wedge-warning p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Data CTA Section */
.section-data-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 80px 0;
}

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

.data-cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.data-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.data-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.data-cta-guarantee {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.data-cta-guarantee p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Sources Section */
.section-sources {
    background: #f8fafc;
    padding: 60px 0;
}

.section-sources h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-sources p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.sources-list li:last-child {
    border-bottom: none;
}

.sources-list a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sources-list a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .data-hero-title {
        font-size: 2.5rem;
    }

    .data-hero-subtitle {
        font-size: 1.25rem;
    }

    .crisis-stats {
        grid-template-columns: 1fr;
    }

    .crisis-stat-number {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .comparison-value {
        text-align: left;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
    }

    .case-study-comparison {
        flex-direction: column;
    }

    .case-study-arrow {
        transform: rotate(90deg);
    }

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

    .data-cta-buttons {
        flex-direction: column;
    }
}
