@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #5B7FFF;
    --blue: #5B7FFF;
    --blue-light: #f0f4ff;
    --text-dark: #1a1a1a;
    --dark: #1a1a1a;
    --text-gray: #666666;
    --gray: #666666;
    --bg-light: #F8F9FB;
    --bg-white: #FFFFFF;
    --footer-dark: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* Navigation */
/*nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin-left: auto;
    margin-right: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}*/

/* ── ENHANCED NAV WITH DROPDOWN ─────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: box-shadow .3s;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 60px;
    width: auto;
    cursor: pointer;
}

.nav-right-groups {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-content {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2.5rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin-right: 2.5rem;
}

.nav-links>li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: .95rem;
    transition: color .3s;
}

/*.nav-links a:hover {
    color: var(--blue);
}*/

/* Dropdown trigger */
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
    color: var(--dark);
    font-weight: 500;
    font-size: .95rem;
    transition: color .3s;
}

.nav-dropdown-trigger:hover {
    color: var(--blue);
}

.nav-dropdown-arrow {
    font-size: .7rem;
    transition: transform .3s;
}

.nav-dropdown-trigger:hover .nav-dropdown-arrow {
    transform: translateY(2px);
}

/* Dropdown menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    padding: 1.5rem;
    min-width: 680px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    pointer-events: none;
}

/* Invisible bridge to prevent losing hover when moving mouse to dropdown */
.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

.nav-links>li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    margin-top: 1rem;
}

.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f2f5;
}

.dropdown-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.dropdown-view-all {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.2rem;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 12px rgba(91, 127, 255, .2);
}

.dropdown-view-all:hover {
    background: #4A6FFF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(91, 127, 255, .3);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}

.dropdown-employee-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem;
    border-radius: 12px;
    background: white;
    text-decoration: none;
    transition: all .3s;
    border: 1px solid #f0f2f5;
}

.dropdown-employee-card:hover {
    background: #f8faff;
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 127, 255, .1);
}

.dropdown-employee-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.dropdown-employee-info {
    flex: 1;
}

.dropdown-employee-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .2rem;
    display: block;
}

.dropdown-employee-role {
    font-size: .75rem;
    color: var(--gray);
    display: block;
}

.nav-btn {
    padding: .75rem 1.75rem;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 127, 255, .35);
}

/* Mobile responsive */
@media (max-width: 1100px) {
    .nav-dropdown {
        min-width: 90vw;
        left: 5%;
        transform: none;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-content {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-content.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        align-items: flex-start;
        margin-right: 0;
        margin-left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding: 1rem 0;
        transform: none;
        margin-top: 0;
        pointer-events: auto;
    }

    .nav-links li:hover .nav-dropdown {
        display: block;
        margin-top: 0;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.contact-btn {
    padding: 0.75rem 1.75rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(91, 127, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    background: var(--bg-white);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #E8EEFF;
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content h1 .ai-text {
    color: var(--primary-blue);
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2.25rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 127, 255, 0.4);
}

.btn-secondary {
    padding: 1rem 2.25rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

/* Robot Cluster Cluster */
.robots-cluster {
    position: relative;
    max-width: 550px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cluster-circle {
    width: 480px;
    height: 480px;
    background: #F5F7FA;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.cluster-img {
    position: absolute;
    height: auto;
    transition: all 0.5s ease;
    animation: floatRobot 6s ease-in-out infinite;
}

/* Group arrangement */
.member-1 {
    width: 45%;
    left: -5%;
    bottom: 5%;
    z-index: 2;
    animation-delay: 0s;
}

.member-2 {
    width: 45%;
    right: -5%;
    bottom: 5%;
    z-index: 2;
    animation-delay: 1s;
}

.member-3 {
    width: 60%;
    bottom: -5%;
    z-index: 5;
    animation-delay: 0.5s;
}

.member-4 {
    width: 40%;
    left: 10%;
    bottom: 30%;
    z-index: 1;
    animation-delay: 1.5s;
}

.member-5 {
    width: 40%;
    right: 10%;
    bottom: 30%;
    z-index: 1;
    animation-delay: 2s;
}

.main-team-img {
    width: 90%;
    height: auto;
    position: relative;
    z-index: 5;
    transform: translateY(-20px);
}

@keyframes floatRobot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.cluster-circle:hover .cluster-img {
    transform: scale(1.05);
}

.infinite-badge {
    position: absolute;
    bottom: -10px;
    right: -20px;
    width: 140px;
    height: auto;
    z-index: 10;
}

/* Stats Section */
.stats {
    padding: 3rem 5%;
    background: var(--primary-blue);
    color: white;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* AI Team Section */
.ai-team {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header .small-title {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header h2 .ai-text {
    color: var(--primary-blue);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.agent-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #F0F2F5;
}

.agent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.agent-card .agent-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.agent-card:nth-child(1) .agent-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.agent-card:nth-child(2) .agent-image {
    background: linear-gradient(135deg, #5B7FFF 0%, #3B5FD9 100%);
}

.agent-card:nth-child(3) .agent-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.agent-card:nth-child(4) .agent-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.agent-card:nth-child(5) .agent-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.agent-card:nth-child(6) .agent-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.agent-card:nth-child(7) .agent-image {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.agent-card:nth-child(8) .agent-image {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.agent-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.agent-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Custom Employee Section */
.custom-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-section-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
    background-image:
        radial-gradient(at 0% 100%, rgba(91, 127, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(91, 127, 255, 0.15) 0px, transparent 50%);
}

/* Simulating the abstract waves with a decoration */
.custom-section-waves::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cpath d='M0,500 C200,400 300,600 500,500 C700,400 800,500 800,500 L800,0 L0,0 Z' fill='none' stroke='rgba(91, 127, 255, 0.1)' stroke-width='2'/%3E%3Cpath d='M0,450 C200,350 300,550 500,450 C700,350 800,450 800,450 L800,0 L0,0 Z' fill='none' stroke='rgba(91, 127, 255, 0.05)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    transform: rotate(-15deg);
}

.custom-section-waves::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cpath d='M0,500 C200,400 300,600 500,500 C700,400 800,500 800,500 L800,0 L0,0 Z' fill='none' stroke='rgba(91, 127, 255, 0.1)' stroke-width='2'/%3E%3Cpath d='M0,450 C200,350 300,550 500,450 C700,350 800,450 800,450 L800,0 L0,0 Z' fill='none' stroke='rgba(91, 127, 255, 0.05)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    transform: rotate(165deg);
}

.custom-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.left-robot-decor {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    z-index: 3;
    opacity: 0.5;
    pointer-events: none;
}

.right-robot-decor {
    position: absolute;
    right: 0px;
    bottom: -20px;
    width: 280px;
    z-index: 3;
    opacity: 0.9;
    pointer-events: none;
}

.custom-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(91, 127, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-container h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.2;
}

.custom-container h2 .custom-text {
    color: var(--primary-blue);
}

.custom-container p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.custom-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.custom-buttons .btn-primary {
    padding: 1.1rem 2.5rem;
    box-shadow: 0 10px 25px rgba(91, 127, 255, 0.4);
}

.custom-buttons .btn-secondary {
    padding: 1.1rem 2.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
}

.custom-buttons .btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 127, 255, 0.3);
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.feature-item h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-container p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background: var(--footer-dark);
    color: white;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    /*grid-template-columns: 2fr 2fr 1fr 0fr;*/
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .robots-cluster {
        margin: 0 auto;
    }

    .cluster-circle {
        width: 400px;
        height: 400px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-content {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        max-height: 85vh;
        overflow-y: auto;
        margin: 0;
        z-index: 1001;
    }

    .nav-content.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
        align-items: flex-start;
        margin-right: 0;
        margin-left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding: 1rem 0;
        transform: none;
        margin-top: 0;
        pointer-events: auto;
    }

    .nav-links li:hover .nav-dropdown {
        display: block;
        margin-top: 0;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .custom-buttons {
        flex-direction: column;
    }

    .cluster-circle {
        width: 300px;
        height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Contact Header */
.contact-header {
    padding: 10rem 5% 5rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-header h1 span {
    color: var(--primary-blue);
}

.contact-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #E8EEFF;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.info-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #F0F2F5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #F8F9FB;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 5px 15px rgba(91, 127, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 127, 255, 0.4);
}


/* ── DISRUPTION SECTION ─────────────────── */
.disruption-section {
    padding: 6rem 5%;
    background: var(--footer-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.disruption-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 127, 255, .15) 0%, transparent 70%);
    pointer-events: none;
}

.disruption-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 127, 255, .08) 0%, transparent 70%);
    pointer-events: none;
}

.disruption-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.disruption-label {
    display: inline-block;
    padding: .45rem 1.1rem;
    background: rgba(91, 127, 255, .2);
    color: #93a8ff;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.disruption-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.disruption-header h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: white;
}

.disruption-header h2 span {
    color: var(--primary-blue);
}

.disruption-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

.disruption-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.disruption-timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), #93a8ff, var(--primary-blue));
}

.dt-era {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.dt-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
}

.dt-node.past {
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .2);
}

.dt-node.now {
    background: var(--primary-blue);
    box-shadow: 0 0 0 8px rgba(91, 127, 255, .2);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(91, 127, 255, .2)
    }

    50% {
        box-shadow: 0 0 0 16px rgba(91, 127, 255, .1)
    }
}

.dt-node.future {
    background: linear-gradient(135deg, var(--primary-blue), #93a8ff);
    box-shadow: 0 8px 24px rgba(91, 127, 255, .4);
}

.dt-era-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    text-align: center;
    margin-bottom: .75rem;
}

.dt-era-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: .75rem;
}

.dt-era-desc {
    font-size: .83rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    text-align: center;
}

.dt-era-impact {
    margin-top: 1rem;
    padding: .5rem .85rem;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    text-align: center;
}

.dt-era.now-era .dt-era-title {
    color: #93a8ff;
}

.dt-era.now-era .dt-era-desc {
    color: rgba(255, 255, 255, .8);
}

.dt-era.now-era .dt-era-impact {
    background: rgba(91, 127, 255, .15);
    color: #93a8ff;
}

.disruption-quote {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(91, 127, 255, .1);
    border-radius: 20px;
    border: 1px solid rgba(91, 127, 255, .2);
    text-align: center;
}

.disruption-quote p {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.disruption-quote p span {
    color: var(--primary-blue);
}

.disruption-quote .quote-sub {
    margin-top: 1rem;
    font-size: .9rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
}

/* ── RPA vs AI SECTION ──────────────────── */
.rpa-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.rpa-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.rpa-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.rpa-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.rpa-card-header {
    padding: 2rem;
    text-align: center;
}

.rpa-card-header.rpa-old {
    background: #f1f5f9;
}

.rpa-card-header.rpa-new {
    background: linear-gradient(135deg, var(--primary-blue), #3B5FD9);
}

.rpa-card-icon {
    font-size: 3rem;
    margin-bottom: .75rem;
}

.rpa-card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
}

.rpa-card-header.rpa-old h3 {
    color: var(--footer-dark);
}

.rpa-card-header.rpa-new h3 {
    color: white;
}

.rpa-card-header span {
    font-size: .85rem;
}

.rpa-card-header.rpa-old span {
    color: var(--text-gray);
}

.rpa-card-header.rpa-new span {
    color: rgba(255, 255, 255, .8);
}

.rpa-card-body {
    background: white;
    padding: 1.5rem;
}

.rpa-point {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .9rem 0;
    border-bottom: 1px solid #f5f7fb;
}

.rpa-point:last-child {
    border-bottom: none;
}

.rpa-point-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.rpai-red {
    background: #fee2e2;
}

.rpai-orange {
    background: #fff7ed;
}

.rpai-gray {
    background: #f1f5f9;
}

.rpai-green {
    background: #dcfce7;
}

.rpai-blue {
    background: #e8eeff;
}

.rpa-point-text h5 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.rpa-point-text p {
    font-size: .8rem;
    color: var(--text-gray);
    line-height: 1.55;
}

.rpa-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rpa-vs-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--footer-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.rpa-comparison-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rpa-comp-card {
    background: white;
    border-radius: 18px;
    padding: 1.75rem;
    border: 2px solid transparent;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.rpa-comp-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(91, 127, 255, .12);
}

.rpa-comp-aspect {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.rpa-comp-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
}

.rpa-comp-row:last-child {
    margin-bottom: 0;
}

.rcr-label {
    font-size: .8rem;
    font-weight: 600;
    width: 40px;
    flex-shrink: 0;
}

.rcr-bar-wrap {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.rcr-bar {
    height: 100%;
    border-radius: 4px;
}

.rcr-bar.rpa-bar {
    background: #94a3b8;
}

.rcr-bar.ai-bar {
    background: var(--primary-blue);
}

.rcr-val {
    font-size: .75rem;
    font-weight: 700;
    width: 30px;
    text-align: right;
}

/* ── AI vs HUMAN SECTION ────────────────── */
.vs-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.vs-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.vs-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.vs-header .sec-label-sm {
    font-size: .8rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.vs-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--footer-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.vs-header h2 span {
    color: var(--primary-blue);
}

.vs-header p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.vs-table-wrap {
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .07);
}

.vs-table-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    background: var(--footer-dark);
    padding: 1.5rem 2rem;
    gap: 1rem;
    align-items: center;
}

.vth-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vth-ai {
    text-align: center;
    background: var(--primary-blue);
    border-radius: 12px;
    padding: .75rem 1rem;
}

.vth-ai strong {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 800;
}

.vth-ai span {
    color: rgba(255, 255, 255, .8);
    font-size: .75rem;
}

.vth-human {
    text-align: center;
    background: rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: .75rem 1rem;
}

.vth-human strong {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 800;
}

.vth-human span {
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
}

.vs-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 1.25rem 2rem;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: white;
    transition: background .2s;
}

.vs-row:hover {
    background: #f0f4ff;
}

.vs-row:last-child {
    border-bottom: none;
}

.vs-row:nth-child(even) {
    background: var(--bg-light);
}

.vs-row:nth-child(even):hover {
    background: #f0f4ff;
}

.vs-feature {
    font-size: .92rem;
    font-weight: 600;
    color: var(--footer-dark);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.vs-feature-icon {
    font-size: 1.1rem;
}

.vs-cell {
    text-align: center;
}

.vs-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
}

.vsp-win {
    background: #dcfce7;
    color: #15803d;
}

.vsp-lose {
    background: #fee2e2;
    color: #b91c1c;
}

.vsp-mid {
    background: #fef9c3;
    color: #92400e;
}

.vsp-neutral {
    background: #f1f5f9;
    color: #64748b;
}

.vs-footer-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 1.5rem 2rem;
    gap: 1rem;
    align-items: center;
    background: linear-gradient(135deg, var(--footer-dark) 0%, #2d2d4e 100%);
}

.vs-footer-row .vs-feature {
    color: white;
    font-size: 1rem;
}

.vs-verdict-ai {
    text-align: center;
}

.vs-verdict-ai strong {
    display: block;
    color: #86efac;
    font-size: 1.1rem;
    font-weight: 800;
}

.vs-verdict-ai span {
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
}

.vs-verdict-human {
    text-align: center;
}

.vs-verdict-human strong {
    display: block;
    color: #fca5a5;
    font-size: 1.1rem;
    font-weight: 800;
}

.vs-verdict-human span {
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
}

.vs-note {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    font-size: .9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.vs-note strong {
    color: var(--footer-dark);
}