/* Fuente Waldenburg desde CDN */
@font-face {
    font-family: 'Waldenburg';
    src: url('./fonts/KMR-Waldenburg-Buch.831cafac9cdc8d0a.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Waldenburg';
    src: url('./fonts/KMR-Waldenburg-Normal.a6a971764942cc5d.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Waldenburg';
    src: url('./fonts/KMR-Waldenburg-Fett.5cf9bb4c8e2fe353.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Waldenburg';
    src: url('./fonts/KMR-Waldenburg-FettHalbschmal.76c570718e05a201.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Waldenburg', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #eee;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 24px;
    width: auto;
    filter: grayscale(100%);
}

.nav-center {
    display: flex;
    gap: 40px;
}

.nav-item {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: 450;
    padding: 20px 0;
}

.nav-item:hover {
    color: #000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 450;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #000;
}

.btn-nav {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: #222;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 24px;
}

.mobile-menu-section {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu-section:last-child {
    border-bottom: none;
}

.mobile-menu-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.mobile-menu-link {
    display: block;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.2s;
}

.mobile-menu-link:hover {
    color: #000;
}

.mobile-menu-actions {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-nav-mobile {
    display: block;
    text-align: center;
    padding: 14px 24px;
}

/* ==================== MEGA MENU ==================== */
.mega-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 40px;
    gap: 60px;
}

.mega-sidebar {
    min-width: 180px;
}

.mega-sidebar-title {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.mega-sidebar-item {
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.2s;
    font-weight: 450;
}

.mega-sidebar-item:hover {
    color: #000;
}

.mega-main {
    flex: 1;
}

.mega-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.mega-item:hover {
    background: #f5f5f5;
}

.mega-item-icon {
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-item-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #333;
    stroke-width: 1.5;
}

.mega-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
}

.mega-item-desc {
    font-size: 12px;
    color: #888;
}

.mega-divider {
    height: 1px;
    background: #eee;
    margin: 32px 0;
}

.mega-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    z-index: 999;
}

.mega-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

#wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 160px 24px 120px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    margin-bottom: 32px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(52px, 10vw, 88px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.95;
    margin-bottom: 28px;
    color: #000;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #222;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #000;
}

.btn-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ==================== LOGOS ==================== */
.logos-section {
    padding: 80px 24px;
    text-align: center;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.logos-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    font-weight: 500;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    opacity: 0.35;
}

.logo-item {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.02em;
}

/* ==================== FEATURES ==================== */
.features-section {
    padding: 140px 24px;
    background: #fff;
}

.features-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 80px;
}

.features-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    font-weight: 500;
}

.features-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    color: #000;
}

.features-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 48px 36px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ccc;
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #000;
    stroke-width: 1.5;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -0.02em;
}

.feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==================== STATS ==================== */
.stats-section {
    padding: 120px 24px;
    background: #000;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 140px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: clamp(64px, 12vw, 96px);
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #fff;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    font-weight: 400;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 160px 24px;
    text-align: center;
    background: #fff;
}

.cta-title {
    font-size: clamp(44px, 8vw, 64px);
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: #000;
}

.cta-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ==================== HOME PAGE STYLES ==================== */

/* Hero Section - Home */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    padding-top: 60px;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 1100px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    margin-bottom: 32px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #000;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-card:hover {
    border-color: #ccc;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-card-dark {
    background: #000;
    border-color: #000;
}

.hero-card-dark .hero-card-content h3,
.hero-card-dark .hero-card-content p,
.hero-card-dark .hero-card-link,
.hero-card-dark .stat-highlight,
.hero-card-dark .stat-desc {
    color: #fff;
}

.hero-card-dark .hero-card-content p {
    color: rgba(255,255,255,0.7);
}

.hero-card-dark .stat-desc {
    color: rgba(255,255,255,0.5);
}

.hero-card-dark .hero-card-icon {
    background: rgba(255,255,255,0.1);
}

.hero-card-dark .hero-card-icon svg {
    stroke: #fff;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #000;
    stroke-width: 1.5;
    fill: none;
}

.hero-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.hero-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.hero-card-link {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.hero-card-stat {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.hero-card-dark .hero-card-stat {
    border-top-color: rgba(255,255,255,0.1);
}

.stat-highlight {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 13px;
    color: #666;
}

/* Value Section */
.value-section {
    padding: 120px 24px;
    background: #fff;
}

.value-container {
    max-width: 1000px;
    margin: 0 auto;
}

.value-header {
    text-align: center;
    margin-bottom: 60px;
}

.value-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #000;
}

.value-subtitle {
    font-size: 18px;
    color: #666;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.value-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.value-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: #f5f5f5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    stroke: #000;
    stroke-width: 1.5;
    fill: none;
}

.value-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.value-quote {
    background: #fafafa;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.value-quote blockquote {
    font-size: 20px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-avatar {
    width: 48px;
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.quote-info {
    text-align: left;
}

.quote-info strong {
    display: block;
    font-size: 15px;
    color: #000;
}

.quote-info span {
    font-size: 13px;
    color: #666;
}

/* Proof Section */
.proof-section {
    padding: 120px 24px;
    background: #fafafa;
}

.proof-container {
    max-width: 1100px;
    margin: 0 auto;
}

.proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.proof-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #000;
}

.proof-subtitle {
    font-size: 18px;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.testimonial-stat {
    margin-bottom: 24px;
}

.big-stat {
    font-size: 64px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.testimonial-highlight {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 14px;
    color: #000;
}

.author-info span {
    font-size: 13px;
    color: #666;
}

.proof-logos {
    text-align: center;
}

.proof-logos-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.4;
}

.logo-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* Features Tabs Section */
.features-tabs-section {
    padding: 120px 24px;
    background: #fff;
}

.features-tabs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.features-tabs-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-label-tag {
    display: inline-block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 100px;
}

.features-tabs-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #000;
}

.features-tabs-subtitle {
    font-size: 18px;
    color: #666;
}

.features-tabs-wrapper {
    background: #fafafa;
    border-radius: 20px;
    padding: 8px;
    margin-bottom: 32px;
}

.features-tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn:hover {
    color: #000;
}

.tab-btn.active {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tab-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.tab-panel {
    display: none;
    background: #fff;
    border-radius: 16px;
    padding: 48px;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tab-panel-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.tab-panel-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tab-features-list {
    list-style: none;
}

.tab-features-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.tab-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.tab-panel-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-dashboard {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 120px;
}

.chart-bar {
    width: 40px;
    background: #ddd;
    border-radius: 6px 6px 0 0;
    transition: height 0.5s ease;
}

.chart-bar.highlight {
    background: #000;
}

.mock-stats {
    margin-left: 32px;
}

.mock-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #10b981;
}

.mock-stat-label {
    font-size: 13px;
    color: #666;
}

.attribution-flow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flow-node {
    padding: 12px 20px;
    background: #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.flow-node.highlight {
    background: #000;
    color: #fff;
}

.flow-arrow {
    color: #999;
    font-size: 18px;
}

.workflow-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.workflow-node {
    padding: 12px 24px;
    background: #e5e5e5;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.workflow-node.start {
    background: #10b981;
    color: #fff;
}

.workflow-node.end {
    background: #000;
    color: #fff;
}

.workflow-line {
    width: 2px;
    height: 20px;
    background: #ccc;
}

.prediction-chart {
    width: 100%;
    position: relative;
}

.line-chart {
    width: 100%;
    height: auto;
}

.prediction-label {
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.features-tabs-footer {
    text-align: center;
}

.features-stat-note {
    font-size: 13px;
    color: #999;
}

/* AI Section */
.ai-section {
    padding: 120px 24px;
    background: #000;
    color: #fff;
}

.ai-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ai-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-label-tag {
    display: inline-block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
}

.ai-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.ai-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.ai-feature {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.ai-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ai-feature-number {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    font-weight: 500;
}

.ai-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ai-feature p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.ai-stat-banner {
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.ai-stat-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

.ai-stat-text strong {
    color: #fff;
}

/* Final CTA Section */
.final-cta-section {
    padding: 160px 24px;
    background: #fafafa;
    text-align: center;
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(44px, 8vw, 72px);
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: #000;
}

.final-cta-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.cta-btn-primary {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-btn-primary:hover {
    background: #222;
}

.cta-btn-secondary {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-btn-secondary:hover {
    border-color: #000;
}

.final-cta-tagline p {
    font-size: 14px;
    color: #999;
}

/* ==================== HUBS PAGE STYLES ==================== */

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* Hubs Overview */
.hubs-overview {
    padding: 120px 24px;
    background: #fafafa;
}

.hubs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hubs-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
}

.section-tag-light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

.hubs-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #000;
}

.hubs-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hub-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hub-card:hover {
    border-color: #ccc;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hub-card-featured {
    background: #000;
    border-color: #000;
}

.hub-card-featured h3,
.hub-card-featured p,
.hub-card-featured .hub-card-link {
    color: #fff;
}

.hub-card-featured p {
    color: rgba(255,255,255,0.7);
}

.hub-card-featured .hub-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.hub-card-featured .hub-card-features span {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.hub-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.hub-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    fill: none;
}

.hub-icon-ventas {
    background: #fef3c7;
}
.hub-icon-ventas svg { stroke: #d97706; }

.hub-icon-telecom {
    background: #dbeafe;
}
.hub-icon-telecom svg { stroke: #2563eb; }
.hub-card-featured .hub-icon-telecom {
    background: rgba(255,255,255,0.1);
}
.hub-card-featured .hub-icon-telecom svg { stroke: #fff; }

.hub-icon-rrhh {
    background: #dcfce7;
}
.hub-icon-rrhh svg { stroke: #16a34a; }

.hub-icon-brokers {
    background: #fce7f3;
}
.hub-icon-brokers svg { stroke: #db2777; }

.hub-tag {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 100px;
}

.hub-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.hub-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.hub-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.hub-card-features span {
    font-size: 12px;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 100px;
    color: #666;
}

.hub-card-link {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* Hub Detail Sections */
.hub-detail {
    padding: 120px 24px;
    background: #fff;
}

.hub-detail-dark {
    background: #000;
    color: #fff;
}

.hub-detail-gradient {
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.hub-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hub-detail-dark .hub-detail-container {
    grid-template-columns: 1fr 1fr;
}

.hub-detail-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hub-detail-desc {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #666;
}

.hub-detail-dark .hub-detail-desc {
    color: rgba(255,255,255,0.7);
}

.hub-features-list {
    margin-bottom: 32px;
}

.hub-feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
}

.hub-feature-item strong {
    display: block;
    font-size: 15px;
    color: #000;
    margin-bottom: 4px;
}

.hub-detail-dark .hub-feature-item strong {
    color: #fff;
}

.hub-feature-item span {
    font-size: 14px;
    color: #666;
}

.hub-detail-dark .hub-feature-item span {
    color: rgba(255,255,255,0.6);
}

.hub-features-list-light .feature-check {
    background: #fff;
}

.hub-features-list-light .feature-check svg {
    stroke: #10b981;
}

.btn-primary-light {
    background: #fff;
    color: #000;
}

.btn-primary-light:hover {
    background: #f5f5f5;
}

/* Telecom Stats */
.telecom-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.telecom-stat {
    text-align: left;
}

.telecom-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.telecom-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Telecom Stats Light */
.telecom-stats-light {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.telecom-stat-light {
    text-align: left;
}

.telecom-stat-value-light {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

.telecom-stat-label-light {
    font-size: 13px;
    color: #666;
}

/* Hub Detail Reverse (visual on left) */
.hub-detail-reverse {
    direction: rtl;
}

.hub-detail-reverse > * {
    direction: ltr;
}

/* Mockups */
.hub-detail-visual {
    display: flex;
    justify-content: center;
}

.crm-mockup,
.rrhh-mockup {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28ca42; }

.mockup-title {
    font-size: 13px;
    color: #666;
    margin-left: auto;
}

/* Pipeline Mockup */
.pipeline-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px;
    min-height: 200px;
}

.pipeline-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.col-header {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
    white-space: nowrap;
}

.pipeline-card {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    transition: all 0.2s;
}

.pipeline-card:hover {
    background: #eee;
    transform: translateY(-2px);
}

.pipeline-card.highlight {
    background: #dbeafe;
    color: #1e40af;
}

.pipeline-card.success {
    background: #dcfce7;
    color: #166534;
    font-weight: 600;
}

/* Pipeline Card Details */
.pipeline-card .card-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.pipeline-card .card-company {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
}

.pipeline-card .card-value {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
}

.pipeline-card.highlight .card-value {
    color: #1e40af;
}

.pipeline-card.success .card-name,
.pipeline-card.success .card-company {
    color: #166534;
}

.pipeline-card.success .card-value {
    color: #166534;
}

/* Mockup Footer */
.mockup-footer {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.mockup-stat {
    text-align: center;
}

.mockup-stat .stat-label {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.mockup-stat .stat-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* Hub CTA Buttons */
.hub-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* RRHH Mockup */
.fichajes-grid {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fichaje-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border-radius: 10px;
}

.fichaje-avatar {
    width: 36px;
    height: 36px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.fichaje-info {
    flex: 1;
}

.fichaje-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.fichaje-time {
    font-size: 12px;
    color: #666;
}

.fichaje-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.fichaje-status.online { background: #10b981; }
.fichaje-status.away { background: #f59e0b; }
.fichaje-status.offline { background: #ef4444; }

.fichaje-summary {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.summary-item {
    text-align: center;
}

.summary-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.summary-label {
    font-size: 12px;
    color: #666;
}

/* Telecom Mockup */
.telecom-mockup {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 350px;
}

.phone-display {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
}

.call-incoming {
    margin-bottom: 32px;
}

.caller-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 16px;
}

.caller-name {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.caller-number {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.call-status {
    display: block;
    font-size: 14px;
    color: #10b981;
    animation: pulse 2s infinite;
}

.call-actions {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.call-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.call-btn:hover {
    transform: scale(1.1);
}

.call-btn.decline {
    background: #ef4444;
    color: #fff;
}

.call-btn.accept {
    background: #10b981;
    color: #fff;
}

.channels-preview {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.channel-icon {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    transition: all 0.2s;
}

.channel-icon.active {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.channel-icon svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255,255,255,0.7);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 8px;
}

.channel-icon span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

/* Telecom Mockup Light Version */
.telecom-mockup-light {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 350px;
}

.phone-display-light {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.call-incoming-light {
    margin-bottom: 32px;
}

.caller-avatar-light {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 16px;
    animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
}

.caller-name-light {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.caller-number-light {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.call-status-light {
    display: block;
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}

.call-actions-light {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.channels-preview-light {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.channel-icon-light {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    transition: all 0.2s;
}

.channel-icon-light:hover {
    border-color: #000;
}

.channel-icon-light.active {
    background: #f5f5f5;
    border-color: #000;
}

.channel-icon-light svg {
    width: 24px;
    height: 24px;
    stroke: #000;
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 8px;
}

.channel-icon-light span {
    display: block;
    font-size: 11px;
    color: #666;
}

/* Broker Mockup */
.broker-mockup {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.trading-chart {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pair {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.price {
    font-size: 24px;
    font-weight: 600;
}

.price.up { color: #10b981; }
.price.down { color: #ef4444; }

.price-chart {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.chart-stats {
    display: flex;
    gap: 24px;
}

.chart-stat .label {
    font-size: 12px;
    color: #999;
    margin-right: 8px;
}

.chart-stat .value {
    font-size: 14px;
    font-weight: 500;
}

.chart-stat .value.up { color: #10b981; }

.cabinet-preview {
    background: #000;
    border-radius: 16px;
    padding: 24px;
}

.cabinet-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.cabinet-balance {
    margin-bottom: 20px;
}

.balance-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.balance-value {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.cabinet-actions {
    display: flex;
    gap: 12px;
}

.cabinet-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cabinet-btn.deposit {
    background: #10b981;
    color: #fff;
}

.cabinet-btn.withdraw {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

/* AI Capabilities */
.ai-capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ai-capability {
    text-align: center;
}

.ai-capability-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ai-capability-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
}

.ai-capability h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-capability p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Integration Section */
.integration-section {
    padding: 120px 24px;
    background: #fafafa;
}

.integration-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.integration-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.integration-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.integration-visual {
    display: flex;
    justify-content: center;
}

.integration-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.integration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.integration-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.integration-node:hover {
    border-color: #000;
    transform: scale(1.1);
}

.integration-node .node-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-node svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    stroke-width: 1.5;
    fill: none;
}

.integration-node span {
    font-size: 10px;
    color: #666;
    margin-top: 4px;
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: 0; transform: translateY(-50%); }
.node-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: 0; transform: translateY(-50%); }

.integration-diagram::before,
.integration-diagram::after {
    content: '';
    position: absolute;
    background: #e5e5e5;
}

.integration-diagram::before {
    top: 50%;
    left: 35px;
    right: 35px;
    height: 2px;
    transform: translateY(-50%);
}

.integration-diagram::after {
    left: 50%;
    top: 35px;
    bottom: 35px;
    width: 2px;
    transform: translateX(-50%);
}

/* Final CTA Trust */
.final-cta-trust {
    margin-top: 32px;
}

.final-cta-trust span {
    font-size: 14px;
    color: #999;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 80px 40px 40px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand {
    max-width: 220px;
}

.footer-logo {
    height: 22px;
    margin-bottom: 20px;
    filter: grayscale(100%);
}

.footer-tagline {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.footer-copy {
    font-size: 13px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    color: #000;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .stats-grid {
        gap: 80px;
    }
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-cards {
        grid-template-columns: 1fr;
    }
    .value-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-featured {
        grid-row: auto;
    }
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tab-panel.active {
        grid-template-columns: 1fr;
    }
    .features-tabs-nav {
        flex-wrap: wrap;
    }
    .tab-btn {
        flex: 1 1 45%;
    }
    .hubs-grid {
        grid-template-columns: 1fr;
    }
    .hub-detail-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hub-detail-reverse {
        direction: ltr;
    }
    .hub-detail-visual {
        order: -1;
    }
    .telecom-stats,
    .telecom-stats-light {
        flex-wrap: wrap;
        gap: 24px;
    }
    .ai-capabilities {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .integration-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }
    .crm-mockup,
    .rrhh-mockup,
    .telecom-mockup-light,
    .broker-mockup {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    .nav-link {
        display: none;
    }
    .nav-actions {
        display: none;
    }
    .navbar-inner {
        padding: 0 24px;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    .value-title,
    .proof-title,
    .features-tabs-title,
    .ai-title,
    .hubs-title,
    .hub-detail-title,
    .integration-title {
        font-size: clamp(28px, 6vw, 40px);
    }
    .ai-features-grid,
    .ai-capabilities {
        grid-template-columns: 1fr;
    }
    .tab-btn {
        flex: 1 1 100%;
        padding: 12px 16px;
    }
    .tab-panel {
        padding: 24px;
    }
    .value-quote {
        padding: 32px 24px;
    }
    .value-quote blockquote {
        font-size: 17px;
    }
    .final-cta-buttons {
        flex-direction: column;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .logos-row {
        gap: 40px;
    }
    .pipeline-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .mockup-footer {
        flex-wrap: wrap;
        gap: 16px;
    }
    .mockup-stat {
        flex: 1 1 30%;
    }
    .channels-preview,
    .channels-preview-light {
        flex-wrap: wrap;
    }
    .channel-icon,
    .channel-icon-light {
        flex: 1 1 45%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .telecom-stats,
    .telecom-stats-light {
        flex-direction: column;
    }
    .integration-diagram {
        width: 250px;
        height: 250px;
    }
    .integration-center {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }
    .integration-node {
        width: 56px;
        height: 56px;
    }
    .integration-node svg {
        width: 16px;
        height: 16px;
    }
    .integration-node span {
        font-size: 9px;
    }
    .hero {
        padding: 120px 20px 80px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .hub-card {
        padding: 24px;
    }
    .hub-detail {
        padding: 80px 20px;
    }
    .hub-cta-buttons {
        flex-direction: column;
    }
    .hub-cta-buttons .btn-primary,
    .hub-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hub-features-list {
        margin-bottom: 24px;
    }
    .hub-feature-item {
        margin-bottom: 16px;
    }
    .ai-section {
        padding: 80px 20px;
    }
    .final-cta-section {
        padding: 80px 20px;
    }
    .final-cta-title {
        font-size: clamp(28px, 7vw, 40px);
    }
    .hubs-overview {
        padding: 80px 20px;
    }
    .integration-section {
        padding: 80px 20px;
    }
}