* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

html, body {
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fading-div {
    margin: 0 auto;
    color: white;
    padding: 20px;
    font-size: 20px;
    position: relative;
    /* Fading on both edges */
    -webkit-mask-image: linear-gradient(to right, 
        rgba(0, 0, 0, 0) 20%,     /* fully transparent at left edge */
        rgba(0, 0, 0, 1) 30%,    /* fully visible shortly after */
        rgba(0, 0, 0, 1) 70%,    /* fully visible before right edge */
        rgba(0, 0, 0, 0) 80%    /* fully transparent at right edge */
    );
    mask-image: linear-gradient(to right, 
        rgba(0, 0, 0, 0) 20%, 
        rgba(0, 0, 0, 1) 30%, 
        rgba(0, 0, 0, 1) 70%, 
        rgba(0, 0, 0, 0) 80%
    );
} 

/* Header */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Desktop: Center the nav links */
@media (min-width: 769px) {
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Sticky Contact Button */
.nav-contact-btn {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 24px;
    background: color(display-p3 0.8471 0.1804 0.1255);;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-contact-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.nav-contact-btn.visible {
    opacity: 1;
    visibility: visible;
}

.contact_nav {
    display:none;
}

/* Hide nav contact button on mobile */
@media (max-width: 768px) {
    .nav-contact-btn {
        display: none;
    }
    
    .nav-links.active .nav-contact-btn {
        display: block;
    }
    
    .contact_nav {
        display:block;
    }
    
    .nav-links.active {
        display:block;
    }
    
    .nav-links li {
        margin-top: 20px;	
    }
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.logo_img {
    width:120px;
    vertical-align: sub;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 60px;
    margin-right: -60px;
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

.menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: #333;
}

.menu-button:hover {
    color: #000;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-button {
        display: block;
    }
    
    .nav-links {
        display:none;
        position: fixed;
        top: 70px;
        right: 0%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        text-align: center;
        margin-right: 0px;
        margin-left: 0px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #333;
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:hover {
        color: #000;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 30px 0;
    text-align: center;
    background-image: url("./hero-geometric-bg3.png");
    background-size: cover;
    background-position: top;            
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 60px;
    color: color(display-p3 0.8471 0.1804 0.1255);
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 60px;
}

.btn {
    padding: 12px 32px 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: color(display-p3 0.8471 0.1804 0.1255);
    color: white;
    border: 2px solid color(display-p3 0.8471 0.1804 0.1255);
}

.btn-primary:hover {
    background: #f50103;
    border: 2px solid #f50103;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border: 2px solid #000;
    background: #000;
    color: white;
}

.btn-secondary:hover {
    background: transparent;
    color: #d50103;
    border: 2px solid #d50103; 
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .hero h1{
        margin-top: -10px;
        margin-bottom:40px;
        line-height: 1.3;
        font-size: 38px;
    }
    
    header {
        padding: 10px 10px 10px 10px;
    }
    
    .hero p {
        margin-bottom:50px;
    }
    
    .hero-buttons {
        align-items: center;
    }

    .btn {
        width: 49%;
        padding: 12px 20px 12px 20px;
        max-width: 250px;
    }
    
    .btn-secondary {
        background: transparent;
        color: #000;
        border: 2px solid #000;
    }
}

/* Trusted Companies Section */
.trusted {
    background-image: url("./hero-geometric-bg4.png");
    background-size: cover;
    background-position: top;
    padding-top: 10px;
}

.trusted-companies {
    margin-top: 0px;
    padding: 0;
}

.trusted-title {
    text-align:center;
    margin-top: 30px;
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.logos-scroll-container {
    width: 60%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.logos-scroll-container::before,
.logos-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.logos-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.logos-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.logos-scroll {
    display: flex;
    animation: scroll-logos 25s linear infinite;
    align-items: center;
    gap: 80px;
}

.company-logo {
    flex-shrink: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    min-width: 150px;
}

/* Create enough logos for seamless scrolling */
.logos-scroll::after {
    content: '';
    flex-shrink: 0;
    width: 80px;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Benefits Section - Enhanced with colors and icons */
.benefits {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0px;
    margin-top: 60px;
}

.benefit-card {
    padding: 50px 40px 40px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border-right:1px solid #dddddd;
}

.benefit-card:last-child {
    border:none;
}

/* Icon containers with subtle colors */
.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid color(display-p3 0.8471 0.1804 0.1255);
}

/* Secure AI - Deep blue theme */
.benefit-card:nth-child(1) .benefit-icon {
    background: #fff;
}

/* Simplified Management - Soft green theme */
.benefit-card:nth-child(2) .benefit-icon {
    background: #fff;
}

/* Full Control - Warm orange theme */
.benefit-card:nth-child(3) .benefit-icon {
    background: #fff;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* SVG Icons */
.benefit-icon svg {
    width: 40px;
    height: 40px;
}

/* Icon colors to match themes */
.benefit-card:nth-child(1) .benefit-icon svg {
    color: color(display-p3 0.8471 0.1804 0.1255);
}

.benefit-card:nth-child(2) .benefit-icon svg {
    color: color(display-p3 0.8471 0.1804 0.1255);
}

.benefit-card:nth-child(3) .benefit-icon svg {
    color: color(display-p3 0.8471 0.1804 0.1255);
}

/* How it works section */
.how-it-works {
    padding: 100px 0 0 0;
    background-image: url("./hero-geometric-bg4.png");
    background-size: cover;
    background-position: top;  
    color: #000000;
    text-align: center;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: 000000;
}

.system-image {
    max-width: 100%;
    height: auto;
    margin: 60px 0;
    border-radius: 20px;
}

.comparison {
    padding: 100px 0;
    color: #000000;
    max-width: 900px;
    margin: 0 auto;
}

.table-header {
    text-align: center;
    margin-bottom: 60px;
}

.table-title {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.003em;
}

.table-subtitle {
    font-size: 21px;
    color: #777;
    font-weight: 400;
    letter-spacing: 0.011em;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 0.4fr 1fr 0.8fr;
    gap: 1px;
    overflow: hidden;
    max-width: 900px;
    margin:auto;
}

.solution-card {
    padding: 0;
    position: relative;
}

.anyway-card {
    border: 1px solid #d2d2d7;
    padding-bottom:60px;
    border-radius: 10px;
    background: rgba(138, 25, 27, 0.1);
}

.cloud-card {
}

.card-header {
    background: #e0e0e0;
    padding: 70px 32px 32px;
    text-align: center;
    border-bottom: 1px solid #f5f5f7;
}

.solution-title img {
    vertical-align: sub;
    margin-right: 10px;
}

.anyway-card .card-header {
    background: #d50103;
    border-bottom: 1px solid #e8f4ff;
    border-radius: 9px 9px 0 0; 
    padding: 50px 32px 50px 32px;
}

.cloud-card .card-header {
    border-radius: 0px 9px 0px 0px;
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    padding: 27px 32px 25px 32px;
}

.title-card .card-header {
    background-color: transparent;
}

.solution-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}

.anyway-title {
    color: #ffffff;
}

.cloud-title {
    color: #66666b;
}

.category-title {
    opacity: 0;
}

.category-subtitle {
    opacity: 0;
}

.solution-subtitle {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
}

.anyway-subtitle {
    color: #ffffff;
}

.cloud-subtitle {
    color: #919196;
}

.feature-item {
    padding: 24px 32px;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item:last-child {
    border-bottom: none;
}

.title-card .feature-item {
}

.title-card .features-list {
    border-left: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 10px 0px 0px 10px;
    background: #f8f8f8;
    text-align:left;
}

.cloud-card .feature-item {
    border-right: 1px solid #e5e5e5;
    background: #f8f8f8;
}

.cloud-card .feature-item:last-child {
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0px 0px 10px 0px;
}

.cloud-card .feature-title {
    color: #86868b;
}

.cloud-card .feature-description {
    color: #a1a1a6;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon {
    color: #30d158;
}

.x-icon {
    color: #aaaaaa;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 17px;
    font-weight: 590;
    color: #1d1d1f;
    margin-bottom: 4px;
    letter-spacing: -0.022em;
}

.bis {
    font-size: 17px;
    font-weight: 590;
    color: #000;
    margin-bottom: 4px;
    letter-spacing: -0.022em;
}

.feature-description {
    font-size: 15px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.016em;
    line-height: 1.4;
}

.anyway-card .feature-description {
    color: #515154;
}

.premium-badge {
    display: none;
}

@media (max-width: 768px) {
    .benefit-card {
        border:none;
    }
}

@media (max-width: 768px) {
    body {
        padding: 5px 0px 0px 0px;
    }
    
    .comparison {
        padding-left:16px;
        padding-right:16px;
    }

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

    .table-subtitle {
        font-size: 19px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        background: transparent;
    }
    
    .solution-card.title-card {
        display: none;
    }
    
    .solution-card {
        border-radius: 18px;
        overflow: hidden;
    }

    .card-header,
    .feature-item {
        padding: 24px;
    }

    .cloud-card .card-header {
        border-radius: 9px 9px 0px 0px;
    }

    .solution-title {
        font-size: 24px;
    }
}

/* Team Section */
.team {
    padding: 100px 0;
    background-image: url("./hero-geometric-bg4.png");
    background-size: cover;
    background-position: top;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 60px;
}

.team-member {
    text-align: center;
    padding: 40px 40px;
    border-right: 1px solid #dddddd;
}

.team-member h3 {
    color : color(display-p3 0.8471 0.1804 0.1255);
}

.team-member:last-child {
    border:none;
    border-radius: 0px 5px 5px 0px;
}

.team-member:first-child {
    border-radius: 5px 0px 0px 5px;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #ddd;
    display: block;
}

.gauthier {
    background-image: url('gauthier.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.geovani {
    background-image: url('geovani.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.rachid {
    background-image: url('rachid.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-member p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px 0;
    }

    .comparison-category,
    .comparison-anyway,
    .comparison-cloud {
        padding: 5px 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .benefits,
    .features,
    .team,
    .how-it-works {
        padding: 60px 0;
    }

    .trusted-companies {
        margin-top: 0px;
        padding: 30px 0;
    }

    .logos-scroll {
        gap: 50px;
        animation-duration: 10s;
    }
    
    .trusted-title {
        margin-top: 0px;
    }
    
    .logos-scroll-container {
        width: 90%;
    }
    
    .company-logo {
        min-width: 120px;
        font-size: 1rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .benefit-icon svg {
        width: 35px;
        height: 35px;
    }
}

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

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

.benefit-card,
.feature-card,
.team-member {
    animation: fadeInUp 0.6s ease forwards;
}

.network-container {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20%;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg);
}

.gpu-plane {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 70%;
    height: 800px;
    transform-style: preserve-3d;
    transform: translateZ(-300px);
    rotate: -30deg;
}

.gpu-chip {
    position: absolute;
    width: 8vw;
    max-width: 100px;
    height: 8vw;
    max-height: 100px;
    background-image: url('./gpu2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position: center;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: #555555;
    font-family: Helvetica, sans-serif;
    opacity: 1;
    transform: scale(0);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 2;
    transform-style: preserve-3d;
    filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.5)); 
}

/* Create a class to trigger the animation */
.gpu-chip.animate-in {
    animation: chipAppear 1s ease-out forwards;
}

.gpu-chip:hover {
    filter: drop-shadow(0 50px 15px rgba(0, 0, 0, 0.8)); 
    transform: scale(1.05) translateZ(10px);
}

.connection-segment {
    position: absolute;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    box-shadow: 
        0 0 8px rgba(0, 0, 0, 0.6),
        0 0 16px rgba(0, 0, 0, 0.3);
    border-radius: 1px;
    opacity: 0;
    z-index: 1;
}

.connection-segment.materialized {
    background: linear-gradient(90deg, 
        rgba(37, 144, 192, 0.8) 0%,
        rgba(0, 114, 162, 0.01) 40%,
        rgba(0, 114, 162, 0.01) 60%,
        rgba(37, 144, 192, 0.8) 100%);
}

.connection-segment::before,
.connection-segment::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: opacity 1s ease-in-out;
}

.connection-segment::before {
    background: #000;
    opacity: 1;
}

.connection-segment::after {
    background: linear-gradient(
        90deg,
        rgba(37, 144, 192, 0.8) 0%,
        rgba(0, 114, 162, 0.01) 40%,
        rgba(0, 114, 162, 0.01) 60%,
        rgba(37, 144, 192, 0.8) 100%
    );
    opacity: 0;
}

.connection-segment.materialize::before {
    opacity: 0;
}

.connection-segment.materialize::after {
    opacity: 1;
}

.data-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ff0000, #ff0000);
    border-radius: 50%;
    animation: dataPulse 0.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    z-index: 1;
}

@keyframes chipAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateZ(0px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(0px);
    }
}

@keyframes dataPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    10% {
        transform: scale(1);
        opacity: 1;
    }
    90% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* 3D Chip positioning - creating depth layers */
/* Front row (closest to viewer) */
.chip-1 { 
    top: 75%; 
    left: 15%; 
    animation-delay: 0s; 
}

.chip-2 { 
    top: 75%; 
    left: 70%; 
    animation-delay: 0s; 
}

/* Middle row */
.chip-3 { 
    top: 40%; 
    left: 85%; 
    animation-delay: 0s; 
}

.chip-4 { 
    top: 15%; 
    left: 70%; 
    animation-delay: 0s; 
}

/* Back row (furthest from viewer) */
.chip-5 { 
    top: 0%; 
    left: 40%; 
    animation-delay: 0s; 
}

.chip-6 { 
    top: 15%; 
    left: 15%; 
    animation-delay: 0s; 
}

.chip-7 { 
    top: 50%; 
    left: 0%;
    animation-delay: 0s; 
}

/* Center middle */
.chip-8 { 
    top: 90%; 
    left: 40%; 
    animation-delay: 0s; 
}

.AI {
    position: relative;
    display: inline-block;
    border-bottom: 0px solid #333;
    border-left: 0px solid #333;
    border-radius: 4px;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
    font-family: Helvetica, sans-serif;
    filter: drop-shadow(0 50px 15px rgba(0, 0, 0, 0.8)); 
    cursor: pointer;
    transform-style: preserve-3d;
    margin:auto;
    width: 15vw;
    height: 15vw;
    margin-top: 33%;
    vertical-align: middle;
    line-height: 240%;
    max-width:250px;
    max-height:250px;
    text-align: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.AI.materialized {
    opacity: 1;
}

.feature-h3 {
    color: #fff;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
}

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

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

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

.footer-about p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: color(display-p3 0.8471 0.1804 0.1255);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    color: #aaa;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-info a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: color(display-p3 0.8471 0.1804 0.1255);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: color(display-p3 0.8471 0.1804 0.1255);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #333;
    background: #2a2a2a;
    color: #fff;
    border-radius: 6px;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-input:focus {
    outline: none;
    border-color: color(display-p3 0.8471 0.1804 0.1255);
}

.newsletter-btn {
    padding: 12px 24px;
    background: color(display-p3 0.8471 0.1804 0.1255);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #f50103;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    } 
}

.gpu-plane-replace {
    display:none;
}

@media (max-width: 1150px) {
    .network-container {
        display:none;
    }
    
    .gpu-plane-replace {
        display:block;
        width: 95%;
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .AI {
        margin-top: 45%;
        margin-left:0%;
    }
}

@media (max-width:1000px) {
    .gpu-plane {
        height:600px;
    }
    
    .AI {
        margin-top: 40%;
        margin-left:0%;
    }
}

@media (max-width: 850px) {
    .gpu-plane {
        height:520px;
    }
    
    .feature-card {
        border: none;
    }
}

@media (max-width: 768px) {
    .gpu-plane {
        height:430px;
    }
}

@media (max-width: 650px) {
    .gpu-plane {
        height:350px;
    }
    
    .team-member {
        border:none;
    }
}

@media (max-width: 568px) {
    .gpu-plane {
        height:450px;
        width:90%
    }

    footer {
        padding: 60px 0 30px;
    }

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

    .footer-about {
        max-width: 100%;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .gpu-plane {
        height:300px;
    }
}

.features {
    padding: 100px 0;
    background: #ffffff;
    color: #000000;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #fff;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: color(display-p3 0.8471 0.1804 0.1255);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: #fafafa;
    transform: translateY(-2px);
}

.feature_head {
    margin-bottom: 20px;
}

.feature_head h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.feature_content {
    text-align: left;
}

.feature_content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 850px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #333;
}

h2 {
    color: #333;
    margin-bottom: 24px;
    font-size: 28px;
}

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

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: color(srgb 0.9254 0 0.0039);
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    background: #10b981;
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    display: none;
    background: #ef4444;
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

.message.show {
    display: block;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#deploy {
  background-color: #eeeeee;
  color: #000;
  font-weight:500;
  font-size: 14px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  padding: 8px 14px;
  transition: all 0.3s ease;
}

#deploy:hover {
    cursor: pointer;
    background-color: #dddddd;
    border: 1px solid #cccccc;
    color: #000000;
}
/*.icon {*/
/*  color: ffffff;*/
/*}*/
/*.dev-docs:hover {*/
/*  background: #000;*/
/*  color: #fff;*/
/*  cursor: pointer;*/
/*}*/

/*.docs {*/
/*    max-width: 1200px;*/
/*    margin: 40px auto;*/
/*    padding: 20px;*/
/*}*/
/**/
/*.docs h1 {*/
/*  text-align: center;*/
/*  font-size: 1.8rem;*/
/*  margin-bottom: 1rem;*/
/*  color: #111827;*/
/*}*/
/**/
/*.command-block {*/
/*  margin-bottom: 1.5rem;*/
/*}*/
/**/
/*.command-block h2 {*/
/*  margin-bottom: 0.4rem;*/
/*  font-size: 1.1rem;*/
/*}*/
/**/
/*.command-block .node0 {*/
/*  font-weight:bold;*/
/*  color: #004e98;*/
/*}*/
/**/
/*.command-block .node1 {*/
/*  font-weight:bold;*/
/*  color: #f95738;*/
/*}*/
/**/
/*.command-block .node2 {*/
/*  font-weight:bold;*/
/*  color: #1a936f;*/
/*}*/
/**/
/*pre {*/
/*  color: #555555;*/
/*  background: #f9f9f9;*/
/*  padding: 10px 12px;*/
/*  border-radius: 8px;*/
/*  border: 1px solid #f0f0f0;*/
/*  font-family: monospace;*/
/*  font-size: 0.95rem;*/
/*  margin: 0.3rem auto 0.8rem auto;*/
/*}*/
/**/
/*.example-title {*/
/*  margin: 0.2rem 0 0.3rem 0;*/
/*  color: #6b7280;*/
/*  font-size: 0.9rem;*/
/*}*/
/**/
/*@media (max-height: 700px) {*/
/*  .docs {*/
/*    transform: scale(0.95);*/
/*    transform-origin: top center;*/
/*  }*/
/*}*/

/*#deploy_body {*/
/*  background-image: url("./hero-geometric-bg3.png");*/
/*  background-size: cover;*/
/*  background-position: top;*/
/*}*/
