/* ==========================================================================
   SEÇÃO OPORTUNIDADES DE MERCADO - CSS OTIMIZADO
   Mobile-First + Performance Focus
   ========================================================================== */

.market-opportunity {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern - Otimizado */
.market-opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(42,91,127,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217,102,71,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* ==========================================================================
   SECTION HEADER - MOBILE FIRST
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff3b30 100%);
    color: white;
    padding: 12px 24px; /* Touch target 44px+ */
    border-radius: 50px;
    font-size: 16px; /* Melhor para mobile */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    min-height: 44px; /* Touch target */
}

.section-title {
    font-size: 28px; /* Mobile first */
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-underline {
    position: relative;
    display: inline-block;
    color: var(--secondary);
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineExpand 1s ease 0.5s forwards;
}

.section-subtitle {
    font-size: 16px; /* Mobile optimized */
    color: var(--gray);
    max-width: 100%; /* Mobile first */
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
}

.text-danger { color: #ff3b30; font-weight: 700; }
.text-success { color: var(--success); font-weight: 700; }
.text-warning { color: var(--accent); font-weight: 700; }

/* ==========================================================================
   LIVE COUNTER - MOBILE FIRST
   ========================================================================== */

.live-counter {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column; /* Mobile first */
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    position: relative;
    min-height: 140px;
    isolation: isolate;
}

/* Radar desabilitado por padrão (mobile first) */
.live-counter::before,
.live-counter::after,
.radar-center,
.radar-pulse {
    display: none;
}

.counter-item {
    position: relative;
    z-index: 10;
    text-align: center;
    flex: 1;
    background: rgba(255, 255, 255, 0);
    padding: 15px;
    border-radius: 12px;
    width: 100%;
    min-height: 44px; /* Touch target */
}

.counter-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(42,91,127,0.2),
        rgba(42,91,127,0.3),
        rgba(42,91,127,0.2),
        transparent
    );
    margin: 10px auto;
    flex-shrink: 0;
}

.counter-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-number {
    display: block;
    font-size: 32px; /* Mobile optimized */
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    font-feature-settings: "tnum";
}

.counter-growth {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
}

.counter-deficit {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
}

/* ==========================================================================
   STATS GRID - MOBILE FIRST (SEM EFEITO BALANÇO)
   ========================================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 44px; /* Touch target */
}

/* REMOVIDO: Efeito de balanço conforme solicitado */
.stat-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.stat-growth::before { background: linear-gradient(90deg, #22c55e, #16a34a); }
.stat-money::before { background: linear-gradient(90deg, var(--accent), #ff9500); }
.stat-demand::before { background: linear-gradient(90deg, #ff3b30, #ff6b6b); }
.stat-area::before { background: linear-gradient(90deg, var(--primary), var(--success)); }

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stat-icon {
    width: 50px; /* Otimizado para mobile */
    height: 50px;
    background: linear-gradient(135deg, rgba(42,91,127,0.1) 0%, rgba(102,124,77,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.stat-badge {
    background: rgba(42,91,127,0.1);
    color: var(--primary);
    padding: 6px 12px; /* Touch target */
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.stat-badge.urgent {
    background: rgba(255,59,48,0.1);
    color: #ff3b30;
    animation: pulse 2s infinite;
}

.stat-value {
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px; /* Mobile optimized */
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.stat-description {
    font-size: 15px; /* Melhor legibilidade mobile */
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.stat-projection {
    padding-top: 20px;
    border-top: 2px solid #f0f4f8;
    font-size: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   COMPARISON SECTION - MOBILE FIRST
   ========================================================================== */

.comparison-section {
    background: white;
    border-radius: 30px;
    padding: 30px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.comparison-title {
    font-size: 24px; /* Mobile optimized */
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
    line-height: 1.3;
}

.comparison-chart {
    margin-bottom: 40px;
}

.country-bar {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.country-bar:hover {
    background: rgba(42,91,127,0.03);
}

.brazil-highlight {
    background: linear-gradient(135deg, rgba(217,102,71,0.05) 0%, rgba(242,176,59,0.05) 100%);
    border: 2px solid var(--secondary);
    padding: 20px;
    position: relative;
    animation: highlightPulse 3s ease-in-out infinite;
}

.country-info {
    display: flex;
    align-items: center;
    justify-content: center; /* Mobile center */
    gap: 12px;
}

.country-flag {
    width: 32px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.country-name {
    font-weight: 700;
    color: var(--dark);
}

.opportunity-badge {
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    animation: bounce 2s infinite;
    position: absolute;
    top: -8px;
    right: 20px; /* Ajustado para mobile */
}

.progress-container {
    position: relative;
}

.progress-bar {
    background: #f0f4f8;
    height: 44px; /* Touch target otimizado */
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 22px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-fill.brazil {
    background: linear-gradient(90deg, #ff3b30, var(--secondary));
}

.progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
    z-index: 2;
}

.country-stat {
    text-align: center; /* Mobile center */
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

/* ==========================================================================
   CALCULATOR - MOBILE FIRST
   ========================================================================== */

.potential-calculator {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4058 100%);
    border-radius: 30px;
    padding: 30px 20px;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.potential-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.calculator-title {
    text-align: center;
    font-size: 24px; /* Mobile optimized */
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.calculator-title .text-gradient {
    background: linear-gradient(135deg, #F2B03B 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: none;
}

.calculator-title i {
    color: white;
    opacity: 1;
    margin-right: 10px;
}

.calculator-content {
    position: relative;
    z-index: 1;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 20px;
    margin-bottom: 40px;
}

.calc-input {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.calc-input label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.calc-input input[type="range"] {
    width: 100%;
    height: 8px; /* Touch target otimizado */
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 10px;
}

.calc-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 32px; /* Touch target 44px+ */
    height: 32px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.calc-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.calculator-results {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 15px;
}

.result-box {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 44px; /* Touch target */
}

.result-box.highlight {
    background: rgba(242,176,59,0.3);
    transform: scale(1.02); /* Reduzido para mobile */
    padding:20px;
    border-radius:15px;
}

.result-box.roi {
    background: rgba(102,124,77,0.3);
}

.result-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.result-value {
    display: block;
    font-size: 24px; /* Mobile optimized */
    font-weight: 900;
    color: white;
}

/* ==========================================================================
   TIMELINE - MOBILE FIRST
   ========================================================================== */

.opportunity-timeline {
    margin-bottom: 60px;
}

.timeline-title {
    text-align: center;
    font-size: 24px; /* Mobile optimized */
    margin-bottom: 40px;
    color: var(--dark);
}

.timeline-content {
    position: relative;
    padding-left: 40px; /* Reduzido para mobile */
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 15px; /* Ajustado */
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px; /* Reduzido */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.timeline-item.current {
    opacity: 1;
}

.timeline-item:hover {
    opacity: 1;
    transform: translateX(5px); /* Reduzido para mobile */
}

.timeline-marker {
    position: absolute;
    left: -35px; /* Ajustado */
    top: 0;
    width: 30px; /* Touch target otimizado */
    height: 30px;
    background: white;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.timeline-item.current .timeline-marker {
    background: var(--secondary);
    color: white;
    animation: pulse 2s infinite;
}

.timeline-date {
    display: inline-block;
    background: rgba(42,91,127,0.1);
    color: var(--primary);
    padding: 6px 12px; /* Touch target */
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-info h4 {
    font-size: 18px; /* Mobile optimized */
    margin-bottom: 8px;
    color: var(--dark);
}

.timeline-info p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 14px;
}

.timeline-alert {
    background: linear-gradient(135deg, rgba(255,59,48,0.1) 0%, rgba(217,102,71,0.1) 100%);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.timeline-alert i {
    font-size: 24px;
    color: var(--secondary);
}

/* ==========================================================================
   SECTION CTA - MOBILE FIRST
   ========================================================================== */

.section-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(217,102,71,0.05) 0%, rgba(242,176,59,0.05) 100%);
    border: 2px solid var(--secondary);
    border-radius: 30px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217,102,71,0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.cta-content h3 {
    font-size: 24px; /* Mobile optimized */
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.3;
}

.cta-content p {
    font-size: 16px; /* Mobile optimized */
    color: var(--gray);
    line-height: 1.5;
}

.btn-cta-section {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff3b30 100%);
    color: white;
    padding: 20px 30px; /* Touch target otimizado */
    border-radius: 50px;
    font-size: 16px; /* Mobile optimized */
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(217,102,71,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    min-height: 44px; /* Touch target */
    width: 100%; /* Mobile full width */
    max-width: 400px;
}

.btn-cta-section:hover {
    transform: translateY(-2px); /* Reduzido para mobile */
    box-shadow: 0 12px 35px rgba(217,102,71,0.4);
}

.btn-subtitle {
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    opacity: 0.95;
}

/* ==========================================================================
   INSIGHT BOX - MOBILE FIRST
   ========================================================================== */

.insight-box {
    background: linear-gradient(135deg, rgba(42,91,127,0.05) 0%, rgba(102,124,77,0.05) 100%);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column; /* Mobile first */
    gap: 20px;
    align-items: center;
    text-align: center;
}

.insight-icon {
    width: 60px; /* Touch target otimizado */
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    flex-shrink: 0;
    animation: glow 2s ease-in-out infinite;
}

.insight-content h4 {
    font-size: 18px; /* Mobile optimized */
    margin-bottom: 12px;
    color: var(--dark);
}

.insight-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.insight-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px; /* Touch target */
    border-radius: 25px;
    background: rgba(217,102,71,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
}

.insight-cta:hover {
    background: rgba(217,102,71,0.15);
    transform: translateY(-2px);
}

.insight-arrow {
    font-size: 20px;
    animation: arrowMove 1s ease-in-out infinite;
}

/* ==========================================================================
   ANIMATIONS - OTIMIZADAS
   ========================================================================== */

@keyframes underlineExpand {
    to { transform: scaleX(1); }
}

@keyframes highlightPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217,102,71,0.15); }
    50% { box-shadow: 0 0 15px 5px rgba(217,102,71,0.15); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(242,176,59,0.4); }
    50% { box-shadow: 0 0 25px rgba(242,176,59,0.6); }
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS - DESKTOP ENHANCEMENTS
   ========================================================================== */

/* Tablet Portrait */
@media (min-width: 768px) {
    .market-opportunity {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
        max-width: 800px;
        padding: 0;
    }

    .live-counter {
        flex-direction: row;
        justify-content: space-around;
        padding: 40px 30px;
    }

    .counter-divider {
        width: 2px;
        height: 80px;
        margin: 0 20px;
    }

    .counter-number {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 48px;
    }

    .comparison-section {
        padding: 40px 30px;
    }

    .comparison-title {
        font-size: 28px;
    }

    .country-bar {
        grid-template-columns: 150px 1fr 120px;
        text-align: left;
    }

    .country-info {
        justify-content: flex-start;
    }

    .country-stat {
        text-align: right;
    }

    .opportunity-badge {
        right: 120px;
    }

    .potential-calculator {
        padding: 50px 40px;
    }

    .calculator-title {
        font-size: 28px;
    }

    .calculator-inputs {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .calculator-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .result-value {
        font-size: 28px;
    }

    .timeline-title {
        font-size: 28px;
    }

    .timeline-content {
        padding-left: 60px;
    }

    .timeline-marker {
        left: -50px;
        width: 40px;
        height: 40px;
    }

    .cta-box {
        padding: 50px 40px;
    }

    .cta-content h3 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .btn-cta-section {
        font-size: 18px;
        padding: 25px 50px;
        width: auto;
    }

    .insight-box {
        flex-direction: row;
        text-align: left;
        padding: 30px;
    }

    .insight-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .insight-content h4 {
        font-size: 20px;
    }

    .insight-content p {
        font-size: 16px;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 35px 30px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .stat-number {
        font-size: 56px;
    }

    .comparison-section {
        padding: 50px;
    }

    .comparison-title {
        font-size: 32px;
    }

    .potential-calculator {
        padding: 50px;
    }

    .calculator-title {
        font-size: 32px;
    }

    .calculator-inputs {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-value {
        font-size: 32px;
    }

    .timeline-title {
        font-size: 32px;
    }

    .cta-content h3 {
        font-size: 36px;
    }

    /* Radar habilitado apenas em desktop */
    .live-counter::before {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 250px;
        height: 250px;
        transform: translate(-50%, -50%);
        background: 
            radial-gradient(circle at center,
                transparent 29%,
                rgba(42,91,127,0.15) 30%,
                transparent 31%,
                transparent 49%,
                rgba(42,91,127,0.12) 50%,
                transparent 51%,
                transparent 69%,
                rgba(42,91,127,0.08) 70%,
                transparent 71%,
                transparent 89%,
                rgba(42,91,127,0.05) 90%,
                transparent 91%
            );
        pointer-events: none;
        z-index: 0;
        opacity: 0.8;
    }

    .live-counter::after {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        left: 57%;
        width: 160px;
        height: 2px;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(42,91,127,0.3) 30%,
            rgba(42,91,127,0.6) 70%,
            rgba(42,91,127,0.8) 90%,
            rgba(102,124,77,1) 100%
        );
        transform-origin: 0% 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        animation: radarSweep 3s linear infinite;
        z-index: 1;
        pointer-events: none;
        box-shadow: 0 0 10px rgba(42,91,127,0.3);
    }

    @keyframes radarSweep {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
            opacity: 0.3;
        }
        10% {
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg);
            opacity: 0.3;
        }
    }
}

/* ==========================================================================
   UTILITIES & DISCLAIMERS
   ========================================================================== */

.legal-disclaimer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.legal-disclaimer p {
    font-size: 12px;
    color: rgba(108, 117, 125, 0.8);
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.legal-disclaimer.subtle {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0,0,0,0.05);
}

.legal-disclaimer.subtle p {
    font-size: 10px;
    color: rgba(108, 117, 125, 0.6);
    text-align: center;
}

/* Print Optimization */
@media print {
    .market-opportunity {
        page-break-inside: avoid;
    }
    
    .btn-cta-section,
    .live-counter::before,
    .live-counter::after {
        display: none;
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}