﻿html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
}

.container, .container-fluid {
    padding: 0 !important;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --accent-primary: #B8202E;
    --accent-secondary: #D02532;
    --accent-light: #E63946;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --section-padding: 120px;
    --container-width: 1200px;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-display);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

.page-wrapper {
    position: relative;
    overflow: hidden;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    top: -300px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-secondary), transparent);
    bottom: 10%;
    left: -100px;
    animation-delay: -10s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-light), transparent);
    top: 50%;
    right: 10%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), linear-gradient(to bottom, rgba(89, 8, 8, 0.3), transparent 50%), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(89, 8, 8, 0.03) 2px, rgba(89, 8, 8, 0.03) 4px);
        pointer-events: none;
    }

.hero-container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-wrapper {
    margin-bottom: 40px;
    display: inline-block;
}

.isearch-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(89, 8, 8, 0.6));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
}

.badge-icon {
    font-size: 16px;
}

.hero-heading {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(89, 8, 8, 0.4);
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(89, 8, 8, 0.6);
    }

    .btn-primary.large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

    .btn-secondary:hover {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    font-family: var(--font-mono);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--section-padding) 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-light);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(89, 8, 8, 0.15);
    border-radius: 6px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.showcase-section {
    background-color: var(--bg-secondary);
    position: relative;
    background-image: linear-gradient(rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.95)), linear-gradient(to bottom, transparent, rgba(89, 8, 8, 0.1) 50%, transparent), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

    .showcase-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(to bottom, rgba(10, 10, 10, 1), transparent);
        pointer-events: none;
    }

    .showcase-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(to top, rgba(10, 10, 10, 1), transparent);
        pointer-events: none;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .feature-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 100% 0%, rgba(89, 8, 8, 0.1), transparent 50%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover::after {
        opacity: 1;
    }

    .feature-card:hover {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
        border-color: rgba(89, 8, 8, 0.4);
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(89, 8, 8, 0.3);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(89, 8, 8, 0.3), rgba(139, 10, 10, 0.2));
    border-radius: 14px;
    font-size: 24px;
    color: var(--accent-light);
    margin-bottom: 24px;
    position: relative;
}

    .feature-icon::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        border-radius: 16px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

.feature-card:hover .feature-icon::before {
    opacity: 0.4;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

.partners-section {
    background-color: var(--bg-primary);
    position: relative;
    background-image: linear-gradient(rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.95)), linear-gradient(to right, rgba(89, 8, 8, 0.15), transparent 30%, transparent 70%, rgba(89, 8, 8, 0.15)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

    .partners-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 400px;
        background: linear-gradient(to bottom, rgba(17, 17, 17, 1), transparent);
        pointer-events: none;
    }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

    .partner-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 20%, rgba(89, 8, 8, 0.1), transparent 40%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .partner-card:hover::before {
        opacity: 1;
    }

    .partner-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 1px;
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .partner-card:hover::after {
        opacity: 1;
    }

    .partner-card:hover {
        transform: translateY(-8px);
        border-color: transparent;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
        box-shadow: 0 15px 50px rgba(89, 8, 8, 0.3);
    }

    .partner-card.featured {
        grid-column: span 1;
        background: linear-gradient(135deg, rgba(89, 8, 8, 0.15), rgba(0, 0, 0, 0.8));
    }

.partner-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 8, 8, 0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0 !important;
    pointer-events: none !important;
}

.partner-card.featured:hover .partner-glow {
    opacity: 1;
}

.partner-logo-container {
    margin-bottom: 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.partner-logo {
    max-width: 200px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.partner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    font-size: 11px;
    font-family: var(--font-mono);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    z-index: 2;
}

.partner-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 16px;
    font-style: italic;
}

.partner-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.partner-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

    .highlight-item i {
        color: var(--accent-light);
        font-size: 14px;
    }

.partner-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.specialty-tag {
    padding: 6px 12px;
    background: rgba(89, 8, 8, 0.2);
    color: var(--accent-light);
    font-size: 11px;
    font-family: var(--font-mono);
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid rgba(89, 8, 8, 0.3);
    transition: all 0.3s ease;
}

    .specialty-tag:hover {
        background: rgba(89, 8, 8, 0.3);
        border-color: rgba(89, 8, 8, 0.5);
    }

.partner-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100 !important;
}

.partner-link {
    position: relative;
    z-index: 101 !important;
    pointer-events: auto !important;
}

    .partner-link.primary {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        color: #ffffff;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: none;
    }

        .partner-link.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(89, 8, 8, 0.5);
        }

    .partner-link.secondary {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-primary);
        font-weight: 600;
        font-size: 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .partner-link.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

    .partner-link i {
        font-size: 12px;
    }

.cta-section {
    padding: 120px 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.92)), linear-gradient(135deg, rgba(89, 8, 8, 0.2), transparent 50%, rgba(89, 8, 8, 0.2)), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    }

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

    .cta-container h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .cta-container p {
        font-size: 1.25rem;
        font-weight: 400;
        color: var(--text-secondary);
        margin-bottom: 40px;
    }

.site-footer {
    background: linear-gradient(rgba(17, 17, 17, 1), rgba(17, 17, 17, 1)), url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.isearch-logo-footer {
    width: 180px;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-bottom p {
        color: var(--text-muted);
        font-size: 14px;
        font-family: var(--font-mono);
        font-weight: 500;
    }

.footer-links {
    display: flex;
    gap: 30px;
}

    .footer-links a {
        color: var(--text-secondary);
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--accent-light);
        }

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

    .fade-in.delay-1 {
        animation-delay: 0.2s;
    }

    .fade-in.delay-2 {
        animation-delay: 0.4s;
    }

    .fade-in.delay-3 {
        animation-delay: 0.6s;
    }

    .fade-in.delay-4 {
        animation-delay: 0.8s;
    }

    .fade-in.delay-5 {
        animation-delay: 1s;
    }

    .fade-in.delay-6 {
        animation-delay: 1.2s;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .slide-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-up.delay-1 {
        transition-delay: 0.1s;
    }

    .slide-up.delay-2 {
        transition-delay: 0.2s;
    }

    .slide-up.delay-3 {
        transition-delay: 0.3s;
    }

    .slide-up.delay-4 {
        transition-delay: 0.4s;
    }

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card.featured {
        grid-column: span 1;
    }

    .partner-logo {
        max-width: 160px;
    }

    .partner-actions {
        flex-direction: column;
    }

    .partner-link.primary,
    .partner-link.secondary {
        width: 100%;
    }

    .partner-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .isearch-logo {
        width: 180px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .partner-stats-mini {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-meta {
        flex-direction: column;
        gap: 10px;
    }

        .cta-meta .divider {
            display: none;
        }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .partner-logo {
        max-width: 140px;
    }

    .specialty-tag {
        font-size: 10px;
        padding: 5px 10px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(184, 32, 46, 0.3);
    border-radius: 50%;
    animation: float-particle 20s infinite;
}

    .particle:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
        animation-duration: 15s;
    }

    .particle:nth-child(2) {
        left: 30%;
        animation-delay: 3s;
        animation-duration: 18s;
    }

    .particle:nth-child(3) {
        left: 50%;
        animation-delay: 1s;
        animation-duration: 22s;
    }

    .particle:nth-child(4) {
        left: 70%;
        animation-delay: 4s;
        animation-duration: 16s;
    }

    .particle:nth-child(5) {
        left: 90%;
        animation-delay: 2s;
        animation-duration: 20s;
    }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.badge-pulse {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #B8202E;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(184, 32, 46, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(184, 32, 46, 0);
    }
}

.gradient-text-animated {
    background: linear-gradient(90deg, #B8202E, #E63946, #B8202E);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.highlight-text {
    color: #E63946;
    font-weight: 600;
    position: relative;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
    padding: 30px 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    max-width: 600px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E63946;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary .btn-shine,
.btn-primary.large .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateY(3px);
}

.btn-secondary:hover .btn-icon {
    transform: translateX(3px);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
    margin-bottom: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #E63946;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-scroll 1.5s ease-in-out infinite;
}

@keyframes mouse-scroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.deco-circle {
    position: absolute;
    border: 1px solid rgba(184, 32, 46, 0.1);
    border-radius: 50%;
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: rotate-slow 30s linear infinite;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation: rotate-slow 25s linear infinite reverse;
}

.deco-line {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 32, 46, 0.3), transparent);
    position: absolute;
    top: 50%;
    right: 5%;
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.5);
    }
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(184, 32, 46, 0.1);
    line-height: 1;
    z-index: 0;
}

.icon-bg {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(184, 32, 46, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .icon-bg {
    opacity: 1;
    animation: icon-pulse 1.5s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.feature-tags {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

    .feature-tags .tag {
        padding: 4px 12px;
        background: rgba(184, 32, 46, 0.15);
        color: #E63946;
        font-size: 11px;
        font-weight: 600;
        border-radius: 6px;
        border: 1px solid rgba(184, 32, 46, 0.3);
    }

.partner-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(184, 32, 46, 0.15) 90deg, transparent 180deg);
    animation: rotate-shine 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1 !important;
    pointer-events: none !important;
}

.partner-card:hover .partner-shine {
    opacity: 1;
}

@keyframes rotate-shine {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.partner-badge.tech {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.partner-badge.executive {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.partner-stats-mini {
    display: flex;
    gap: 30px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E63946;
}

.mini-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle-1,
.cta-circle-2 {
    position: absolute;
    border: 1px solid rgba(184, 32, 46, 0.15);
    border-radius: 50%;
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: rotate-slow 20s linear infinite;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: rotate-slow 15s linear infinite reverse;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #B8202E, #E63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cta-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

    .cta-meta .divider {
        color: rgba(255, 255, 255, 0.3);
    }

    .cta-meta i {
        color: #E63946;
        margin-right: 6px;
    }

.partner-card::before,
.partner-card::after {
    pointer-events: none !important;
}
