/* Partners Home Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 24px 100px;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(10, 10, 10, 0.7) 40%,
            rgba(16, 21, 62, 0.85) 70%,
            rgba(99, 102, 241, 0.15) 100%);
    backdrop-filter: blur(2px);
}

/* Gradient fade to dark at bottom */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(10, 10, 10, 0.8) 50%,
            #000000 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #a5b4fc 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.cta-secondary {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Trust Badge */
.hero-trust {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.9;
}

.trust-stars {
    font-size: 18px;
    letter-spacing: 2px;
}

.trust-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

/* Logo Slider Section */
.logo-slider-section {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Section Base Styles - Connected Gradients */
.section {
    padding: 100px 24px;
    position: relative;
}

/* Body - Pure black base */
body {
    background: #000000;
}

main {
    position: relative;
}

/* Stats Section - Morado → Negro */
#estadisticas {
    background: linear-gradient(0deg,
            rgba(99, 102, 241, 0.12) 0%,
            rgba(79, 70, 229, 0.08) 30%,
            rgba(16, 21, 62, 0.04) 70%,
            #000000 100%);
    color: white;
}

/* Event Phases Section - Negro → Teal/Verde */
.event-phases-section {
    background: linear-gradient(180deg,
            #000000 0%,
            rgba(20, 40, 60, 0.3) 30%,
            rgba(20, 184, 166, 0.08) 70%,
            rgba(16, 185, 129, 0.06) 100%);
    color: white;
}

/* Solutions Section - Verde → Negro */
#soluciones {
    background: linear-gradient(0deg, rgb(0 0 0 / 6%) 0%, rgb(83 19 19 / 12%) 30%, rgb(65 20 20 / 30%) 70%, #000000 100%);
    color: white;
}

/* Analytics Section - Negro → Azul */
.section:has(+ .section-dark) {
    background: linear-gradient(181deg, #000000 0%, rgb(0 0 0 / 30%) 30%, #4f46e50f 70%, rgb(80 78 253 / 17%) 100%);
}

/* Technology Section - Azul → Negro */
#tecnologia {
    background: linear-gradient(180deg, rgb(80 78 253 / 17%) 0%, rgba(59, 130, 246, 0.04) 30%, rgba(20, 30, 60, 0.3) 70%, #000000 100%);
    color: white;
}

/* Success Stories - Negro → Morado suave */
#casos-exito {
    background: linear-gradient(180deg,
            #000000 0%,
            rgba(30, 20, 60, 0.3) 30%,
            rgba(139, 92, 246, 0.08) 70%,
            rgba(168, 85, 247, 0.06) 100%);
    color: white;
}

/* FAQ Section - Morado → Negro */
.section:has(.faq-container) {
    background: linear-gradient(180deg,
            rgba(168, 85, 247, 0.06) 0%,
            rgba(139, 92, 246, 0.04) 30%,
            rgba(30, 20, 50, 0.3) 70%,
            #000000 100%);
    color: white;
}

/* CTA Section - Negro → Morado intenso */
.cta-section {
    background: linear-gradient(180deg,
            #000000 0%,
            rgba(67, 56, 202, 0.3) 20%,
            rgba(99, 102, 241, 0.25) 50%,
            rgba(139, 92, 246, 0.2) 80%,
            rgba(99, 102, 241, 0.15) 100%);
    padding: 120px 24px;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 60% at 50% 40%,
            rgba(99, 102, 241, 0.12) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Generic fallback */
.section-dark {
    background: transparent;
    color: white;
}

.section-gradient {
    background: transparent;
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* Rays Effect - More subtle */
.rays-effect {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background:
        radial-gradient(ellipse at center, rgba(99, 102, 241, 0.02) 0%, transparent 70%),
        repeating-linear-gradient(0deg,
            transparent 0px,
            rgba(99, 102, 241, 0.02) 1px,
            transparent 2px,
            transparent 50px);
    pointer-events: none;
    opacity: 0.5;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Event Phases Interactive Section */
.event-phases-section {
    position: relative;
    overflow: hidden;
}

.event-phases-container {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    margin-top: 80px;
    align-items: flex-start;
}

.phases-visual {
    position: sticky;
    top: 120px;
}

.visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.1),
        0 40px 100px rgba(0, 0, 0, 0.8);
    background: #000;
    aspect-ratio: 1;
}

.phase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.phase-image.active {
    opacity: 1;
    z-index: 1;
}

/* Accordion Phases */
.phases-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.phase-item {
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.phase-item:last-child {
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.phase-header:hover {
    padding-left: 12px;
}

.phase-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    transition: color 0.3s;
}

.phase-item.active .phase-title,
.phase-header:hover .phase-title {
    color: var(--accent-secondary);
}

.phase-arrow {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.phase-item.active .phase-arrow {
    transform: rotate(90deg);
    color: var(--accent);
}

.phase-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.phase-item.active .phase-content {
    max-height: 800px;
    padding-bottom: 48px;
}

.content-headline {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.highlight-text {
    color: var(--accent-secondary);
    position: relative;
}

.content-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.pill:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Image Section */
.image-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.showcase-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-content {
    padding: 20px;
}

.showcase-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.showcase-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.showcase-list {
    list-style: none;
    padding: 0;
}

.showcase-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.showcase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

/* Interactive Solutions Section */
.interactive-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
    align-items: flex-start;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.solution-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.solution-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}

.solution-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.solution-toggle {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.solution-item.active .solution-toggle,
.solution-item:hover .solution-toggle {
    color: var(--accent);
}

.solution-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.solution-item.active .solution-content {
    max-height: 300px;
    padding: 0 24px 24px;
}

.solution-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.solution-link:hover {
    color: var(--accent-secondary);
    gap: 12px;
}

/* Solutions Visual */
.solutions-visual {
    position: sticky;
    top: 100px;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    aspect-ratio: 16/11;
}

.solution-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-image.active {
    opacity: 1;
    z-index: 1;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section - Blends with global gradient */
.cta-section {
    background: transparent;
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 600px;
    background: radial-gradient(ellipse at center,
            rgba(99, 102, 241, 0.15) 0%,
            rgba(139, 92, 246, 0.08) 30%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-section .section-title {
    color: white;
    position: relative;
    z-index: 1;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.cta-section .hero-cta {
    position: relative;
    z-index: 1;
}

/* Unified Background Pattern */
body {
    background: #000000;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
        margin-top: 30px;
    }

    .trust-stars {
        font-size: 16px;
    }

    .logo-slider-section {
        bottom: 40px;
    }

    .logo-track {
        gap: 40px;
    }

    .logo-item img {
        height: 32px;
    }

    .section {
        padding: 60px 20px;
    }

    /* Event Phases Mobile */
    .event-phases-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .phases-visual {
        position: relative;
        top: 0;
        order: -1;
    }

    .visual-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .phase-header {
        padding: 24px 0;
    }

    .phase-title {
        font-size: 13px;
    }

    .content-headline {
        font-size: 24px;
    }

    .content-description {
        font-size: 16px;
    }

    .pill {
        font-size: 13px;
        padding: 8px 16px;
    }

    .rays-effect {
        width: 300px;
        height: 150px;
    }

    /* Interactive Solutions Mobile */
    .interactive-solutions {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-visual {
        position: relative;
        top: 0;
        order: -1;
    }

    .solution-title {
        font-size: 16px;
    }

    .solution-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .solution-header {
        padding: 20px;
        gap: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .image-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .logo-slider-section {
        bottom: 30px;
    }

    .logo-slider::before,
    .logo-slider::after {
        width: 80px;
    }

    .hero-video-overlay {
        background: linear-gradient(180deg,
                rgba(10, 10, 10, 0.5) 0%,
                rgba(10, 10, 10, 0.8) 40%,
                rgba(16, 21, 62, 0.9) 70%,
                rgba(99, 102, 241, 0.2) 100%);
    }

    .solution-item.active .solution-content {
        max-height: 400px;
    }

    .phase-item.active .phase-content {
        max-height: 900px;
    }

    .visual-wrapper {
        max-width: 100%;
    }

    .feature-pills {
        gap: 8px;
    }
}