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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #0a0f1e;
    color: #e2e8f0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== CSS VARIABLES ===== */
:root {
    --blue: #2563eb;
    --blue-hover: #1d4ed8;
    --blue-light: #3b82f6;
    --dark: #0a0f1e;
    --dark-card: #0f172a;
    --dark-surface: #111827;
    --dark-border: #1e293b;
    --gray-mid: #1e2d45;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

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

.section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1E2362;
    border: 1px solid rgba(30, 35, 98, 0.25);
    background: rgba(30, 35, 98, 0.06);
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
}

/* Chip llamativo cyan para secciones oscuras */
.section-label-bright {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #18223F;
    background: #00E7FF;
    display: inline-block;
    padding: 7px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0, 231, 255, 0.5), 0 0 0 4px rgba(0, 231, 255, 0.15);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00E7FF;
    color: #18223F;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #00c8e0;
    color: #18223F;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 231, 255, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: #00E7FF;
    color: #00E7FF;
    background: transparent;
    transform: translateY(-1px);
}

.btn-directory {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: #00E7FF;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s, transform 0.2s, border-color 0.2s;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(0, 231, 255, 0.3);
    padding-bottom: 6px;
    width: fit-content;
}

.btn-directory:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    transform: translateX(6px);
}

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


/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #05090f;
}

/* Two-column layout on desktop */
.hero-inner {
    display: grid;
    grid-template-columns: 55% 45%;
    width: 100%;
    min-height: 520px;
}

/* Left column: text content */
.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 48px 72px 60px;
    background: linear-gradient(to right, #05090f 70%, transparent 100%);
}

/* Right column: photo */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #05090f 0%, transparent 40%);
    z-index: 1;
}

/* Legacy bg divs (hidden) */
.hero-bg,
.hero-overlay,
.hero-grid-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: none;
}

.hero-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    max-width: 560px;
}

.hero-title .accent {
    color: #3b8cf8;
}

.hero-subtitle {
    font-size: 14px;
    color: #b0bec5;
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Inline tags separated by bullets */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.hero-tag {
    display: inline;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    letter-spacing: 0;
    text-transform: none;
}

.hero-tag::before {
    display: none;
}

.hero-tag-sep {
    margin: 0 8px;
    color: #3b8cf8;
    font-weight: 700;
}

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

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-right {
        height: 220px;
    }

    .hero-left {
        padding: 48px 24px;
        background: #05090f;
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #00E7FF;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== VALUE PROPS (3 COLUMNS) ===== */
.value-props {
    padding: 80px 12px;
    background: #0a0f1e;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 18px;
    overflow: visible;
    position: relative;
    /* Contenedor interior limpio */
    background: transparent;
}

/* Wrapper premium con borde animado tipo holograma */
.vp-grid-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg,
            rgba(0, 231, 255, 0.9) 0%,
            rgba(30, 35, 98, 0.6) 25%,
            rgba(0, 231, 255, 0.15) 50%,
            rgba(74, 121, 146, 0.8) 75%,
            rgba(0, 231, 255, 0.9) 100%);
    box-shadow:
        0 0 0 1px rgba(0, 231, 255, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 231, 255, 0.06),
        inset 0 1px 0 rgba(0, 231, 255, 0.3);
}

.vp-grid-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg,
            rgba(0, 231, 255, 0.4) 0%,
            transparent 40%,
            rgba(0, 231, 255, 0.2) 70%,
            transparent 100%);
    filter: blur(6px);
    z-index: -1;
}

.vp-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
}

.vp-col {
    padding: 56px 40px;
    border-right: 1px solid rgba(0, 231, 255, 0.12);
    position: relative;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    background: #0f1a35;
}

.vp-col:hover {
    background: #152045 !important;
    box-shadow: inset 0 0 40px rgba(0, 231, 255, 0.04);
}

.vp-col:last-child {
    border-right: none;
}

/* Botón SOLICITAR PROPUESTA nav — cyan llamativo */


.vp-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.vp-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 231, 255, 0.15);
    border: 1px solid rgba(0, 231, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E7FF;
    font-size: 20px;
    flex-shrink: 0;
}

.vp-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00E7FF;
}

.vp-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
}

.vp-body strong {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.vp-body p+p {
    margin-top: 20px;
}

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

.vp-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.65;
    font-weight: 500;
}

.vp-bullet-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: #00E7FF;
}

/* ===== SOLUTIONS ===== */
.solutions {
    padding: 88px 0;
    background: #080e1d;
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 231, 255, 0.5), transparent);
}

.solutions .section-title {
    color: #FFFFFF;
}

.solutions .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 12px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #475569;
    max-width: 580px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    padding: 12px;
}

.solution-card {
    background: #18223F;
    border: 1px solid rgba(0, 231, 255, 0.15);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    border-color: rgba(0, 231, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 231, 255, 0.12);
}

.solution-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.solution-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(0, 231, 255, 0.12);
    border: 1px solid rgba(0, 231, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #00E7FF;
    flex-shrink: 0;
}

.solution-title {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.solution-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.solution-link {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #00E7FF;
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 231, 255, 0.15);
    width: 100%;
    display: block;
    transition: gap 0.15s;
}

.solution-link:hover {
    gap: 8px;
}

.solutions-cta {
    margin: 12px;
    text-align: center;
}

/* Estenedor del botón */
.custom-cta-button {
    display: flex;
    /* Necesario para que funcione flex-direction */
    flex-direction: column;
    gap: 2px;
    padding: 16px 48px;
    box-shadow: 0 8px 36px rgba(0, 231, 251, 0.4);
    line-height: 1.3;
    text-decoration: none;
    /* Opcional, para quitar el subrayado del link */
    align-items: center;
    /* Opcional, para centrar el texto si el botón es ancho */
}

/* Estilo para el texto superior (pequeño) */
.cta-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.75;
}

/* Estilo para el texto principal (grande) */
.cta-title {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Media Query para teléfonos (pantallas de menos de 768px) */
@media (max-width: 768px) {

    .cta-subtitle {
        font-size: 9px;
        /* Reducimos ligeramente el subtítulo */
        letter-spacing: 0.15em;
    }

    .cta-title {
        font-size: 13px;
        /* Reducimos el texto principal */
        line-height: 1.2;
        text-align: center;
        /* Aseguramos que el texto esté centrado en pantallas pequeñas */
    }
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid #1E2362;
    color: #1E2362;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-dark:hover {
    background: #1E2362;
    color: #00E7FF;
}

/* ===== INDUSTRY FOCUS ===== */
.industry-section {
    padding: 100px 12px;
    background: #f8fafc;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}



.industry-left .section-label {
    margin-bottom: 20px;
    display: block;
}

.industry-left .section-title {
    text-align: left;
    margin-bottom: 32px;
    color: #0f172a;
}

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

.sector-card {
    background: #f0f4ff;
    border: 1px solid rgba(30, 35, 98, 0.12);
    border-radius: 10px;
    padding: 18px 10px;
    text-align: center;
    transition: all 0.2s;
}

.sector-card:hover {
    background: #1E2362;
    border-color: #1E2362;
}

.sector-card:hover .sector-name {
    color: #00E7FF;
}

.sector-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.sector-name {
    font-size: 10px;
    font-weight: 800;
    color: #1E2362;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.industry-right {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.industry-right-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://cdn.inspenet.com/hc-deal.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.industry-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.7) 60%, transparent 100%);
}

.industry-right-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    min-height: 400px;
}

.industry-right-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--blue-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}

.industry-right-title {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 28px;
}

.partner-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.partner-chip {
    background: rgba(0, 231, 255, 0.15);
    border: 1px solid #00E7FF;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===== TESTIMONIALS (video cards) ===== */
.testimonials {
    padding: 100px 12px;
    background: #f8fafc;
}

/* Grid único 3 cols → luego 2 en fila centrada */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.testimonial-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-row2 div {
    padding: 8px;
}

.grid-col-full {
    grid-column: 1 / -1 !important;
}

/* Card */
.testimonial-card {
    background: #ffffff;
    border: none;
    border-top: 2px solid #1E2362;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 24px rgba(30, 35, 98, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 35, 98, 0.14);
}

/* ── Video top half ── */
.testimonial-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    background: #0d1629;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Placeholder shown when no video URL set */
.testimonial-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0d1629 0%, #1E2362 100%);
}

.testimonial-video-placeholder svg {
    width: 52px;
    height: 52px;
    opacity: 0.6;
}

.testimonial-video-placeholder span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Play button overlay (shown on thumbnail) */
.tv-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 26, 53, 0.45);
    transition: background 0.2s;
}

.tv-play-overlay:hover {
    background: rgba(15, 26, 53, 0.25);
}

.tv-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #00E7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 231, 255, 0.4);
    transition: transform 0.2s;
}

.tv-play-overlay:hover .tv-play-btn {
    transform: scale(1.1);
}

.tv-play-btn svg {
    width: 20px;
    height: 20px;
    fill: #0f1a35;
    margin-left: 3px;
}

/* Thumbnail image */
.testimonial-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Text bottom half ── */
.testimonial-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
}

.testimonial-logo {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1E2362;
}

.testimonial-quote {
    font-size: 13.5px;
    color: #334155;
    font-style: italic;
    line-height: 1.75;
    flex: 1;
    position: relative;
    padding-top: 24px;
}

.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    top: -14px;
    left: -4px;
    font-size: 64px;
    font-style: normal;
    font-weight: 900;
    color: #00E7FF;
    opacity: 0.35;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(30, 35, 98, 0.15);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
}

.testimonial-role {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

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

    .testimonial-row2 {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
}

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

    .testimonial-row2 {
        grid-template-columns: 1fr;
    }
}

/* ===== EVENTS CAROUSEL (TV style) ===== */
.events-bar {
    padding: 72px 12px;
    background: #f3f4f6;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.events-bar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}


.events-bar-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #64748b;
}

.btn-custom-outline {
    border-color: #152ee9;
    color: #152ee9;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 2px solid;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
    white-space: nowrap;
}


/* Carousel wrapper */
.ev-carousel-outer {
    position: relative;
}

.ev-carousel-track-wrap {
    overflow: hidden;
}

.ev-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card shell — idéntico al WP */
.tv-event-card-shell {
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    list-style: none;
}

.tv-event-card-shell:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 35, 98, 0.18);
}

/* Cover image */
.tv-event-cover {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #0d1629;
}

.tv-event-cover img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tv-event-card-shell:hover .tv-event-cover img {
    transform: scale(1.04);
}

.tv-event-cover-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

/* Details panel */
.tv-event-card-panel {
    border: none;
}

.tv-event-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #1E2362;
    cursor: pointer;
    list-style: none;
    gap: 8px;
}

.tv-event-summary::-webkit-details-marker {
    display: none;
}

.tv-event-summary-copy {
    display: flex;
    flex-direction: column;
}

.tv-event-kicker {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tv-event-editions {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}

.tv-event-chevron {
    color: #00E7FF;
    display: flex;
    align-items: center;
    transition: transform 0.25s;
    flex-shrink: 0;
}

details[open] .tv-event-chevron {
    transform: rotate(180deg);
}

/* Year links */
.tv-event-years {
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.tv-event-year-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}

.tv-event-year-link:hover {
    background: #f0f9ff;
}

.tv-event-year-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 900;
    color: #1E2362;
    background: rgba(30, 35, 98, 0.08);
    border-radius: 4px;
    padding: 3px 7px;
    letter-spacing: 0.04em;
}

.tv-event-year-copy {
    display: flex;
    flex-direction: column;
}

.tv-event-year-name {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.tv-event-year-count {
    font-size: 11px;
    color: #64748b;
    margin-top: 1px;
}

/* Nav arrows */
.ev-arrow {
    position: absolute;
    top: 90px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1E2362;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}

.ev-arrow:hover {
    background: #00E7FF;
}

.ev-arrow:hover svg {
    stroke: #1E2362;
}

.ev-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ev-arrow-prev {
    left: -22px;
}

.ev-arrow-next {
    right: -22px;
}

@media (max-width: 900px) {
    .tv-event-card-shell {
        flex: 0 0 calc(50% - 10px);
    }

    .ev-arrow-prev {
        left: 4px;
    }

    .ev-arrow-next {
        right: 4px;
    }
}

@media (max-width: 560px) {
    .tv-event-card-shell {
        flex: 0 0 85%;
    }
}

/* ===== CTA + FORM ===== */
.cta-form {
    padding: 88px 12px;
    background: #f0f2f7;
}

.cta-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 0.6fr;
    gap: 48px;
    align-items: start;
}



.cta-left .section-title {
    text-align: left;
    font-size: clamp(24px, 3vw, 36px);
    margin-top: 12px;
    margin-bottom: 28px;
}

.cta-chips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.cta-chip-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 231, 255, 0.12);
    border: 1px solid rgba(0, 231, 255, 0.25) !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Form column */
.form-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
}

.form-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-border);
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    padding: 12px 14px;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.07);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 15px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
}

/* Bullets column */
.cta-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
    color: #1E2362;
}

.cta-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #1E2362;
    line-height: 1.6;
}

.cta-bullet-check {
    color: var(--blue-light);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== FOOTER (WP styles adapted, navy bg) ===== */





.textwidget p {
    margin: 0 0 6px;
    color: rgba(30, 35, 98, 0.7);
    font-size: 13px;
    line-height: 1.5;
}



/* Bottom bar */







@media (max-width: 900px) {}

@media (max-width: 560px) {}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {

    .cta-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-bullets {
        display: none;
    }
}

@media (max-width: 900px) {


    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-item:nth-child(3) {
        border-right: none;
    }

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

    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .vp-col {
        border-right: none;
        border-bottom: 1px solid rgba(0, 231, 255, 0.1);
    }

    .vp-col:last-child {
        border-bottom: none;
    }

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

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

    .testimonial-row2 {
        grid-template-columns: 1fr;
    }

    .cta-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

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

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid var(--dark-border);
    }

    .stat-item:nth-child(4) {
        border-right: none;
    }

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

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

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

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

    .events-logos {
        justify-content: center;
    }
}

/* ===== MOBILE MENU ===== */







/* ===== DIVIDER LINE ===== */
.section-divider {
    height: 1px;
    background: var(--dark-border);
    margin: 0;
}

/* Stars rating */
.stars {
    color: #1E2362;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Testimonials section title override */
.testimonials .section-title {
    color: #1E2362;
}



/* ════════════════════════════════════════
       FLOATING BUTTON
    ════════════════════════════════════════ */
.floating-contact-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #00E7FF;
    color: #18223F;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 231, 255, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s, box-shadow 0.2s;
    pointer-events: none;
    white-space: nowrap;
}

.floating-contact-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-contact-btn:hover {
    background: #00c8e0;
    box-shadow: 0 12px 40px rgba(0, 231, 255, 0.55), 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.floating-contact-btn svg {
    flex-shrink: 0;
}



/* ════════════════════════════════════════════════════════
       RESPONSIVE ELITE — todos los breakpoints
    ════════════════════════════════════════════════════════ */

/* ── 1440px+ Ultra wide ── */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }

    .container-wide {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 48px;
    }
}

/* ── 1280px Desktop estándar ── */
@media (max-width: 1280px) {
    .hero-left {
        padding: 60px 40px 60px 48px;
    }

    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── 1100px Laptop ── */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 58% 42%;
    }

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

    .testimonial-row2 {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* ── 1024px iPad Pro / Tablet grande ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 60% 40%;
    }

    .hero-title {
        font-size: clamp(24px, 3vw, 38px);
    }

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

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sector-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tv-event-card-shell {
        min-width: calc(50% - 10px);
    }

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

    .testimonial-row2 {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
}

/* ── 900px Tablet ── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 60px 32px;
        background: linear-gradient(to bottom, #05090f 80%, transparent 100%);
    }

    .hero-title {
        font-size: clamp(22px, 4.5vw, 36px);
        max-width: 100%;
    }

    .hero-ctas {
        flex-wrap: wrap;
        gap: 12px;
    }

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

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

    .testimonial-row2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

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

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

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

/* ── 768px iPad estándar ── */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(20px, 5vw, 32px);
    }

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

    .hero-tags {
        gap: 6px;
        font-size: 11px;
    }

    .btn-primary,
    .btn-outline {
        font-size: 12px;
        padding: 12px 20px;
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .solution-card {
        padding: 24px 20px;
    }

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

    .stat-value {
        font-size: clamp(28px, 5vw, 40px);
    }

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

    .testimonials {
        padding: 60px 12px;
    }

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

    .testimonial-row2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .tv-event-card-shell {
        min-width: calc(50% - 10px);
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }
}

/* ── 600px Mobile grande ── */
@media (max-width: 600px) {
    .hero {
        padding: 12px;
        min-height: auto;
    }

    .hero-left {
        padding: 48px 20px;
    }

    .hero-title {
        font-size: clamp(20px, 6vw, 28px);
        line-height: 1.2;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-tags {
        display: none;
    }

    .section-title {
        font-size: clamp(18px, 5vw, 24px);
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-value {
        font-size: 32px;
    }

    .sector-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .tv-event-card-shell {
        min-width: calc(100% - 0px);
    }

    .testimonial-card {
        border-radius: 12px;
    }

    .testimonial-quote {
        font-size: 13px;
    }

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

    .container,
    .container-wide {
        padding: 0 16px;
    }

    .floating-contact-btn {
        bottom: 16px;
        right: 12px;
        font-size: 11px;
        padding: 11px 14px;
        gap: 7px;
    }
}

/* ── 414px iPhone Plus / Android grande ── */
@media (max-width: 414px) {
    .hero-title {
        font-size: 20px;
    }

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

    .stat-value {
        font-size: 28px;
    }

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

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

/* ── 375px iPhone estándar ── */
@media (max-width: 375px) {
    .hero-left {
        padding: 40px 16px;
    }

    .hero-title {
        font-size: 19px;
    }

    .btn-primary,
    .btn-outline {
        font-size: 11px;
        padding: 11px 16px;
    }

    .container,
    .container-wide {
        padding: 0 14px;
    }
}

/* ── 320px iPhone SE / dispositivos pequeños ── */
@media (max-width: 320px) {
    .hero-title {
        font-size: 17px;
    }

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

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

    .container,
    .container-wide {
        padding: 0 12px;
    }
}