/* ================================================
   LAIADESK AIRM - Estilos desde cero
   Basado en Genesy.ai + Colores LaiaDesk
   ================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* === VARIABLES === */
:root {
    /* Colores LaiaDesk - Nueva paleta */
    --primary-orange: #e9441b;
    --primary-orange-dark: #c73a17;
    --primary-orange-light: #ff5a33;
    --primary-green: #268207;
    --primary-green-dark: #1e6a06;
    --primary-green-light: #32a30a;

    /* Neutros */
    --dark: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --green: #268207;

    /* Degradados */
    --gradient-brand: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
    --gradient-text: linear-gradient(90deg, #e9441b 0%, #ff6b4a 25%, #a855f7 50%, #3b82f6 75%, #268207 100%);

    /* Espaciado */
    --section-padding: 100px 0;
    --container-max: 1200px;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
}

.nav-menu a:hover {
    color: var(--dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-dropdown-btn:hover {
    background: var(--white);
    border-color: var(--gray-300);
}

.language-dropdown-btn svg {
    transition: transform 0.2s ease;
}

.language-dropdown.open .language-dropdown-btn svg {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    overflow: hidden;
}

.language-dropdown.open .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--gray-600);
    transition: all 0.15s ease;
}

.language-dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--dark);
}

.language-dropdown-menu a.active {
    background: var(--gray-100);
    color: var(--dark);
    font-weight: 600;
}

.lang-flag {
    font-size: 16px;
}

.btn-nav-primary {
    background: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.btn-nav-primary:hover {
    background: var(--dark-secondary);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: 0.2s;
}

/* === HERO === */
.hero {
    padding: 140px 24px 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.hero-pretitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.hero-main-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-main-title .brand {
    color: var(--dark);
}

.hero-main-title .highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-content p strong {
    color: var(--primary-orange);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--dark);
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper,
.hero-video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.15);
    border: 1px solid var(--gray-200);
}

.hero-image-wrapper img,
.hero-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* === TRUST LOGOS === */
.trust-logos {
    padding: 60px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trust-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.logos-row img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logos-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* === SECTION STYLES === */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(233, 68, 27, 0.1) 0%, rgba(38, 130, 7, 0.1) 100%);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* === WHAT IS AIRM === */
.what-is-airm {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.airm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.airm-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.airm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--white);
}

.airm-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.airm-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-features li {
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 24px;
    position: relative;
}

.card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* === FEATURE SECTIONS === */
.feature-section {
    padding: var(--section-padding);
    background: var(--white);
}

.feature-section:nth-child(even) {
    background: var(--gray-50);
}

.feature-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-reverse .feature-container {
    direction: rtl;
}

.feature-reverse .feature-content,
.feature-reverse .feature-visual {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(233, 68, 27, 0.1) 0%, rgba(38, 130, 7, 0.1) 100%);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-content > p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-700);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.feature-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-list .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.12);
}

/* === INTEGRATIONS === */
.integrations-section {
    padding: var(--section-padding);
    background: var(--white);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.integration-item {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: var(--white);
    border-color: var(--gray-200);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}

.integration-item img {
    max-width: 48px;
    max-height: 48px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--dark);
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--dark);
}

.section-header-light h2 {
    color: var(--white);
}

.section-badge-light {
    background: rgba(233, 68, 27, 0.15);
    color: var(--primary-orange-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-secondary);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-metric {
    margin-bottom: 20px;
}

.metric-value {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.testimonial-quote {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: var(--white);
    font-size: 15px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-400);
}

/* === ROI SECTION === */
.roi-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.roi-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.roi-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid var(--gray-200);
    position: relative;
}

.roi-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.roi-competitor {
    opacity: 0.85;
}

.roi-laiadesk {
    border-color: var(--primary-orange);
    box-shadow: 0 12px 40px rgba(233, 68, 27, 0.15);
}

.recommended-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roi-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-600);
}

.roi-item.included {
    color: var(--gray-700);
}

.included-tag {
    color: var(--green);
    font-weight: 600;
}

.roi-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    font-weight: 600;
}

.total-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.total-value.highlight {
    color: var(--primary-orange);
}

.savings-badge {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 10px;
    text-align: center;
    color: var(--green);
    font-weight: 600;
    font-size: 15px;
}

.roi-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-400);
}

/* === SECURITY === */
.security-section {
    padding: var(--section-padding);
    background: var(--dark);
}

.security-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-content .section-badge-light {
    background: rgba(233, 68, 27, 0.2);
    color: var(--primary-orange-light);
    margin-bottom: 16px;
}

.security-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.security-intro {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.security-content > p {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.security-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.security-item strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 4px;
}

.security-item p {
    font-size: 13px;
    color: var(--gray-400);
    margin: 0;
}

.security-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* === FINAL CTA === */
.final-cta {
    padding: 120px 24px;
    background: var(--gray-100);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.final-cta > p,
.final-cta .cta-container > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.cta-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid var(--gray-200);
}

.offer-icon {
    font-size: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--white);
    padding: 18px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

.btn-cta-primary:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 18px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

.btn-cta-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    color: var(--gray-500);
}

/* === FOOTER === */
.footer {
    background: var(--gray-100);
    padding: 80px 24px 40px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 300px;
}

.footer-incibe-badge {
    margin-top: 20px;
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-incibe-badge:hover {
    opacity: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 15px;
    color: var(--gray-600);
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--gray-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-badges img {
    height: 40px;
    width: auto;
}

/* === PROBLEM SECTION === */
.problem-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FEF2F2 0%, var(--white) 100%);
}

.problem-section .section-header h2 {
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.problem-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 23px;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.4;
}

/* === AIRM SECTION === */
.airm-section {
    padding: var(--section-padding);
    background: var(--dark);
}

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

.airm-section .section-badge {
    background: rgba(233, 68, 27, 0.15);
    color: var(--primary-orange-light);
}

.airm-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.airm-definition {
    font-size: 20px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 48px;
}

.airm-definition strong {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.airm-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.airm-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.airm-feature .feature-icon {
    font-size: 24px;
}

/* === PLATFORM SECTION === */
.platform-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.platform-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--gray-700);
}

.platform-list .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.platform-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.12);
}

/* === AGENTS SECTION === */
.agents-section {
    padding: var(--section-padding);
    background: var(--white);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.agent-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(233, 68, 27, 0.12);
    border-color: var(--primary-orange);
}

.agent-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.agent-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--white);
}

.agent-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.agent-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agent-card li {
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
}

.agent-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

/* === MEMORY SECTION === */
.memory-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.memory-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.memory-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.12);
}

.memory-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
}

.memory-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.memory-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--gray-700);
}

.memory-list .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* === USE CASES SECTION === */
.usecases-section {
    padding: var(--section-padding);
    background: var(--white);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.usecase-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.usecase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}

.usecase-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.usecase-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.usecase-item p {
    font-size: 18px;
    color: var(--gray-500);
    margin: 0;
}

/* === SOCIAL PROOF SECTION === */
.social-proof-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.logos-enterprise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.logos-enterprise img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logos-enterprise img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.social-proof-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.social-proof-section .testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.social-proof-section .testimonial-quote {
    color: var(--gray-700);
    font-style: italic;
}

.social-proof-section .author-info strong {
    color: var(--dark);
}

.social-proof-section .author-info span {
    color: var(--gray-500);
}

.social-proof-section .author-avatar {
    background: var(--gradient-brand);
    color: var(--white);
}

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 1024px) {
    .platform-content,
    .memory-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .airm-features {
        flex-direction: column;
        gap: 20px;
    }
}

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

    .airm-section h2 {
        font-size: 28px;
    }

    .social-proof-section .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .logos-enterprise {
        gap: 24px;
    }

    .logos-enterprise img {
        height: 28px;
    }
}

/* === DUOTONE ICONS === */
.duo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.duo-icon svg {
    width: 1em;
    height: 1em;
}

.duo-icon-lg svg {
    width: 1.5em;
    height: 1.5em;
}

.duo-icon-xl svg {
    width: 2em;
    height: 2em;
}

/* Colores duotone */
.duo-icon .duo-primary {
    fill: var(--primary-orange);
}

.duo-icon .duo-secondary {
    fill: var(--primary-orange);
    opacity: 0.3;
}

/* Variante verde */
.duo-icon-green .duo-primary {
    fill: var(--primary-green);
}

.duo-icon-green .duo-secondary {
    fill: var(--primary-green);
    opacity: 0.3;
}

/* Variante oscura */
.duo-icon-dark .duo-primary {
    fill: var(--dark);
}

.duo-icon-dark .duo-secondary {
    fill: var(--dark);
    opacity: 0.3;
}

/* Variante blanca (para fondos oscuros) */
.duo-icon-white .duo-primary {
    fill: var(--white);
}

.duo-icon-white .duo-secondary {
    fill: var(--white);
    opacity: 0.3;
}

/* Variante roja para problemas */
.duo-icon-red .duo-primary {
    fill: #dc2626;
}

.duo-icon-red .duo-secondary {
    fill: #dc2626;
    opacity: 0.3;
}

/* Tamaño del icono en contexto */
.problem-icon .duo-icon svg {
    width: 28px;
    height: 28px;
}

.airm-feature .duo-icon svg {
    width: 28px;
    height: 28px;
}

.usecase-icon .duo-icon svg {
    width: 48px;
    height: 48px;
}

.security-icon .duo-icon svg {
    width: 32px;
    height: 32px;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-container,
    .feature-container,
    .security-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-reverse .feature-container {
        direction: ltr;
    }

    .hero-main-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Footer compacto en móvil */
    .footer {
        padding: 40px 16px 24px;
    }

    .footer-container {
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        font-size: 13px;
        max-width: 100%;
    }

    .footer-logo {
        height: 32px;
        margin: 0 auto 12px;
    }

    .footer-incibe-badge {
        height: 50px;
        margin: 12px auto 0;
        display: block;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 10px;
        letter-spacing: 0.03em;
    }

    .footer-column ul {
        gap: 6px;
    }

    .footer-column a {
        font-size: 12px;
    }

    .footer-bottom {
        padding-top: 16px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-pretitle {
        font-size: 16px;
    }

    .hero-main-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-header h2,
    .feature-content h2,
    .security-content h2 {
        font-size: 28px;
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .integration-item {
        padding: 16px;
    }

    .roi-comparison {
        flex-direction: column;
        align-items: center;
    }

    .roi-vs {
        transform: rotate(90deg);
    }

    .roi-card {
        max-width: 100%;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 28px;
    }

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

    .btn-cta-primary, .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .logos-row {
        gap: 24px;
    }

    .logos-row img {
        height: 28px;
    }
}

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

/* ================================================
   AI DEMOS SECTION - Videos de agentes con efecto hover
   ================================================ */

.ai-demos-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark) 0%, #0d0d0d 100%);
}

.ai-demos-section .section-header h2 {
    color: var(--white);
}

.demos-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid de 8 videos (4 columnas) */
.demos-grid-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Tarjeta de video individual */
.demo-video-card {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 1;

    /* Animación de entrada */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: videoCardFadeIn 0.8s ease-out forwards;

    /* Transición suave para hover */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border 0.6s ease,
                box-shadow 0.6s ease,
                background 0.6s ease;
}

/* Delays escalonados para animación de entrada */
.demo-video-card:nth-child(1) { animation-delay: 0.1s; }
.demo-video-card:nth-child(2) { animation-delay: 0.2s; }
.demo-video-card:nth-child(3) { animation-delay: 0.3s; }
.demo-video-card:nth-child(4) { animation-delay: 0.4s; }
.demo-video-card:nth-child(5) { animation-delay: 0.5s; }
.demo-video-card:nth-child(6) { animation-delay: 0.6s; }
.demo-video-card:nth-child(7) { animation-delay: 0.7s; }
.demo-video-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes videoCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Efecto hover - AGRANDA a 2x */
.demo-video-card:hover {
    transform: scale(2) !important;
    z-index: 1000 !important;
    border: 3px solid var(--primary-orange) !important;
    box-shadow:
        0 25px 50px rgba(233, 68, 27, 0.4),
        0 0 0 1px rgba(233, 68, 27, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(233, 68, 27, 0.05);
}

/* Contenedor del video */
.demo-video-container {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
}

.demo-video-card:hover .demo-video-container video {
    filter: brightness(1.3) saturate(1.2) contrast(1.1);
}

/* Etiqueta del video */
.demo-video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 12px 8px 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.demo-video-card:hover .demo-video-label {
    opacity: 0;
    transform: translateY(100%);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .demos-grid-videos {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 800px;
    }

    .demo-video-card {
        width: 170px;
        height: 170px;
    }

    .demo-video-card:hover {
        transform: scale(1.8) !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .demos-grid-videos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 400px;
    }

    .demo-video-card {
        width: 160px;
        height: 160px;
    }

    .demo-video-card:hover {
        transform: scale(1.6) !important;
    }

    .demo-video-label {
        font-size: 12px;
        padding: 10px 6px 6px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .demos-grid-videos {
        gap: 12px;
        max-width: 320px;
    }

    .demo-video-card {
        width: 140px;
        height: 140px;
    }

    .demo-video-card:hover {
        transform: scale(1.4) !important;
    }

    .demo-video-label {
        font-size: 11px;
        padding: 8px 4px 4px;
    }
}

/* ================================================
   INTEGRATIONS ORBITAL SECTION
   ================================================ */

.integrations-orbital-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    overflow: hidden;
}

.integrations-orbital-section .section-header {
    margin-bottom: 40px;
}

.integrations-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Orbital Container */
.orbital-container {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto;
    display: block;
}

/* Orbits */
.orbit {
    position: absolute;
    border: 1px solid rgba(233, 68, 27, 0.15);
    border-radius: 50%;
    animation: orbitRotate 60s linear infinite;
}

.orbit-1 {
    width: 220px;
    height: 220px;
    top: 240px;
    left: 240px;
    animation-duration: 35s;
    border-color: rgba(233, 68, 27, 0.2);
}

.orbit-2 {
    width: 380px;
    height: 380px;
    top: 160px;
    left: 160px;
    animation-duration: 50s;
    animation-direction: reverse;
    border-color: rgba(38, 130, 7, 0.15);
}

.orbit-3 {
    width: 520px;
    height: 520px;
    top: 90px;
    left: 90px;
    animation-duration: 65s;
    border-color: rgba(233, 68, 27, 0.12);
}

.orbit-4 {
    width: 640px;
    height: 640px;
    top: 30px;
    left: 30px;
    animation-duration: 80s;
    animation-direction: reverse;
    border-color: rgba(38, 130, 7, 0.1);
}

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

/* Integration Logos */
.integration-logo {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(16px);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: counterOrbitRotate 60s linear infinite reverse;
    padding: 12px;
}

.integration-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.integration-logo:hover {
    transform: scale(1.3) !important;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(233, 68, 27, 0.2);
    border-color: var(--primary-orange);
    z-index: 100;
}

.integration-logo:hover img {
    filter: brightness(1.1) saturate(1.2);
}

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

/* Position logos on orbits - Orbit 1 (4 logos) */
.orbit-1 .logo-1 { top: -35px; left: 75px; animation-duration: 35s; }
.orbit-1 .logo-2 { top: 75px; left: 185px; animation-duration: 35s; }
.orbit-1 .logo-3 { top: 185px; left: 75px; animation-duration: 35s; }
.orbit-1 .logo-4 { top: 75px; left: -35px; animation-duration: 35s; }

/* Position logos on orbits - Orbit 2 (8 logos) */
.orbit-2 .logo-5 { top: -35px; left: 155px; animation-duration: 50s; }
.orbit-2 .logo-6 { top: 40px; left: 310px; animation-duration: 50s; }
.orbit-2 .logo-7 { top: 155px; left: 360px; animation-duration: 50s; }
.orbit-2 .logo-8 { top: 290px; left: 310px; animation-duration: 50s; }
.orbit-2 .logo-9 { top: 360px; left: 155px; animation-duration: 50s; }
.orbit-2 .logo-10 { top: 290px; left: 10px; animation-duration: 50s; }
.orbit-2 .logo-11 { top: 155px; left: -35px; animation-duration: 50s; }
.orbit-2 .logo-12 { top: 40px; left: 10px; animation-duration: 50s; }

/* Position logos on orbits - Orbit 3 (6 logos) */
.orbit-3 .logo-13 { top: -35px; left: 225px; animation-duration: 65s; }
.orbit-3 .logo-14 { top: 80px; left: 450px; animation-duration: 65s; }
.orbit-3 .logo-15 { top: 225px; left: 500px; animation-duration: 65s; }
.orbit-3 .logo-16 { top: 400px; left: 450px; animation-duration: 65s; }
.orbit-3 .logo-17 { top: 500px; left: 225px; animation-duration: 65s; }
.orbit-3 .logo-18 { top: 400px; left: 15px; animation-duration: 65s; }

/* Position logos on orbits - Orbit 4 (2 logos) */
.orbit-4 .logo-19 { top: 60px; left: 60px; animation-duration: 80s; }
.orbit-4 .logo-20 { top: 285px; left: 580px; animation-duration: 80s; }

/* Central Core */
.central-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(233, 68, 27, 0.1),
        0 0 0 16px rgba(233, 68, 27, 0.05),
        0 10px 40px rgba(233, 68, 27, 0.3);
    animation: corePulse 3s ease-in-out infinite;
}

.central-core img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 0 8px rgba(233, 68, 27, 0.1),
            0 0 0 16px rgba(233, 68, 27, 0.05),
            0 10px 40px rgba(233, 68, 27, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow:
            0 0 0 12px rgba(233, 68, 27, 0.15),
            0 0 0 24px rgba(233, 68, 27, 0.08),
            0 15px 50px rgba(233, 68, 27, 0.4);
    }
}

/* Mobile Grid Layout for Integrations */
.mobile-integration-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.integration-logo-mobile {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.integration-logo-mobile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.integration-logo-mobile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(233, 68, 27, 0.15);
    border-color: var(--primary-orange);
}

/* Responsive for Orbital Section */
@media (max-width: 1024px) {
    .orbital-container {
        width: 560px;
        height: 560px;
    }

    .orbit-1 { width: 180px; height: 180px; top: 190px; left: 190px; }
    .orbit-2 { width: 300px; height: 300px; top: 130px; left: 130px; }
    .orbit-3 { width: 420px; height: 420px; top: 70px; left: 70px; }
    .orbit-4 { width: 520px; height: 520px; top: 20px; left: 20px; }

    .central-core {
        width: 90px;
        height: 90px;
    }

    .integration-logo {
        width: 55px;
        height: 55px;
        padding: 10px;
    }

    /* Recalculate positions for smaller container */
    .orbit-1 .logo-1 { top: -27px; left: 62px; }
    .orbit-1 .logo-2 { top: 62px; left: 152px; }
    .orbit-1 .logo-3 { top: 152px; left: 62px; }
    .orbit-1 .logo-4 { top: 62px; left: -27px; }

    .orbit-2 .logo-5 { top: -27px; left: 122px; }
    .orbit-2 .logo-6 { top: 30px; left: 245px; }
    .orbit-2 .logo-7 { top: 122px; left: 285px; }
    .orbit-2 .logo-8 { top: 230px; left: 245px; }
    .orbit-2 .logo-9 { top: 285px; left: 122px; }
    .orbit-2 .logo-10 { top: 230px; left: 5px; }
    .orbit-2 .logo-11 { top: 122px; left: -27px; }
    .orbit-2 .logo-12 { top: 30px; left: 5px; }

    .orbit-3 .logo-13 { top: -27px; left: 182px; }
    .orbit-3 .logo-14 { top: 65px; left: 360px; }
    .orbit-3 .logo-15 { top: 182px; left: 400px; }
    .orbit-3 .logo-16 { top: 320px; left: 360px; }
    .orbit-3 .logo-17 { top: 400px; left: 182px; }
    .orbit-3 .logo-18 { top: 320px; left: 10px; }

    .orbit-4 .logo-19 { top: 45px; left: 45px; }
    .orbit-4 .logo-20 { top: 230px; left: 460px; }
}

@media (max-width: 768px) {
    .orbital-container {
        display: none;
    }

    .mobile-integration-grid {
        display: grid;
    }

    .integrations-orbital-section {
        padding: 60px 24px;
    }

    .integrations-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mobile-integration-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .integration-logo-mobile {
        padding: 12px;
    }
}
