/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #03b0c3; /* Azul eléctrico - no cambiar en dark */
    --color-primary-dark: #0284c7;
    --color-white: #FFFFFF;
    --color-dark: #0f172a;
    --color-gray: #6b7280;
    --color-gray-light: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-alt: #f1f5f9;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
    --electric-blue: #0066ff;
}

/* Modo oscuro: invertir fondos y textos, mantener azules eléctricos */
html[data-theme="dark"] {
    --color-white: #1e293b;
    --color-dark: #f1f5f9;
    --color-gray: #94a3b8;
    --color-gray-light: #cbd5e1;
    --color-bg: #0f172a;
    --color-bg-alt: #1e293b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.45);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden;
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================================================================================= */
/* =====================================================NAVBAR======================================================*/
/* ================================================================================================================*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--color-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0 0.2rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: none;
    overflow: hidden;
}

.navbar-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

html[data-theme="dark"] .navbar {
    background: var(--color-bg);
}

html[data-theme="dark"] .navbar-network {
    opacity: 1;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.logo {
    cursor: pointer;
}

.logo img {
    height: 72px;
    margin: 0; /* elimina margen extra */
    padding: 0; /* elimina padding extra */
    opacity: 0.85;
    transition: var(--transition);
    display: block;
}

.logo:hover img {
    transform: scale(1.08);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem; /* Espacio entre los links, ajusta si quieres más o menos */
    align-items: left;
    margin: 0; /* Elimina márgenes que puedan empujar los links */
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: rgba(0, 0, 0, 0.85);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 10px;
    background: transparent;
    color: var(--color-dark);
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.theme-toggle .theme-icon {
    position: absolute;
    width: 20px;
    height: 20px;
}

.theme-toggle .theme-icon-sun {
    display: block;
}

.theme-toggle .theme-icon-moon {
    display: none;
}

html[data-theme="dark"] .theme-toggle .theme-icon-sun {
    display: none;
}

html[data-theme="dark"] .theme-toggle .theme-icon-moon {
    display: block;
}

html[data-theme="dark"] .theme-toggle {
    border-color: rgba(241, 245, 249, 0.2);
    color: var(--color-dark);
}

html[data-theme="dark"] .theme-toggle:hover {
    background: rgba(3, 176, 195, 0.15);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

html[data-theme="dark"] .nav-link:hover {
    color: var(--color-gray-light);
}


.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 10px;
    background: transparent;
    color: var(--color-dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

html[data-theme="dark"] .hamburger {
    border-color: rgba(241, 245, 249, 0.25);
}

.hamburger:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.hamburger-icon {
    position: absolute;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hamburger-icon.icon-open {
    opacity: 1;
    transform: scale(1);
}

.hamburger.active .icon-open {
    opacity: 0;
    transform: scale(0.85);
}

.hamburger.active .icon-close {
    opacity: 1;
    transform: scale(1);
}

.navbar.scrolled {
    background: var(--color-white);
    box-shadow: none;
    padding: 1rem 0 0.2rem 0;
}

html[data-theme="dark"] .navbar.scrolled {
    background: var(--color-bg);
}

/* ================================================================================================================= */
/* =====================================================HERO======================================================*/
/* ================================================================================================================*/

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    background: var(--color-bg);
    overflow: hidden;
}

/* Canvas fondo nodos */
#network-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Asegura que el contenido quede arriba */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero button {
    margin-top: 2rem;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #03b0c3;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .hero button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 102, 255, 0.35);
  }

.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.hero-copy {
    max-width: 880px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(3, 176, 195, 0.2);
    border: 1px solid var(--color-primary);
    margin-bottom: 1.25rem;
}

.hero-pill span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: hero-title-in 0.9s cubic-bezier(0.25, 0.9, 0.35, 1.01) both;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 1.75rem;
    text-align: center;
}

/* Lista de beneficios del producto */
.hero-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.75rem;
}

.hero-features li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-gray);
}

.hero-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Mini estadísticas: mismo estilo que .hero-pill (cada una es una pill) */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1.75rem;
}

.hero-stat {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(3, 176, 195, 0.2);
    border: 1px solid var(--color-primary);
}

.hero-stat-value {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary-dark);
    font-weight: 700;
    display: block;
}

.hero-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary-dark);
    opacity: 0.95;
    margin-top: 0.1rem;
}

.hero-stat-divider {
    display: none;
}

html[data-theme="dark"] .hero-title {
    color: var(--color-dark);
}

html[data-theme="dark"] .hero-pill,
html[data-theme="dark"] .hero-stat {
    background: rgba(3, 176, 195, 0.25);
    border-color: var(--color-primary);
}

 .hero-visual {
    position: relative;
    min-height: 260px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 32px;
    animation: hero-float 5s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15);
    transition: transform 0.7s ease-out;
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}



@keyframes hero-title-in {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float-node {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate3d(6px, -10px, 0) scale(1.08);
        opacity: 1;
    }
    100% {
        transform: translate3d(-4px, 8px, 0) scale(0.96);
        opacity: 0.8;
    }
}

@keyframes link-pulse {
    0%, 100% {
        opacity: 0.15;
        transform: scaleX(0.2);
    }
    40% {
        opacity: 0.85;
        transform: scaleX(1);
    }
    70% {
        opacity: 0.4;
        transform: scaleX(0.6);
    }
}

.btn {
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0, 229, 255, 0.35);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.hero-dashboard {
    width: 100%;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-dashboard .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.dashboard-image {
    width: clamp(260px, 70vw, 860px);
    height: auto;
    display: block;
}

/* Estilos hero buttons se definen en .hero-buttons .btn-trial / .btn-services (sin sombras) */

@media (min-width: 969px) {
    .nav-content {
        position: relative;
    }

    /* Logo a la izquierda; links + botón modo oscuro agrupados a la derecha */
    .nav-menu {
        margin-left: auto;
        margin-right: 0;
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-top: 0.5rem;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--color-bg);
    padding: 6rem 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro strong {
    color: var(--color-primary);
    font-weight: 600;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Ocultar temporalmente tarjetas de valores en "Quiénes Somos" */


.value-card {
    background: var(--color-white);
    padding: 1.9rem 1.7rem;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.value-card > * {
    position: relative;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.11) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.4s ease;
    transform: translate3d(-30px, -30px, 0);
    pointer-events: none;
    z-index: 0;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 229, 255, 0.35);
}

.value-card:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, rgba(0, 229, 255, 0.16) 0%, rgba(0, 229, 255, 0.02) 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--color-primary-dark);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    transform: scale(1.1);
}

/* --- Hero buttons: diseño moderno, sin sombras --- */
.hero-buttons {
    margin-top: 1.5rem;
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
}

.hero-buttons .btn * {
    cursor: pointer;
}

/* Principal: Solicitar Prueba — hover fuerte */
.hero-buttons .btn-trial {
    background: var(--color-primary);
    color: var(--color-white);
}

.hero-buttons .btn-trial:hover {
    background: var(--color-primary-dark);
    transform: scale(1.08) translateY(-4px);
    box-shadow: none;
}

/* Secundario: Ver Servicios — outline, hover suave */
.hero-buttons .btn-services {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.hero-buttons .btn-services:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--color-primary-dark);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: none;
}

.hero-buttons .btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.stats {
    background: var(--color-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: transparent;
    transition: var(--transition);
    border: none;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Clients Carousel */
.clients {
    background: var(--color-bg-alt);
    padding: 5rem 0;
    overflow: hidden;
}

.clients-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.clients-carousel {
    display: flex;
    gap: 3rem;
    animation: scroll 105s linear infinite;
    will-change: transform;
    width: max-content;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

.client-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 2.25rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 180px;
    min-height: 110px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-placeholder {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray);
    text-align: center;
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo img {
    max-width: 140px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

html[data-theme="dark"] .client-logo {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Services Section */
.services {
    background: var(--color-bg);
    padding: 6rem 0;
}

.services-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 229, 255, 0.18);
}

.services-info p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
}

.service-checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.12);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.services-note {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    color: var(--color-gray);
    background: rgba(0, 229, 255, 0.04);
    border-left: 4px solid var(--color-primary);
    padding: 1rem 1.25rem;
    border-radius: 12px;
}

.services-media {
    display: flex;
    justify-content: center;
}

.services-media img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
}

.services-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.9rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 1.9rem 1.7rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.11) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.4s ease;
    transform: translate3d(-30px, -30px, 0);
    pointer-events: none;
    z-index: 0;
}
.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 229, 255, 0.35);
}

.service-card:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: radial-gradient(circle at 30% 20%, rgba(0, 229, 255, 0.16) 0%, rgba(0, 229, 255, 0.02) 100%);
    color: var(--color-primary-dark);
    box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.35), 0 8px 18px rgba(15, 23, 42, 0.18);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.94rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: var(--color-bg-alt);
    padding: 6rem 0;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--color-white);
    border: #04e6ff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0284c7;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--color-primary);
    width: 12px;
    height: 12px;
}

.testimonial-card {
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.9rem 1.7rem;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.4s ease;
    transform: translate3d(-30px, -30px, 0);
    pointer-events: none;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 229, 255, 0.25);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-name {
    display: block;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.author-role {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
}

/* Testimonial cards en modo oscuro: diseño oscuro y vistozo */
html[data-theme="dark"] .testimonial-card {
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.18);
}

html[data-theme="dark"] .testimonial-card::before {
    background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.18) 0%, transparent 50%);
}

html[data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 229, 255, 0.35), 0 0 30px rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.4);
}

html[data-theme="dark"] .testimonial-quote {
    opacity: 0.35;
}

html[data-theme="dark"] .testimonial-text {
    color: rgba(241, 245, 249, 0.9);
}

html[data-theme="dark"] .testimonial-author {
    border-top-color: rgba(0, 229, 255, 0.2);
}

html[data-theme="dark"] .author-avatar {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .author-name {
    color: #f1f5f9;
}

/* Trial Section */
.trial {
    background: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Canvas nodos en Trial */
#network-bg-trial {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Asegura contenido arriba */
.trial .container {
    position: relative;
    z-index: 1;
}

.trial-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    overflow: hidden;
}

.trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.trial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trial-badge {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.45rem 1.1rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.trial-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trial-content h2 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.trial-description {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trial-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trial-feature svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.trial-cta-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.trial-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, box-shadow 0.25s ease;
}

.trial-cta .trial-cta-whatsapp {
    flex-shrink: 0;
}

.trial-cta .trial-cta-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.trial-cta:hover {
    background: var(--color-primary-dark);
    transform: scale(1.04) translateY(-3px);
    box-shadow: 0 12px 28px rgba(3, 176, 195, 0.35);
}

.trial-cta:hover .trial-cta-arrow {
    transform: translateX(4px);
}

.trial-cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 0;
}

.trial-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.trial-trust-item {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-gray);
}

.trial-trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.6;
}

/* Trial en modo oscuro */
html[data-theme="dark"] .trial {
    background: var(--color-bg);
}

html[data-theme="dark"] .trial-background {
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.04) 0%, transparent 50%);
}

html[data-theme="dark"] .trial::before {
    opacity: 0.15;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-dark" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(241,245,249,0.06)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid-dark)"/></svg>');
}

html[data-theme="dark"] .trial-content h2 {
    color: var(--color-dark);
}

html[data-theme="dark"] .trial-description {
    color: var(--color-gray);
}

html[data-theme="dark"] .trial-feature {
    color: var(--color-gray);
}

html[data-theme="dark"] .trial-feature svg {
    color: var(--color-primary);
}

html[data-theme="dark"] .trial-badge {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.35);
}

html[data-theme="dark"] .trial-badge span {
    color: var(--color-dark);
}

html[data-theme="dark"] .trial-cta {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0, 229, 255, 0.25);
}

html[data-theme="dark"] .trial-cta:hover {
    box-shadow: 0 12px 28px rgba(0, 229, 255, 0.4);
}

html[data-theme="dark"] .trial-cta-note {
    color: var(--color-gray);
}

html[data-theme="dark"] .trial-trust-item {
    color: var(--color-gray-light);
}

/* Footer */
.footer {
    background: #f1f5f9;
    color: var(--color-dark);
    padding: 5rem 0 2rem;
    position: relative;
}

html[data-theme="dark"] .footer {
    background: var(--color-bg);
    color: var(--color-dark);
}

.footer-top {
    border-bottom: 1px solid rgb(0, 221, 255);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo img {
    height: 88px;
    margin: 0;
    opacity: 0.9;
    display: block;
    max-width: 100%;
    transition: opacity 0.2s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

html[data-theme="dark"] .footer-tagline {
    color: var(--color-gray-light);
}

.footer-section p {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

html[data-theme="dark"] .footer-section p {
    color: var(--color-gray-light);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links li a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-block;
}

html[data-theme="dark"] .footer-links li a {
    color: var(--color-gray-light);
}

html[data-theme="dark"] .footer-links li a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-links li a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.contact-link svg {
    flex-shrink: 0;
    color: rgba(0, 157, 255, 0.5);
}

.contact-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.contact-link:hover svg {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    color: rgba(0, 153, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--color-white);
    background: #0284c7;
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--color-gray);
    font-size: 0.875rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

html[data-theme="dark"] .footer-legal a {
    color: var(--color-gray-light);
}

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

.footer-legal span {
    color: var(--color-gray);
    opacity: 0.7;
}

html[data-theme="dark"] .footer-legal span {
    color: var(--color-gray-light);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    .nav-menu {
        position: fixed;
        left: 0;
        top: 72px;
        flex-direction: column;
        background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
        width: 100%;
        text-align: center;
        transition: transform 0.25s ease, opacity 0.25s ease;
        box-shadow: var(--shadow-lg);
        padding: 2.5rem 1.75rem 2rem;
        gap: 0.5rem;
        border-radius: 0 0 22px 22px;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -12px, 0);
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.08);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.25rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    html[data-theme="dark"] .nav-menu {
        background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    }

    .nav-link {
        padding: 0.85rem 1rem;
        display: block;
        width: 100%;
        color: var(--color-dark);
        font-weight: 600;
        border-radius: 12px;
        position: relative;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        background: rgba(3, 176, 195, 0.12);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .nav-link::after {
        background: var(--color-primary);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        opacity: 1;
    }

    .hamburger {
        display: flex;
        position: relative;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-stats {
        gap: 0.5rem 0.75rem;
    }

    .hero-stat {
        padding: 0.35rem 0.85rem;
    }

    .hero-stat-value {
        font-size: 0.75rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .clients-carousel {
        gap: 2rem;
    }

    .client-logo {
        min-width: 180px;
        padding: 1.5rem 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-slider-wrapper {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0 auto;
    }

    .testimonials-controls {
        margin-top: 2rem;
        padding: 0;
        width: 100%;
        justify-content: center;
    }

    .services-media {
        display: none;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-intro {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .stats {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .clients {
        padding: 4rem 0;
    }

    .client-logo {
        min-width: 160px;
        min-height: 100px;
        padding: 1.25rem 1.5rem;
    }

    .trial {
        padding: 4rem 0;
    }

    .trial-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .trial-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .trial-description {
        font-size: 1.125rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-dashboard {
        margin-top: 3rem;
    }

    .service-card,
    .testimonial-card,
    .value-card {
        padding: 1.75rem 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-quote {
        font-size: 2.5rem;
    }

    .testimonials-slider-wrapper {
        padding: 0;
    }

    .testimonials-controls {
        padding: 0;
        gap: 1rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .testimonials-slider-wrapper {
        padding: 0;
    }

    .client-logo {
        min-width: 140px;
        padding: 1rem 1.25rem;
    }

    .client-placeholder {
        font-size: 0.875rem;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-main {
        margin-bottom: 3rem;
    }

    .about-intro {
        font-size: 1rem;
    }
}
