body { 
    -webkit-font-smoothing: antialiased; 
    background: #ffffff; 
    color: #1d1d1f; 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* DATA SHEET STYLE */
.data-report-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    overflow: hidden;
}

.report-header {
    background: #fbfbfd;
    padding: 14px 24px;
    border-bottom: 1px solid #e5e5e5;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.report-row {
    display: grid; 
    grid-template-columns: 2fr 2fr 2fr 1fr;
    padding: 18px 24px;
    border-bottom: 1px solid #f5f5f7;
    align-items: center;
    font-size: 13px; 
    color: #1d1d1f;
    transition: background 0.1s;
}

.report-row:hover { 
    background: #f5f5f7; 
}

.report-label {
    font-size: 10px; 
    font-weight: 600; 
    color: #86868b; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    margin-bottom: 4px;
}

/* BADGES - Refined */
.badge-verified {
    background: #eafcf1; 
    color: #15803d;
    padding: 4px 10px; 
    border-radius: 6px; 
    font-weight: 600; 
    font-size: 11px;
    display: inline-block;
}

.badge-signal {
    background: #f5f5f7; 
    color: #1d1d1f;
    padding: 5px 10px; 
    border-radius: 6px; 
    font-weight: 500; 
    font-size: 12px;
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
}

/* CONTACT CARD */
.contact-card {
    background: white; 
    border: 1px solid #e5e5e5; 
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* ADVANTAGE CARDS */
.advantage-card {
    padding: 2rem 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    border-color: #0071e3;
    box-shadow: 0 20px 40px rgba(0, 113, 227, 0.1);
    transform: translateY(-5px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0071e3, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

/* INTELLIGENCE DIMENSIONS - NEW STYLES */
.intelligence-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.intelligence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0071e3, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.intelligence-card:hover::before {
    transform: scaleX(1);
}

.intelligence-card:hover {
    border-color: #d2d2d7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}

.intelligence-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #0071e3;
    transition: all 0.3s ease;
}

.intelligence-card:hover .intelligence-icon {
    background: #0071e3;
    color: white;
    transform: rotate(5deg) scale(1.05);
}

.intelligence-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.intelligence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intelligence-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.875rem;
    color: #424245;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.intelligence-item:last-child {
    margin-bottom: 0;
}

.intelligence-bullet {
    width: 6px;
    height: 6px;
    background: #d2d2d7;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.intelligence-card:hover .intelligence-bullet {
    background: #0071e3;
    transform: scale(1.2);
}

.intelligence-card:hover .intelligence-item {
    color: #1d1d1f;
}

/* METHODOLOGY BUTTONS */
.methodology-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.methodology-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #0071e3, #2563eb);
    z-index: -1;
    border-radius: 9999px;
}

.methodology-btn-alt {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.methodology-btn-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.methodology-btn-alt:hover::before {
    left: 100%;
}

.methodology-btn-alt:hover {
    background-color: #0071e3;
    color: white;
}

/* FIXED MARQUEE - Infinite Scroll without gaps */
.marquee-container {
    overflow: hidden;
    background: #fff;
    position: relative;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: fit-content;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 1.25rem;
}

.separator {
    color: #d2d2d7;
    font-size: 1.5rem;
    padding: 0 0.75rem;
}

/* Seamless infinite scroll without pauses */
@keyframes seamless-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.seamless-marquee {
    display: flex;
    width: max-content;
    animation: seamless-scroll 30s linear infinite;
}

/* Triple content for seamless looping */
.marquee-content-triple {
    display: flex;
    align-items: center;
}

/* Additional Animations */
@keyframes glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px #0071e3;
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px #0071e3;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Nav Link Hover Effect */
.nav-link { 
    position: relative; 
}

.nav-link::after {
    content: ''; 
    position: absolute; 
    width: 100%; 
    transform: scaleX(0); 
    height: 1px; 
    bottom: -2px; 
    left: 0;
    background-color: #0071e3; 
    transform-origin: bottom right; 
    transition: transform 0.25s ease-out;
}

.nav-link:hover::after { 
    transform: scaleX(1); 
    transform-origin: bottom left; 
}

/* Email provider buttons */
.email-provider-btn {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.email-provider-btn:hover {
    border-color: #0071e3;
    transform: translateY(-2px);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .data-report-card { 
        display: none; 
    }
    
    .mobile-report-card { 
        display: block; 
        background: white; 
        padding: 16px; 
        border-radius: 12px; 
        border: 1px solid #e5e5e5; 
        margin-bottom: 12px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
    }
    
    .seamless-marquee {
        animation: seamless-scroll 45s linear infinite;
    }
    
    /* Intelligence Cards mobile */
    .intelligence-card {
        padding: 1.5rem;
    }
    
    .intelligence-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .intelligence-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .intelligence-item {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }
    
    /* Advantage Cards mobile */
    .advantage-card {
        padding: 1.5rem;
    }
    
    /* Contact section mobile adjustments */
    #contact .contact-card {
        padding: 1.5rem !important;
    }
    
    #contact .grid {
        gap: 2rem !important;
    }
    
    #contact .border-l {
        border-left: none !important;
        border-top: 1px solid #e5e5e5;
        padding-top: 2rem;
        margin-top: 2rem;
    }
    
    /* Email provider buttons on mobile */
    .flex-wrap.gap-4 {
        justify-content: center;
    }
    
    .flex-wrap.gap-4 a {
        flex: 1 0 calc(50% - 0.5rem);
        min-width: 120px;
        text-align: center;
        justify-content: center;
    }
    
    /* Fix for contact email on mobile */
    .contact-email {
        font-size: 1.125rem !important;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        hyphens: none;
        display: block;
    }
}

/* Additional responsive improvements */
@media (max-width: 480px) {
    .seamless-marquee {
        animation: seamless-scroll 60s linear infinite;
    }
    
    /* Intelligence Cards small mobile */
    .intelligence-card {
        padding: 1.25rem;
    }
    
    /* Email provider buttons on very small screens */
    .flex-wrap.gap-4 a {
        flex: 1 0 100%;
    }
    
    /* Further email fix for very small screens */
    .contact-email {
        font-size: 1rem !important;
        letter-spacing: -0.01em;
    }
    
    /* Contact section adjustments */
    #contact {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    #contact .text-4xl {
        font-size: 2rem !important;
    }
}

/* Specific fix for email address in contact section */
a.contact-email {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
}

/* Ensure the contact section doesn't overflow on mobile */
@media (max-width: 640px) {
    #contact .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #contact .contact-card {
        padding: 1.25rem !important;
    }
    
    /* Prevent email from breaking awkwardly */
    a[href^="mailto:"] {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: manual;
    }
}

/* Animations */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.border-red-300 {
    border-color: #fca5a5;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .data-report-card {
        box-shadow: none;
        border: 1px solid #000;
    }
}