/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #4F46E5;
    --primary-purple: #7C3AED;
    --dark-bg: #0A0A0F;
    --darker-bg: #050508;
    --card-bg: #1A1A24;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B8;
    --border-color: #2A2A3A;
    --gradient-start: #4F46E5;
    --gradient-end: #7C3AED;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-context {
    margin-left: 1rem;
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Logo Image Styles */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: -10px 0;
    /* Compensate for larger logo while maintaining header height */
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Footer Logo Styles */
.footer-logo-img {
    height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-link.active,
.mega-menu-trigger.active {
    color: var(--text-primary);
    font-weight: 700;
}

/* Nav Menu (mobile) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: -5px 0;
    /* Fine-tune alignment with larger logo */
}

/* Language selector */
.lang-selector-wrapper {
    position: relative;
}

.lang-selector-wrapper.floating {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1002;
}

@media (max-width: 768px) {
    .lang-selector-wrapper.floating {
        top: 12px;
        right: 12px;
    }
}

.lang-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
}

.lang-selector-btn.active {
    background: rgba(255, 255, 255, 0.06);
}

.lang-dropdown-menu {
    position: absolute;
    right: 0;
    top: 44px;
    background: #1e1e29;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    display: none;
    min-width: 140px;
    z-index: 1001;
}

.lang-dropdown-menu.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    color: var(--text-primary);
    padding: 8px 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:visited {
    color: var(--text-secondary);
}

.nav-link.active {
    color: var(--text-primary);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 220px;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(79, 70, 229, 0.1);
    color: var(--text-primary);
}

.dropdown-item:visited {
    color: var(--text-secondary);
}

/* ===== MEGA MENU STYLES ===== */
.mega-menu-wrapper {
    position: relative;
}

.mega-menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    /* Add padding for better hover area */
}

.mega-menu-trigger:hover {
    color: var(--text-primary);
}

.mega-menu-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mega-menu-wrapper:hover .mega-menu-trigger i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 700px;
    /* Reduced from 850px */
    max-width: 85vw;
    /* Reduced from 90vw */
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    /* Reduced from 2rem */
    margin-top: 0.75rem;
    /* Reduced from 1rem */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    /* Reduced shadow */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    pointer-events: none;
    overflow: visible;
    /* allow side submenu to render fully */
}

.mega-menu-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Focus bridge to prevent mouse loss during navigation */
.mega-menu-wrapper::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    /* Bridge gap between trigger and menu */
    background: transparent;
    pointer-events: auto;
    /* Enable hover detection */
    z-index: 1000;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    /* Reduced from 1.5rem */
}

.mega-menu-item {
    position: relative;
}

.menu-card {
    display: block;
    padding: 1.25rem;
    /* Reduced from 1.5rem */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
}

.menu-card:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.menu-card-header h3 {
    font-size: 1rem;
    /* Reduced from 1.1rem */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.menu-card-header p {
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Voice Agents Submenu - Integrated Styles */
.voice-solutions-submenu {
    all: unset;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 4px;
    min-width: 200px;
    width: 200px;
    max-width: 200px;
    height: auto;
    max-height: none;
    min-height: auto;
    overflow: visible;
    overflow-y: visible;
    overflow-x: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    contain: none;
    will-change: auto;
}

/* Show submenu on hover */
.voice-agents-menu:hover .voice-solutions-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Ultra-compact submenu title */
.submenu-title {
    all: unset;
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #A0A0B8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 3px 0;
    padding: 6px 10px;
    text-align: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 3px;
    line-height: 1;
    white-space: nowrap;
}

/* Ultra-compact submenu cards */
.submenu-card {
    all: unset;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
    min-height: 48px;
    max-height: 48px;
    height: 48px;
    flex-shrink: 0;
    white-space: nowrap;
}

.submenu-card:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateX(2px);
}

/* Ultra-compact icons */
.submenu-icon {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 24px;
    height: 24px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 3px;
    flex-shrink: 0;
    line-height: 1;
}

/* Ultra-compact content */
.submenu-content {
    all: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
}

.submenu-content h5 {
    all: unset;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.submenu-content p {
    all: unset;
    display: block;
    font-size: 13px;
    color: #A0A0B8;
    margin: 0;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile responsive - ultra compact */
@media (max-width: 768px) {
    .voice-solutions-submenu {
        padding: 2px;
        gap: 1px;
        min-width: 180px;
        width: 180px;
        max-width: 180px;
        margin-left: 2px;
    }

    .submenu-card {
        padding: 6px 10px;
        gap: 6px;
        min-height: 40px;
        max-height: 40px;
        height: 40px;
    }

    .submenu-icon {
        font-size: 18px;
        width: 20px;
        height: 20px;
    }

    .submenu-content h5 {
        font-size: 14px;
    }

    .submenu-content p {
        font-size: 11px;
    }

    .submenu-title {
        font-size: 12px;
        margin: 0 0 3px 0;
        padding: 4px 8px;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .voice-solutions-submenu {
        padding: 1px;
        gap: 0;
        min-width: 160px;
        width: 160px;
        max-width: 160px;
        margin-left: 1px;
        border-radius: 4px;
    }

    .submenu-card {
        padding: 5px 8px;
        gap: 5px;
        min-height: 36px;
        max-height: 36px;
        height: 36px;
        border-radius: 2px;
    }

    .submenu-icon {
        font-size: 16px;
        width: 18px;
        height: 18px;
        border-radius: 2px;
    }

    .submenu-content h5 {
        font-size: 12px;
    }

    .submenu-content p {
        font-size: 10px;
    }

    .submenu-title {
        font-size: 10px;
        margin: 0 0 2px 0;
        padding: 3px 6px;
        border-radius: 2px;
    }
}

/* Language Selector for Mega Menu */
.mega-menu-lang-selector {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 1000;
}

.lang-selector-btn {
    all: unset;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.lang-selector-btn:hover {
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.4);
}

.lang-selector-btn .flag {
    font-size: 14px;
    line-height: 1;
}

.lang-selector-btn i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.lang-selector-btn.active i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: rgba(10, 10, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 4px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

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

.lang-dropdown-menu .lang-option {
    all: unset;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.lang-dropdown-menu .lang-option:hover {
    background: rgba(79, 70, 229, 0.1);
}

.lang-dropdown-menu .lang-option .flag {
    font-size: 14px;
    line-height: 1;
}

/* Responsive for language selector */
@media (max-width: 768px) {
    .mega-menu-lang-selector {
        top: 8px;
        right: 10px;
    }

    .lang-selector-btn {
        font-size: 12px;
        padding: 5px 8px;
    }

    .lang-dropdown-menu {
        min-width: 110px;
    }

    .lang-dropdown-menu .lang-option {
        font-size: 12px;
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .mega-menu-lang-selector {
        top: 6px;
        right: 8px;
    }

    .lang-selector-btn {
        font-size: 11px;
        padding: 4px 6px;
        gap: 4px;
    }

    .lang-dropdown-menu {
        min-width: 100px;
    }

    .lang-dropdown-menu .lang-option {
        font-size: 11px;
        padding: 5px 6px;
        gap: 6px;
    }
}

/* Force hide scrollbars on all browsers */
.voice-solutions-submenu::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.voice-solutions-submenu {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Ensure parent container doesn't constrain */
.voice-agents-menu {
    position: relative;
    overflow: visible;
}

.mega-menu-container {
    overflow: visible;
}

.mega-menu {
    overflow: visible;
}

/* Preserved Mega Menu Responsive Styles */
@media (max-width: 1200px) {
    .mega-menu {
        width: 650px;
    }
}

@media (max-width: 992px) {
    .mega-menu {
        width: 90vw;
    }

    .mega-menu-container {
        grid-template-columns: 1fr;
    }

    .voice-agents-menu {
        grid-column: span 1;
    }
}

/* Mobile Megamenu Fix - Show menu when active */
@media (max-width: 768px) {

    /* Display megamenu when active class is toggled by JavaScript - FLOATING VERSION */
    .mega-menu-wrapper.active .mega-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: rgba(10, 10, 15, 0.98) !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px;
        padding: 1rem;
        margin-top: 0.5rem !important;
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Floating overlay style for mobile mega menu */
    .mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        max-width: 100%;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Hidden by default */
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
        background: rgba(10, 10, 15, 0.98) !important;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px;
        padding: 1rem;
        margin-top: 0.5rem !important;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1000 !important;
    }

    /* Mega menu wrapper - provide positioning context */
    .mega-menu-wrapper {
        position: relative;
    }

    /* Ensure mega menu trigger is clickable on mobile */
    .mega-menu-trigger {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        width: 100%;
        justify-content: space-between;
    }

    /* Mobile navigation menu styles */
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        /* Full height */
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.show {
        display: flex !important;
        height: calc(100vh - 80px) !important;
    }

    /* Show nav toggle button on mobile */
    .nav-toggle {
        display: flex;
    }

    /* Adjust nav links for mobile */
    .nav-menu .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }

    /* Stack megamenu items vertically on mobile */
    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Adjust voice solutions submenu for mobile */
    .voice-solutions-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }

    .voice-agents-menu:hover .voice-solutions-submenu {
        opacity: 1;
    }

    .menu-card {
        background: transparent;
        border: none;
        padding: 0.75rem 0;
    }

    .menu-card:hover {
        background: transparent;
        transform: none;
        box-shadow: none;
        color: var(--primary-blue);
    }
}


/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero image styling */
.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.hero-visual {
    position: relative;
    height: 500px;
}

#particleCanvas {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Hero Animation Container Styles */
.hero-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-animation-container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Hero Animation Container */
@media (max-width: 768px) {
    .hero-animation-container {
        max-width: 100%;
        min-height: 300px;
    }

    .hero-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-animation-container {
        min-height: 250px;
    }

    .hero-image {
        min-height: 250px;
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.trust-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.logo-scroll {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

.company-logo {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    white-space: nowrap;
    color: var(--text-secondary);
    font-weight: 600;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.section-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
    border-color: var(--primary-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-stat {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.solutions-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.solution-card {
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.25);
}

.solution-image {
    margin-bottom: 2rem;
}

.solution-icon-large {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(124, 58, 237, 0.2));
    border: 2px solid rgba(79, 70, 229, 0.3);
    border-radius: 20px;
}

.solution-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.solution-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-benefit {
    font-size: 1rem;
    color: var(--text-primary);
    padding: 1rem;
    background: rgba(79, 70, 229, 0.1);
    border-left: 3px solid var(--primary-blue);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.solution-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.solution-link:hover {
    color: var(--primary-purple);
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.use-cases-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.use-case-card {
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.use-case-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.use-case-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.use-case-stat {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    padding: 0.5rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 6px;
}

.cta-center {
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.industries-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.industry-card {
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.industry-image {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.industry-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Social Proof Section */
.social-proof-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-proof-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.social-proof-container h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.social-proof-container p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.final-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.final-cta-container h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-container p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section {
    min-width: 0;
    /* Prevent overflow */
}

.footer-logo {
    margin-bottom: 1rem;
}

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

.footer-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-domain {
    font-weight: 600;
    color: var(--primary-blue);
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1rem;
        align-items: flex-start;
        border-bottom: 1px solid var(--border-color);
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.show {
        transform: translateX(0);
        opacity: 1;
    }

    /* Mega Menu Mobile */
    .mega-menu-wrapper {
        width: 100%;
    }

    .mega-menu {
        position: static;
        width: 100%;
        max-width: none;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        margin-top: 0.5rem;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    .mega-menu-wrapper.active .mega-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1500px;
        /* Reduced from 2000px */
        padding: 1rem;
    }

    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .menu-card {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
    }

    .voice-solutions-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        pointer-events: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        height: auto;
        max-height: none;
    }

    .submenu-card {
        padding: 0.75rem;
    }

    .submenu-icon {
        font-size: 1.25rem;
    }

    .language-selector-fixed {
        top: 80px;
        right: 1rem;
    }

    .nav-dropdown .dropdown-content {
        position: static;
        display: none;
        background: rgba(79, 70, 229, 0.05);
        border: none;
        border-radius: 8px;
        padding: 0.5rem 0;
        margin: 0.5rem 0 0 1rem;
        box-shadow: none;
    }

    .nav-dropdown:hover .dropdown-content {
        display: none;
    }

    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 75px;
        max-width: 220px;
    }

    .footer-logo-img {
        height: 35px;
        max-width: 130px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .use-cases-grid,
    .industries-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Language Selector */
.language-selector-fixed {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 1001;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 160px;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
}

.lang-toggle:focus-visible,
.lang-option:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.menu-card:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001s !important;
        transition-duration: 0.001s !important;
    }

    .logo-track {
        animation: none !important;
    }
}

.lang-option:hover {
    background: rgba(79, 70, 229, 0.1);
    color: var(--text-primary);
}

.flag {
    font-size: 1.2rem;
}

/* ===== NUEVOS ESTILOS V2 - AGENT DRAGON ===== */

/* Screen Reader Only */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Industry Results */
.industry-result {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 1rem 0;
    font-weight: 500;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* CTA Badge & Proof */
.cta-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.use-case-card.large {
    grid-column: span 2;
}

.use-case-card.highlight {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.use-case-content {
    flex: 1;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.use-case-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.use-case-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

.use-case-channels {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.channel-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    font-size: 0.8rem;
    color: #3b82f6;
    font-weight: 500;
}

.use-case-icons-row {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.use-case-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #a78bfa;
}

.badge-icon {
    font-size: 1.25rem;
}

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

    .use-case-card.large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .cta-proof {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .proof-number {
        font-size: 2rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card.large {
        grid-column: span 1;
    }

    .use-cases {
        padding: 4rem 0;
    }

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

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.founder-card {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    cursor: default;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.founder-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: rgba(10, 10, 15, 0.75);
}

.founder-card:active {
    transform: scale(0.98);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
}

.founder-card:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.founder-image-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    padding: 2px;
}

.founder-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-name {
    margin-top: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.founder-title {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.founder-meta {
    text-align: center;
}

.founder-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 10px 0 12px;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.founder-card.animate-in {
    animation: fadeInUp 0.4s ease-out both;
}

.founders-grid .founder-card:nth-child(2).animate-in {
    animation-delay: 0.1s;
}

.founders-grid .founder-card:nth-child(3).animate-in {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .founder-card {
        transition: none;
        animation: none;
    }

    .founder-card:hover {
        transform: none;
    }
}

.founder-achievements {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: grid;
    gap: 8px;
}

.founder-achievements li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.founder-achievements i {
    color: var(--primary-blue);
}

.founder-links {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.founder-links .btn-secondary {
    gap: 8px;
}

@media (max-width: 768px) {
    .founder-card {
        padding: 16px;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
}

.cta-button.primary {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: transparent;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--text-primary);
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: scale(0.98);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
}

.cta-button:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .cta-button {
        transition: none;
    }
}

.section-title {
    font-size: 1.875rem;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 70ch;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.industry-card {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: rgba(10, 10, 15, 0.75);
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    margin-top: 0.75rem;
    font-weight: 600;
}

.industry-link:hover {
    color: var(--text-primary);
}

.section-cta {
    margin-top: 1.5rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background: transparent;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: rgba(10, 10, 15, 0.75);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.95rem;
    }
}

.footer {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    color: var(--text-secondary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-domain {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-social {
    display: inline-flex;
    gap: 0.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: rgba(10, 10, 15, 0.75);
    color: var(--text-primary);
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Text spacing normalization for common blocks */
.section-title {
    margin: 0 0 0.5rem 0;
}

.section-description {
    margin: 0 0 1.5rem 0;
}

.founder-name {
    margin: 12px 0 4px 0;
}

.founder-title {
    margin: 0 0 8px 0;
}

.founder-bio {
    margin: 0;
}

.industry-result {
    margin: 0.5rem 0 0.75rem 0;
}

.solutions-overview,
.industries,
.use-cases {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

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

.hero+.solutions-overview {
    margin-top: 1rem;
}

.solutions-overview+.industries {
    margin-top: 1rem;
}

.industries+.use-cases {
    margin-top: 1rem;
}

/* Global container horizontal spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 768px) {

    .container,
    .hero-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    border: 0;
    cursor: pointer;
}

.faq-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    text-align: left;
}

.faq-chevron {
    transition: transform 0.2s ease;
}

.faq-toggle[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px 22px 22px;
}

.faq-answer p {
    color: var(--text-secondary);
}

.contact-hero {
    padding: 40px 0 20px;
}

.contact-grid {
    padding: 20px 0 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 24px;
}

.form-card,
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form-row label {
    font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
    background: #13131a;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    width: 100%;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.input-hint {
    font-size: 0.85rem;
    color: #ff7b7b;
    min-height: 1.2em;
}

.char-counter {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: right;
}

.captcha-row {
    display: grid;
}

.captcha-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin-top: 12px;
    font-weight: 600;
}

.info-list {
    display: grid;
    gap: 16px;
}

.info-item .info-label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.copy-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 8px 12px;
    cursor: pointer;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    background: #1e1e29;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* CTA Section Layout (professional) */
.cta-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

.founder-name,
.founder-title,
.founder-description {
    transition: color 0.2s ease-in-out, opacity 0.3s ease-in-out;
}

.founder-card:hover .founder-name {
    opacity: 0.95;
}

.founder-card:hover .founder-title {
    opacity: 0.95;
}

.founder-card:hover .founder-description {
    opacity: 0.95;
}

/* =========================================
   PREMIUM SOLUTION PAGE STYLES
   ========================================= */

/* --- Hero Section --- */
.hero-section {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.1), transparent 40%),
        var(--dark-bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-trust p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    opacity: 0.7;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    left: -20px;
    animation-delay: 3s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(79, 70, 229, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-text .value {
    font-weight: 700;
    color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- Comparison Section --- */
.comparison-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.traditional {
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-card.ai-solution {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.05), var(--card-bg));
    position: relative;
}

.comparison-card.ai-solution::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(to bottom right, #10B981, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comparison-list li i {
    font-size: 1.2rem;
    margin-top: 4px;
}

.traditional li i {
    color: #EF4444;
}

.ai-solution li i {
    color: #10B981;
}

.comparison-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.comparison-list p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Features Grid --- */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(124, 58, 237, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Steps Section --- */
.steps-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
    opacity: 0.3;
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

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

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

    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

/* ================= PRICING SECTION STYLES ================= */

.pricing-section {
    padding: 80px 0;
    background: transparent;
    /* Allows site specific dark bg to show through */
    position: relative;
}

.pricing-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.pricing-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.pricing-container {
    display: flex;
    flex-wrap: nowrap;
    /* Force single line */
    justify-content: center;
    gap: 15px;
    /* Reduced gap */
    max-width: 100%;
    /* Ensure it takes full width */
    margin: 0 auto;
    padding: 0 10px;
    overflow-x: auto;
    /* Allow scrolling on small screens if they don't shrink enough */
    padding-bottom: 20px;
    /* Space for scrollbar if needed */

    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.pricing-container::-webkit-scrollbar {
    display: none;
}

/* --- Base Card Styles --- */
.pricing-card {
    background: #fff;
    /* Keeping white cards as requested */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    min-width: 240px;
    /* Slightly reduced min-width to help fit */
    max-width: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #cfd8dc;
    color: #263238;
    /* Force dark text inside white cards */
    flex-shrink: 1;
    /* Allow shrinking if needed */
}

.pricing-card:hover {
    transform: translateY(-5px);
    /* Reduced from -10px */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 25px 25px;
    /* Reduced from 35px 25px */
    text-align: center;
    flex-grow: 1;
}

/* --- Typography & Elements --- */
.plan-name {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.plan-target {
    color: #78909c;
    font-size: 0.95rem;
    margin-top: 10px;
    min-height: 50px;
    line-height: 1.4;
}

.price-block {
    margin: 25px 0 15px;
}

.price-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #263238;
}

.price-period {
    color: #78909c;
    font-weight: 600;
}

.setup-fee {
    font-size: 0.85rem;
    color: #546e7a;
    background: #eceff1;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* --- Minutes Block --- */
.minutes-block {
    background: #eceff1;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    /* Reduced from 30px */
}

.minutes-included {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #263238;
}

.minutes-rate {
    font-size: 0.85rem;
    color: #546e7a;
    display: block;
    margin-top: 5px;
}

/* --- Features List --- */
.features-list {
    text-align: left;
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.4;
}

.check-icon {
    color: #4caf50;
    margin-right: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.cumulative-feature {
    font-weight: 600;
    color: #263238;
}

.value-prop {
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: #546e7a;
}

/* --- Footer & Buttons --- */
.card-footer {
    padding: 20px;
    /* Reduced from 25px */
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.btn-plan {
    width: 100%;
    padding: 14px;
    border: none;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

/* ================= PLAN MODIFIERS ================= */

/* --- Basic (Bronce) --- */
.card-basic {
    border-top-color: #78909c;
}

.card-basic .plan-name {
    color: #78909c;
}

.card-basic .minutes-block {
    background: #eceff1;
    color: #455a64;
}

.card-basic .btn-plan {
    background: transparent;
    color: #78909c;
    border: 2px solid #78909c;
}

.card-basic .btn-plan:hover {
    background: #78909c;
    color: #fff;
}

/* --- Standard (Plata) --- */
.card-standard {
    border-top-color: var(--secondary-color, #1e88e5);
}

.card-standard .plan-name {
    color: var(--secondary-color, #1e88e5);
}

.card-standard .minutes-block {
    background: #e3f2fd;
    color: #0d47a1;
}

.card-standard .minutes-included {
    color: #1565c0;
}

.card-standard .btn-plan {
    background: var(--secondary-color, #1e88e5);
    color: white;
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3);
}

.card-standard .btn-plan:hover {
    background: #1565c0;
}

/* --- Pro (Oro - Featured) --- */
.card-pro {
    border: 3px solid var(--primary-color, #3a35a8);
    /* Removed transform: scale(1.05) to equalize height */
    z-index: 10;
    box-shadow: 0 15px 40px rgba(58, 53, 168, 0.2);
}

.card-pro:hover {
    /* Match other cards hover effect instead of scaling further */
    transform: translateY(-5px);
    /* Reduced from -10px to match others */
}

.card-pro .popular-badge {
    margin-top: 2px;
    text-align: center;
    position: absolute;
    /*top: -15px;*/
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color, #ff5722);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-pro .plan-name {
    color: var(--primary-color, #3a35a8);
    font-size: 1.8rem;
}

.card-pro .price-number {
    color: var(--primary-color, #3a35a8);
    font-size: 2.8rem;
}

.card-pro .minutes-block {
    background: #ede7f6;
    border: 1px solid #d1c4e9;
}

.card-pro .minutes-included {
    color: #4527a0;
    font-size: 1.3rem;
}

.card-pro .minutes-rate {
    color: var(--primary-color, #3a35a8);
    font-weight: 600;
}

.card-pro .btn-plan {
    background: linear-gradient(45deg, var(--primary-color, #3a35a8), #5c6bc0);
    color: white;
    box-shadow: 0 8px 15px rgba(58, 53, 168, 0.4);
    padding: 16px;
    font-size: 1.1rem;
}

.card-pro .btn-plan:hover {
    background: linear-gradient(45deg, #302a8c, #4a569d);
}

.card-pro .value-prop {
    color: var(--primary-color, #3a35a8);
    font-weight: 600;
}

/* --- Enterprise --- */
.card-enterprise {
    border-top-color: #212121;
    background: #fafafa;
}

.card-enterprise .card-content,
.card-enterprise .card-footer {
    background: #fafafa;
}

.card-enterprise .plan-name {
    color: #212121;
}

.card-enterprise .minutes-block {
    background: #cfd8dc;
}

.card-enterprise .minutes-included {
    color: #263238;
}

.card-enterprise .btn-plan {
    background: #212121;
    color: white;
    border: 2px solid #212121;
}

.card-enterprise .btn-plan:hover {
    background: #424242;
    border-color: #424242;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1100px) {
    .card-pro {
        transform: scale(1);
        margin: 15px 0;
    }

    .card-pro:hover {
        transform: translateY(-5px);
    }

    .card-pro .popular-badge {
        top: 10px;
        position: relative;
        display: inline-block;
        left: auto;
        transform: none;
        margin-bottom: 15px;
    }
}