:root {
    --primary: #d4ff00;
    --bg: #050505;
    --text: #ffffff;
    --grid: rgba(255, 255, 255, 0.05);
    --page-max-width: 1440px;
    --page-padding: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* Latar Belakang Kotak-Kotak (Grid) - hanya di area hero */
.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Navigasi - sticky di atas saat scroll */
nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo span {
    color: var(--primary);
}

.location {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.6;
}

.location span {
    color: white;
    opacity: 1;
    margin-left: 10px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.login-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.login-btn:hover {
    background: var(--primary);
    color: #050505;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.menu-btn {
    background: #1a1a1a;
    border: none;
    color: white;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: 0.3s;
}

.menu-btn:hover {
    background: #333;
}

/* Hero wrapper - bar di dalam hero, ikut scroll; konten dibatasi lebar + padding */
.hero-wrapper {
    position: relative;
    min-height: 90vh;
    padding-left: max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    padding-right: max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    height: calc(100vh - 180px);
}

.hero-left {
    max-width: 480px;
}

.hero-left .tagline {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-left h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
    transition: opacity 0.2s;
}

.cta:hover {
    opacity: 0.9;
}



@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}


/* Robot Styling */
.hero-center {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 500px;
    z-index: 2;
}

.robot-gradient-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.15) 0%, rgba(212, 255, 0, 0.05) 40%, transparent 70%);
    border-radius: 150%;
    animation: gradientPulse 4s ease-in-out infinite;
    z-index: 1;
}

.robot-image {
    width: 130%;
    filter: drop-shadow(0 0 50px rgba(212, 255, 0, 0.1));
    position: relative;
    z-index: 2;
   
}

@keyframes gradientPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes floatParallax {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(5px);
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
    }
    75% {
        transform: translateY(-20px) translateX(3px);
    }
}

.hero-right {
    text-align: right;
    max-width: 350px;
}

.since {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-bottom: 24px;
}

.social-label {
    font-size: 0.68rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.social-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.social-box:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

.info-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 16px;
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.9;
}

.info-box strong {
    color: var(--primary);
}

/* Gradient hanya di area robot (tengah) */
.hero-feet-gradient {
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    width: 50%;
    height: 55%;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.5) 25%, var(--bg) 100%);
    z-index: 6;
    pointer-events: none;
}

/* Bottom feature bar */
/* Bar di dalam hero, menutupi kaki robot - ikut scroll */
.hero-bottom-bar {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 8;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 3px;
    /* background: #0d0d0d; */
    /* padding: 0px 47px 22px 40px; */
    /* border-top: 1px solid rgba(255, 255, 255, 0.05);*/
    position: relative;
} 

.hero-bottom-bar .item {
    flex: 1;
    max-width: 280px;
    padding: 16px 20px 20px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    background: #1a1a1a;
    border-radius: 0 0 22px 22px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-bottom-bar .item:hover,
.hero-bottom-bar .item.auto-hover {
    color: var(--primary);
    background: #1f1f1f;
}

.hero-bottom-bar .item.active,
.hero-bottom-bar .item.auto-hover {
    color: var(--primary);
    background: #1f1f1f;
}

.hero-bottom-bar .item.active::after,
.hero-bottom-bar .item.auto-hover::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 5px solid var(--primary);
}

.cursor-animation {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-animation.active {
    opacity: 1;
}

.cursor-animation::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: cursorPulse 1s ease-in-out infinite;
}

.cursor-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

@keyframes cursorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Popup Menu */
.overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    backdrop-filter: blur(20px);
    z-index: 100;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
}

.overlay.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.overlay ul {
    list-style: none;
}

.overlay ul li {
    margin: 20px 0;
}

.overlay ul li a {
    color: white;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 400;
    transition: 0.3s;
}

.overlay ul li a:hover {
    color: var(--primary);
    padding-left: 20px;
}

/* What We Do Section */
.section-what-we-do {
    padding: 120px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    background: white;
    position: relative;
    overflow: hidden;
}

.section-what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.container-what-we-do {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.5px;
    color: #050505;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(5, 5, 5, 0.7);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    opacity: 0.9;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 32px 24px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    transform: translateY(0);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 255, 0, 0.1);
    border: 1px solid rgba(212, 255, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .card-icon {
    background: rgba(212, 255, 0, 0.15);
    border-color: var(--primary);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #050505;
    letter-spacing: -0.3px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(5, 5, 5, 0.7);
    opacity: 0.9;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsivitas */
@media (max-width: 1024px) {
    .hero-center {
        width: 300px;
    }
    .hero-left h1 {
        font-size: 2.5rem;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px 0;
    }
    .hero-right {
        text-align: center;
        margin-top: 50px;
    }
    .social-icons {
        justify-content: center;
    }
   
    .hero-bottom-bar {
        flex-wrap: wrap;
        padding: 32px 20px 16px;
        gap: 3px;
    }
    .hero-bottom-bar .item {
        flex: 1 1 calc(50% - 4px);
        max-width: none;
        border-radius: 0 0 14px 14px;
        padding: 14px;
        font-size: 0.75rem;
    }
    
    .section-what-we-do {
        padding: 80px var(--page-padding);
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 0.95rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 28px 20px;
    }

    .robot-gradient-bg {
        width: 400px;
        height: 400px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Navbar Mobile */
    nav {
        padding: 16px var(--page-padding);
    }
    
    .logo {
        font-size: 0.95rem;
    }
    
    .location {
        font-size: 0.65rem;
        display: none;
    }
    
    .login-btn {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    /* Hero Mobile */
    .hero-wrapper {
        min-height: 100vh;
        padding-left: var(--page-padding);
        padding-right: var(--page-padding);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 0;
        height: auto;
        min-height: calc(100vh - 100px);
    }
    
    .hero-left {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-left .tagline {
        font-size: 0.6rem;
        margin-bottom: 12px;
    }
    
    .hero-left h1 {
        font-size: 1.8rem;
        margin-bottom: 24px;
        line-height: 1.2;
    }
    
    .cta {
        font-size: 0.9rem;
    }
    
    .hero-center {
        position: relative;
        width: 280px;
        left: auto;
        top: auto;
        transform: none;
        margin: 20px auto;
    }
    
    .robot-gradient-bg {
        width: 350px;
        height: 350px;
    }
    
    .robot-image {
        width: 100%;
    }
    
    .hero-right {
        text-align: center;
        max-width: 100%;
        margin-top: 30px;
    }
    
    .since {
        font-size: 0.7rem;
        margin-bottom: 16px;
    }
    
    .social-label {
        font-size: 0.65rem;
    }
    
    .info-box {
        font-size: 0.75rem;
        padding: 12px 14px;
    }
    
    .hero-bottom-bar {
        position: relative;
        bottom: auto;
        flex-direction: column;
        gap: 8px;
        padding: 20px var(--page-padding);
    }
    
    .hero-bottom-bar .item {
        flex: none;
        max-width: 100%;
        border-radius: 8px;
        padding: 12px;
        font-size: 0.7rem;
    }
    
    /* What We Do Mobile */
    .section-what-we-do {
        padding: 60px var(--page-padding);
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 32px;
        padding: 0;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* About Section Mobile */
    .section-about {
        padding: 60px var(--page-padding);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-intro {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding-top: 32px;
        margin-top: 32px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        font-size: 1.3rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    /* Clients Section Mobile */
    .section-clients {
        padding: 60px var(--page-padding);
        min-height: auto;
    }
    
    .clients-content {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    
    .clients-left {
        max-width: 100%;
        width: 100%;
    }
    
    .clients-title {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .clients-right {
        max-width: 100%;
        width: 100%;
    }
    
    .dashboard-svg {
        max-width: 100%;
    }
    
    /* Contact Form Mobile */
    .section-contact-form {
        padding: 60px var(--page-padding);
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form {
        padding: 24px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .form-group input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px var(--page-padding);
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-subscribe {
        margin-bottom: 24px;
    }
    
    .subscribe-title {
        font-size: 0.95rem;
    }
    
    .subscribe-description {
        font-size: 0.8rem;
    }
    
    .subscribe-input {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    
    .subscribe-btn {
        padding: 10px 16px;
        font-size: 1.1rem;
    }
    
    .footer-brand {
        gap: 16px;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    .footer-heading {
        font-size: 0.95rem;
    }
    
    .footer-links li a,
    .footer-contact li {
        font-size: 0.85rem;
    }
    
    /* Overlay Mobile */
    .overlay {
        padding: 60px 40px;
    }
    
    .overlay ul li a {
        font-size: 2rem;
    }
    
    .close-menu {
        top: 20px;
        right: 30px;
        font-size: 2.5rem;
    }
}

/* About Section */
.section-about {
    padding: 120px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.container-about {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 32px;
}

.about-text {
    margin-bottom: 48px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

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

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 255, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(212, 255, 0, 0.1);
    border: 1px solid rgba(212, 255, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .section-about {
        padding: 80px var(--page-padding);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding-top: 32px;
        margin-top: 32px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .feature-item {
        padding: 24px;
        gap: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item:hover {
        transform: translateX(0);
        transform: translateY(-4px);
    }
}

/* Clients Section */
.section-clients {
    padding: 120px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    background: var(--bg);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.section-clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.clients-content {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    gap: 60px;
}

.clients-left {
    flex: 1;
    max-width: 50%;
}

.clients-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.clients-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.clients-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

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

.clients-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.clients-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.clients-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: fit-content;
}

.marquee-right {
    animation: marqueeRight 30s linear infinite;
}

.marquee-left {
    animation: marqueeLeft 30s linear infinite;
}

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

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

.client-logo {
    flex-shrink: 0;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover {
    opacity: 1;
    border-color: rgba(212, 255, 0, 0.5);
    background: rgba(212, 255, 0, 0.1);
    color: var(--primary);
    transform: scale(1.05);
}

.clients-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 50%;
}

.dashboard-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Clients Section */
@media (max-width: 1024px) {
    .section-clients {
        padding: 80px var(--page-padding);
        min-height: auto;
    }
    
    .clients-content {
        flex-direction: column;
        gap: 60px;
        padding: 0;
    }
    
    .clients-left {
        max-width: 100%;
        width: 100%;
    }
    
    .clients-title {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .clients-right {
        max-width: 100%;
        width: 100%;
    }
    
    .dashboard-svg {
        max-width: 100%;
    }
    
    .clients-marquee-container {
        gap: 20px;
    }
    
    .marquee-track {
        gap: 30px;
    }
    
    .client-logo {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .clients-marquee-container {
        gap: 16px;
    }
    
    .clients-marquee-wrapper {
        padding: 15px 0;
    }
    
    .marquee-track {
        gap: 20px;
    }
    
    .marquee-right {
        animation-duration: 25s;
    }
    
    .marquee-left {
        animation-duration: 25s;
    }
    
    .client-logo {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .dashboard-svg {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: white;
    padding: 80px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.footer-container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 0;
}

.footer-section:last-child {
    flex: 1.5;
}

.footer-subscribe {
    margin-bottom: 32px;
}

.subscribe-title {
    font-size: 1rem;
    font-weight: 700;
    color: #050505;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.subscribe-description {
    font-size: 0.85rem;
    color: rgba(5, 5, 5, 0.6);
    margin-bottom: 16px;
    line-height: 1.5;
}

.subscribe-form {
    width: 100%;
}

.subscribe-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #050505;
    background: white;
    transition: all 0.3s ease;
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 255, 0, 0.1);
}

.subscribe-input::placeholder {
    color: rgba(5, 5, 5, 0.4);
}

.subscribe-btn {
    padding: 12px 20px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: #050505;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subscribe-btn:hover {
    background: #c4e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 255, 0, 0.3);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    margin: 0;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(5, 5, 5, 0.7);
    margin: 0;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050505;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(212, 255, 0, 0.05);
}

.social-link:hover {
    background: var(--primary);
    color: #050505;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #050505;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(5, 5, 5, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(5, 5, 5, 0.7);
    font-size: 0.9rem;
}

.footer-contact li i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 20px;
}

.footer-contact li a {
    color: rgba(5, 5, 5, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(5, 5, 5, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(5, 5, 5, 0.6);
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer {
        padding: 60px var(--page-padding);
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        gap: 24px;
    }
    
    .footer-section {
        flex: 1;
        min-width: 150px;
    }
    
    .footer-brand {
        gap: 16px;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.loading-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease-out;
}

.loading-logo i {
    font-size: 3rem;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.5px;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.loading-bar-container {
    margin-top: 40px;
    width: 300px;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(212, 255, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 5s linear forwards;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .loading-text {
        font-size: 2rem;
    }
    
    .loading-logo i {
        font-size: 2.5rem;
    }
    
    .loading-bar-container {
        width: 250px;
    }
    
    .loading-bar {
        height: 3px;
    }
    
    /* Additional Mobile Fixes */
    .hero-feet-gradient {
        display: none;
    }
    
    body {
        overflow-x: hidden;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Contact Form Section */
.section-contact-form {
    padding: 120px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    background: white;
    position: relative;
    overflow: hidden;
}

.section-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.container-contact-form {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #050505;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 1rem;
    color: rgba(5, 5, 5, 0.7);
    text-align: center;
    margin-bottom: 48px;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-left {
    width: 100%;
}

.contact-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-right {
    width: 100%;
    height: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #050505;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.form-group input {
    padding: 14px 16px;
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: #050505;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 255, 0, 0.1);
}

.form-group input::placeholder {
    color: rgba(5, 5, 5, 0.4);
}

.form-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary);
    color: #050505;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background: #c4e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 255, 0, 0.3);
}

.form-submit-btn i {
    font-size: 1.2rem;
}

/* Responsive Contact Form */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .section-contact-form {
        padding: 80px var(--page-padding);
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        gap: 32px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .map-container {
        min-height: 300px;
    }
}
