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

:root {
    /* Blue / red theme derived from client's preference but with adjusted shades */
    --primary-color: #3b6fe5;
    /* main blue (slightly lighter) */
    --primary-light: #4a7ff3;
    /* lighter blue accent */
    --secondary-color: #f0433c;
    /* warm red accent */
    /* Dark surfaces with a subtle bluish tone */
    --dark-bg: #050914;
    --darker-bg: #02040b;
    --light-bg: #070c18;
    --card-bg: #0b1120;
    --text-primary: #ffffff;
    --text-secondary: #a8b3cf;
    --border-color: #1f2937;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Touch-friendly buttons on mobile */
@media (max-width: 768px) {

    button,
    .btn,
    a.btn {
        /* min-height: 44px;
        min-width: 44px; */
        touch-action: manipulation;
    }

    .nav-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
    }

    .carousel-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 90, 192, 0.35);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

/* Ensure navbar is visible on hero section */
.hero-option-2~* {
    position: relative;
}

.navbar .logo {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.navbar.scrolled .logo {
    text-shadow: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    background: var(--primary-color);
}

.hamburger span:nth-child(2) {
    background: var(--secondary-color);
}

.hamburger span:nth-child(3) {
    background: var(--primary-color);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
    text-shadow: none;
}

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

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(59, 111, 229, 0.7);
}

.navbar.scrolled .nav-links a:hover {
    text-shadow: none;
    color: var(--primary-color);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--darker-bg);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1565073165505-a98a0b87e922?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 111, 229, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
}

.chipset-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border: 2px solid var(--primary-color);
    padding: 20px;
    background: rgba(0, 255, 136, 0.02);
}

.chipset-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 13px;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--darker-bg);
}

/* Section Styles */
section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    position: relative;
    z-index: 1;
}

section.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure sections are visible even if animation hasn't triggered (fallback for mobile) */
@media (max-width: 768px) {
    section {
        opacity: 1;
        transform: none;
    }

    /* Still allow animation but make sure content is visible */
    section:not(.fade-in-up) {
        animation: fadeInMobile 0.5s ease-out forwards;
    }
}

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

/* Hero section should not fade in */
.hero {
    opacity: 1 !important;
    transform: none !important;
}

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

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Ensure consistent h2 sizing across all sections */
section h2,
.about-content h2,
.feature-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.about-image {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    z-index: 2;
}

.about-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.about-content .section-label {
    text-align: left;
}

.about-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.2;
}

.about-lead {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 500;
    font-size: 16px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
}

/* Products Section */
.products {
    background-color: var(--light-bg);
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

.products-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 60px 0 80px;
    overflow: hidden;
    margin-top: 60px;
}

.products-carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 0;
    position: relative;
}

.products-carousel {
    display: flex;
    gap: 30px;
    width: fit-content;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding-left: 40px;
    padding-right: 40px;
}

.product-card {
    flex: 0 0 380px;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 380px;
    min-width: 380px;
}

/* Edge-to-edge carousel on larger screens */
@media (min-width: 1025px) {
    .products-carousel-wrapper {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .products-carousel {
        padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
        padding-right: max(40px, calc((100vw - 1280px) / 2 + 40px));
    }
}

.product-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 111, 229, 0.2);
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--darker-bg);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover .product-overlay {
    opacity: 0.6;
}

.product-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.product-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 15px;
    flex-grow: 1;
}


.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.product-link:hover {
    gap: 12px;
    color: var(--primary-light);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding: 0 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    padding: 0;
    flex-shrink: 0;
}

.carousel-indicator:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 32px;
}


/* Technology Section */
.technology {
    background-color: var(--light-bg);
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.tech-image {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tech-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 111, 229, 0.15);
}

.tech-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.tech-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.tech-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.capabilities-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--primary-color);
    padding: 2px;
}

.capability {
    background: var(--card-bg);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.capability-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 192, 0.12);
    border: 1.5px solid rgba(45, 90, 192, 0.4);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.capability:hover .capability-icon-wrapper {
    background: rgba(45, 90, 192, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.capability-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.capability:hover .capability-icon {
    transform: rotate(5deg);
}

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

.capability-text strong {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.capability-text span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Why Choose Section */
.why-choose {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(59, 111, 229, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(59, 111, 229, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
}

.advantages-showcase {
    margin-bottom: 80px;
}

.advantage-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.advantage-feature.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.advantage-feature.reverse .feature-visual {
    order: 2;
}

.advantage-feature.reverse .feature-content {
    order: 1;
}

.feature-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chipset Diagram Animation */
.chipset-diagram {
    position: relative;
    width: 300px;
    max-width: 100%;
    height: 300px;
    margin: 0 auto;
}

.chip-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: 2px solid var(--primary-color);
    animation: pulse-core 3s ease-in-out infinite;
}

@keyframes pulse-core {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 111, 229, 0.4),
            0 0 0 0 rgba(255, 107, 53, 0.3);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(59, 111, 229, 0),
            0 0 0 40px rgba(255, 107, 53, 0);
    }
}

.chip-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-node::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--primary-color);
}

.chip-node-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-color: var(--primary-color);
}

.chip-node-1::before {
    background: var(--primary-color);
}

.chip-node-2 {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-color: var(--secondary-color);
}

.chip-node-2::before {
    background: var(--secondary-color);
}

.chip-node-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-color: var(--primary-color);
}

.chip-node-3::before {
    background: var(--primary-color);
}

.chip-node-4 {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-color: var(--secondary-color);
}

.chip-node-4::before {
    background: var(--secondary-color);
}

.chip-connection {
    position: absolute;
    opacity: 0.3;
    animation: flow 2s ease-in-out infinite;
}

.conn-1 {
    top: 70px;
    left: 50%;
    width: 3px;
    height: 80px;
    transform: translateX(-50%);
    animation-delay: 0s;
    background: var(--primary-color);
}

.conn-2 {
    right: 70px;
    top: 50%;
    width: 80px;
    height: 3px;
    transform: translateY(-50%);
    animation-delay: 0.5s;
    background: var(--secondary-color);
}

.conn-3 {
    bottom: 70px;
    left: 50%;
    width: 3px;
    height: 80px;
    transform: translateX(-50%);
    animation-delay: 1s;
    background: var(--primary-color);
}

.conn-4 {
    left: 70px;
    top: 50%;
    width: 80px;
    height: 3px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
    background: var(--secondary-color);
}

@keyframes flow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

/* Stats Visual */
.stats-visual {
    position: relative;
    width: 300px;
    max-width: 100%;
    height: 300px;
    margin: 0 auto;
}

.stat-circle {
    width: 100%;
    height: 100%;
}

.chip-icon-grid {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mini-chip {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border: 1px solid var(--primary-light);
    opacity: 0.6;
    animation: chip-float 4s ease-in-out infinite;
}

.mini-chip:nth-child(2) {
    animation-delay: 0.5s;
}

.mini-chip:nth-child(3) {
    animation-delay: 1s;
}

.mini-chip:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes chip-float {

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

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

/* Process Visual */
.process-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.process-step {
    display: flex;
    align-items: center;
    width: 100%;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
    border: 2px solid var(--primary-light);
    position: relative;
    z-index: 2;
}

.step-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    margin-left: -30px;
    animation: process-flow 2s ease-in-out infinite;
}

.process-step:last-child .step-line {
    display: none;
}

@keyframes process-flow {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

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

.feature-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.feature-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spec-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 111, 229, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.metric-item {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.metric-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.process-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.process-check {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.advantage-card {
    text-align: center;
    padding: 50px 35px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 111, 229, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 111, 229, 0.15);
}

.card-chip-icon {
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.card-chip-icon svg {
    transition: transform 0.4s ease;
}

.advantage-card:hover .card-chip-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.advantage-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team {
    background-color: var(--darker-bg);
    padding: 100px 0 120px;
}

.team .section-header {
    margin-bottom: 80px;
}

.team .section-header p {
    display: none;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 350px;
    height: fit-content;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
    background: #000000;
}

.team-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: contrast(1.05) brightness(0.95);
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
    filter: contrast(1.1) brightness(1);
}

.team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.team-title {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Section */
.contact {
    background-color: var(--dark-bg);
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 120px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-quick-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.quick-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.quick-contact-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
    align-items: center;
}

.quick-contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(45, 90, 192, 0.25);
}

.quick-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 192, 0.12);
    border: 1.5px solid rgba(45, 90, 192, 0.4);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-contact-item:hover .quick-icon-wrapper {
    background: rgba(45, 90, 192, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.quick-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.quick-contact-item:hover .quick-icon {
    transform: rotate(5deg);
}

.quick-contact-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-label {
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.quick-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-support-banner {
    padding: 24px;
    background: linear-gradient(135deg, rgba(45, 90, 192, 0.18) 0%, rgba(45, 90, 192, 0.08) 100%);
    border: 2px solid var(--primary-color);
    display: flex;
    gap: 16px;
    align-items: center;
}

.support-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.support-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-text strong {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 700;
}

.support-text span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 60px;
}

.form-header {
    margin-bottom: 50px;
}

.form-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--dark-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 111, 229, 0.1);
}

.contact-form select {
    cursor: pointer;
    padding-right: 45px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%233b6fe5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
    font-family: inherit;
}

.contact-form button {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
    padding: 20px 55px;
    transition: all 0.3s ease;
}

.contact-form button svg {
    transition: transform 0.3s ease;
}

.contact-form button:hover svg {
    transform: translateX(5px);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */

/* Large Desktop (1400px+) - Already optimized */

/* Desktop (1200px - 1399px) */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
        padding: 0 30px;
    }

    .advantages-showcase {
        gap: 60px;
    }
}

/* Laptop (1024px - 1199px) */
@media (max-width: 1200px) {
    .team-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .team-photo {
        width: 320px;
    }

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

    .advantages-showcase {
        gap: 50px;
    }

    .feature-visual {
        height: 350px;
    }

    .chipset-diagram {
        width: 280px;
        height: 280px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    section {
        padding: 80px 0;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar .container {
        padding: 0 25px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .hero-bg-image {
        background-attachment: scroll;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        height: 400px;
    }

    .about-meta-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tech-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-image {
        height: 350px;
    }

    .products-carousel-wrapper {
        padding: 60px 0 80px;
    }

    .products-carousel {
        padding: 0 20px;
    }

    .product-card {
        flex: 0 0 350px;
        width: 350px;
        min-width: 350px;
    }

    .carousel-controls {
        padding: 0 30px;
    }

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

    .advantages-showcase {
        gap: 60px;
    }

    .advantage-feature {
        gap: 40px;
    }

    .feature-visual {
        height: 350px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-sidebar {
        position: relative;
        top: 0;
    }

    .contact-form-section {
        padding: 40px 30px;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .capability {
        padding: 25px 20px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .section-header p {
        font-size: 16px;
    }
}

/* Hide Read More button on desktop/tablet - show all content */
@media (min-width: 769px) {
    .about-extra-content {
        display: block !important;
    }

    .read-more-btn {
        display: none !important;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 15px;
    }

    .section-label {
        font-size: 11px;
    }

    /* Ensure all h2 are consistent */
    section h2,
    .about-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        position: relative;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        width: 44px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border-color);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-links a {
        display: block;
        padding: 16px 20px;
        font-size: 14px;
        width: 100%;
        text-align: left;
        text-shadow: none;
        color: var(--text-primary);
    }

    .nav-links a:hover {
        background: rgba(59, 111, 229, 0.1);
        color: var(--primary-color);
    }

    /* Ensure sections are visible when menu is open */
    body.menu-open {
        overflow: hidden;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-layout {
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .about-panel {
        padding: 24px 20px 28px;
    }

    .about-meta-row {
        grid-template-columns: 1fr;
    }

    .about-features {
        flex-direction: column;
    }

    .tech-layout {
        gap: 40px;
    }

    .about-content p {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .products {
        padding: 50px 0;
    }

    /* Technology cards as horizontal carousel (mobile) */
    .tech-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        /* padding: 4px 16px 14px; */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .tech-grid::-webkit-scrollbar {
        display: none;
        /* WebKit */
    }

    .tech-card {
        flex: 0 0 86%;
        max-width: 86%;
        padding: 22px;
        scroll-snap-align: center;
    }

    .tech-image {
        height: 280px;
    }

    /* Read More button for About section (mobile only) */
    .about-extra-content {
        display: none;
        overflow: hidden;
    }

    .about-extra-content.expanded {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .read-more-btn {
        display: inline-block;
        margin-top: 16px;
        background: transparent;
        border: none;
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    

    .advantage-feature {
        grid-template-columns: 1fr !important;
        gap: 50px;
        margin-bottom: 70px;
    }

    .advantage-feature.reverse .feature-visual,
    .advantage-feature.reverse .feature-content {
        order: initial;
    }

    .feature-visual {
        height: 300px;
    }

    .chipset-diagram {
        width: 250px;
        height: 250px;
    }

    .chip-core {
        width: 60px;
        height: 60px;
    }

    .chip-node {
        width: 40px;
        height: 40px;
    }

    .chip-node::before {
        width: 16px;
        height: 16px;
    }

    .stats-visual {
        width: 250px;
        height: 250px;
    }

    .feature-number {
        font-size: 56px;
    }

    .feature-content h3 {
        font-size: 28px;
    }

    .feature-content p {
        font-size: 15px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .advantage-card {
        padding: 40px 25px;
    }

    .products-carousel-wrapper {
        padding: 50px 0 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .products-carousel {
        padding: 0 15px;
    }

    .product-card {
        flex: 0 0 calc(100vw - 60px);
        width: calc(100vw - 60px);
        max-width: 320px;
        min-width: 0;
    }

    .product-image {
        height: 240px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-description {
        font-size: 14px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        border-width: 1.5px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-controls {
        padding: 0 12px;
        gap: 10px;
        margin-top: 25px;
    }

    .carousel-indicator {
        width: 6px;
        height: 6px;
        border-width: 1.5px;
    }

    .carousel-indicator.active {
        width: 18px;
    }

    .why-choose,
    .team,
    .contact {
        padding: 50px 0;
    }

    /* Why Choose Us – advantages as horizontal carousel (mobile) */
    .advantages-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        /* padding: 4px 16px 14px; */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .advantages-grid::-webkit-scrollbar {
        display: none;
    }

    .advantage-card {
        flex: 0 0 86%;
        max-width: 86%;
        scroll-snap-align: center;
    }

    /* Our Leadership – team as horizontal carousel (mobile) */
    .team-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        padding: 4px 16px 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-member {
        flex: 0 0 86%;
        max-width: 86%;
        scroll-snap-align: center;
    }

    .team-photo {
        width: 100%;
        max-width: 280px;
    }

    .team-name {
        font-size: 24px;
    }

    .team-title {
        font-size: 14px;
    }

    .contact-layout {
        gap: 40px;
    }

    .quick-contact-item {
        padding: 18px;
    }

    .quick-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .quick-icon {
        width: 36px;
        height: 36px;
    }

    .contact-form {
        gap: 10px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

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

    .footer {
        padding: 60px 0 30px;
    }

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

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 30px;
    }

    /* Capabilities as horizontal scroller strip (mobile) */
    .capabilities-banner {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        /* Removed scroll-snap for smooth auto-scroll marquee */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: auto;
        /* Prevent smooth scroll from interfering */
    }

    .capabilities-banner::-webkit-scrollbar {
        display: none;
    }

    .capability {
        flex: 0 0 260px;
        /* Removed scroll-snap-align for auto-scroll */
        background: var(--card-bg);
    }

    .capability-icon-wrapper {
        margin-bottom: 8px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Small (320px - 575px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 14px;
    }

    /* Ensure all h2 are consistent */
    section h2,
    .about-content h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 12px;
        font-size: 10px;
    }

    .nav-links a {
        padding: 5px 10px;
    }

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

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

    .about-image {
        height: 250px;
    }

    .about-panel {
        padding: 22px 16px 26px;
    }

    .tech-card {
        padding: 20px;
    }

    .tech-number {
        font-size: 36px;
    }

    .tech-card h3 {
        font-size: 18px;
    }

    .tech-card p {
        font-size: 13px;
    }

    .tech-image {
        height: 240px;
    }

    .advantage-feature {
        gap: 40px;
        margin-bottom: 60px;
    }

    .feature-visual {
        height: 250px;
    }

    .chipset-diagram {
        width: 220px;
        height: 220px;
    }

    .chip-core {
        width: 50px;
        height: 50px;
    }

    .chip-node {
        width: 35px;
        height: 35px;
    }

    .chip-node::before {
        width: 14px;
        height: 14px;
    }

    .chip-connection {
        opacity: 0.2;
    }

    .conn-1,
    .conn-3 {
        width: 2px;
    }

    .conn-2,
    .conn-4 {
        height: 2px;
    }

    .stats-visual {
        width: 220px;
        height: 220px;
    }

    .feature-number {
        font-size: 48px;
    }

    .feature-content h3 {
        font-size: 24px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .feature-specs {
        gap: 10px;
    }

    .spec-badge {
        padding: 6px 16px;
        font-size: 12px;
    }

    .advantages-grid {
        gap: 25px;
        margin-top: 50px;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .card-chip-icon {
        margin-bottom: 20px;
    }

    .card-chip-icon svg {
        width: 50px;
        height: 50px;
    }

    .advantage-card h3 {
        font-size: 20px;
    }

    .advantage-card p {
        font-size: 14px;
    }

    .products-carousel-wrapper {
        padding: 0 0 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

    .products-carousel {
        padding: 0 15px;
    }

    .product-card {
        flex: 0 0 calc(100vw - 50px);
        width: calc(100vw - 50px);
        max-width: 300px;
        min-width: 0;
        padding: 15px;
    }

    .product-image {
        height: 200px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-description {
        font-size: 13px;
    }

    .product-specs {
        font-size: 12px;
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        border-width: 1.5px;
    }

    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }

    .carousel-controls {
        padding: 0 10px;
        gap: 8px;
        margin-top: 20px;
    }

    .carousel-indicator {
        width: 5px;
        height: 5px;
        border-width: 1.5px;
    }

    .carousel-indicator.active {
        width: 16px;
    }

    .team-photo {
        width: 100%;
        max-width: 260px;
    }

    .team-name {
        font-size: 22px;
    }

    .team-title {
        font-size: 13px;
    }

    .contact-quick-info h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .quick-contact-item {
        padding: 15px;
        gap: 12px;
    }

    .quick-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .quick-icon {
        width: 32px;
        height: 32px;
    }

    .quick-value {
        font-size: 13px;
    }

    .contact-support-banner {
        padding: 20px;
    }

    .support-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .contact-form-section {
        padding: 25px 15px;
    }

    .form-header h3 {
        font-size: 22px;
    }

    .form-header p {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea,
    .contact-form select {
        padding: 8px 15px;
        font-size: 14px;
    }

    .contact-form button {
        padding: 10px 20px;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .footer {
        padding: 50px 0 25px;
    }

    /* .footer-section {
        margin-bottom: 30px;
    } */

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 25px;
        font-size: 12px;
    }

    .capability {
        padding: 20px 15px;
    }

    .capability-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .capability-icon {
        width: 36px;
        height: 36px;
    }

    .capability-text strong {
        font-size: 18px;
    }

    .capability-text span {
        font-size: 12px;
    }
}


/* ========================================
   HERO OPTION 2: Full-Screen Carousel
   ======================================== */

.hero-option-2 {
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

/* Image Carousel Background */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomIn 8s ease-in-out infinite;
}

.carousel-slide.active .slide-image {
    animation: zoomIn 8s ease-in-out infinite;
}

@keyframes zoomIn {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.slide-content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease-in-out 0.5s;
}

.carousel-slide.active .slide-content {
    opacity: 1;
}

.slide-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Dark Overlay */
.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

#particlesCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Centered Content */
.hero-content-centered {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: clamp(20px, 3vh, 35px);
}

/* Pulse Badge */
.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(59, 111, 229, 0.2);
    border: 1px solid #3b6fe5;
    color: #3b6fe5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0;
    animation: badgePulse2 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.badge-icon {
    animation: iconRotate 3s linear infinite;
}

@keyframes badgePulse2 {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 111, 229, 0.6);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(45, 90, 192, 0);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Large Title with Word Animation */
.hero-title-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordFadeIn 0.8s ease-out forwards;
}

.title-word.highlight {
    color: #3b6fe5;
    position: relative;
}

.title-word.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f0433c;
    animation: underlineExpand 0.6s ease-out 0.3s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.title-word[data-word="0"] {
    animation-delay: 0.1s;
}

.title-word[data-word="1"] {
    animation-delay: 0.2s;
}

.title-word[data-word="2"] {
    animation-delay: 0.3s;
}

.title-word[data-word="3"] {
    animation-delay: 0.4s;
}

.title-word[data-word="4"] {
    animation-delay: 0.5s;
}

.title-word[data-word="5"] {
    animation-delay: 0.6s;
}

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

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

/* Large Subtitle */
.hero-subtitle-large {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 800px;
    animation: fadeIn 1s ease-out 0.8s both;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 0;
    animation: fadeIn 1s ease-out 1s both;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary.btn-large:hover .btn-ripple {
    animation: ripple 0.6s ease-out;
}

/* Stats Grid */
.hero-stats-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 1.2s both;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 111, 229, 0.45);
    padding: 20px 25px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    flex: 0 1 auto;
    border-radius: 4px;
}

.stat-card:hover {
    background: rgba(59, 111, 229, 0.18);
    border-color: #3b6fe5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 111, 229, 0.4);
}


.stat-card .stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stat-value.counter {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #3b6fe5;
    line-height: 1;
    margin-bottom: 0;
    display: block;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.stat-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 111, 229, 0.16);
    border: 1.5px solid rgba(59, 111, 229, 0.45);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
    background: rgba(59, 111, 229, 0.2);
    border-color: #3b6fe5;
    transform: scale(1.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(5deg);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(59, 111, 229, 0.7);
    color: #3b6fe5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-nav-btn:hover {
    background: #3b6fe5;
    color: #000;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border: 2px solid #3b6fe5;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot.active {
    background: #3b6fe5;
    width: 32px;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #3b6fe5;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #3b6fe5, transparent);
    position: relative;
    animation: scrollArrow 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #3b6fe5;
}

@keyframes scrollArrow {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-centered {
        padding: 100px 0 40px;
        gap: 25px;
    }

    .hero-title-large {
        font-size: 56px;
    }

    .hero-stats-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-card {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .hero-option-2 {
        height: fit-content;
        min-height: unset;
    }

    .hero-content-centered {
        padding: 160px 0 80px;
        gap: 18px;
        height: fit-content;
        min-height: unset;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 10px;
        gap: 6px;
    }

    .badge-icon {
        width: 12px;
        height: 12px;
    }

    .hero-title-large {
        font-size: 32px;
        gap: 6px;
        line-height: 1.2;
    }

    .title-word {
        font-size: 32px;
    }

    .hero-subtitle-large {
        font-size: 14px;
        padding: 0 20px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-stats-grid {
        display: none;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }

    .stat-card {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        gap: 12px;
    }

    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }

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

    .stat-label {
        font-size: 12px;
    }

    .slide-title {
        font-size: 28px;
    }

    .scroll-down {
        right: 15px;
        bottom: 15px;
        font-size: 11px;
    }
    .product-badge{
        font-size: 10px;
        padding: 4px 12px;
    }
    .product-content {
        padding: 15px 0 0 0;
    }
    .product-card h3{
        font-size: 18px;
    }
    .product-desc {
        font-size: 12px;
        margin-bottom: 10px;
    }

    /*  .scroll-arrow {
        width: 20px;
        height: 20px;
    } */

    .carousel-nav {
        bottom: 12px;
        gap: 10px;
        padding: 0 12px;
    }

    .carousel-nav-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
        border-width: 1px;
    }

    .carousel-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-dots {
        gap: 6px;
    }

    .carousel-dots .dot {
        width: 6px;
        height: 6px;
        border-width: 1.5px;
    }

    .carousel-dots .dot.active {
        width: 18px;
    }
}

@media (max-width: 576px) {
    .hero-content-centered {
        /*  padding: 70px 0 25px; */
        gap: 15px;
    }

    .hero-title-large {
        font-size: 28px;
        gap: 5px;
    }

    .title-word {
        font-size: 28px;
    }

    .hero-subtitle-large {
        font-size: 13px;
        padding: 0 15px;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .stat-card {
        padding: 10px 14px;
        gap: 10px;
    }

    .stat-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
    }

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

    .stat-label {
        font-size: 11px;
    }

    .carousel-nav {
        bottom: 10px;
        gap: 8px;
        padding: 0 10px;
    }

    .carousel-nav-btn {
        width: 28px;
        height: 28px;
        padding: 5px;
        border-width: 1px;
    }

    .carousel-nav-btn svg {
        width: 14px;
        height: 14px;
    }

    .carousel-dots {
        gap: 5px;
    }

    .carousel-dots .dot {
        width: 5px;
        height: 5px;
        border-width: 1.5px;
    }

    .carousel-dots .dot.active {
        width: 16px;
    }
}
