/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #0b0b0f;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 15, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    margin: -20px 0;
    margin-left: -2.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: #fff !important;
    color: #0b0b0f !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: opacity 0.3s !important;
}

.nav-cta:hover {
    opacity: 0.85;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    font-weight: 500;
}

.hero-right h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

.accent {
    background: linear-gradient(135deg, #4da8da, #a77bca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-right p {
    font-size: 1.05rem;
    color: #888;
    max-width: 400px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-primary {
    padding: 0.85rem 2rem;
    background: #fff;
    color: #0b0b0f;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: all 0.3s;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-secondary {
    padding: 0.85rem 2rem;
    border: 1px solid #333;
    color: #ccc;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #666;
    color: #fff;
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #444;
    padding-right: 2rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS COMMON ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #555;
    display: block;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

/* ===== SERVICES ===== */
.services {
    padding: 6rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.service-item:hover {
    padding-left: 1rem;
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: #444;
    font-weight: 500;
    min-width: 30px;
    padding-top: 0.3rem;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expand-icon {
    font-size: 1.2rem;
    color: #555;
    transition: transform 0.3s;
    font-weight: 300;
}

.service-item.active .expand-icon {
    transform: rotate(45deg);
    color: #4da8da;
}

.service-content p {
    font-size: 0.9rem;
    color: #777;
    max-width: 500px;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-top: 0;
}

.service-item.active .service-details {
    max-height: 400px;
    padding-top: 1.2rem;
}

.service-details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-details li {
    font-size: 0.85rem;
    color: #999;
    padding-left: 1rem;
    position: relative;
}

.service-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4da8da;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
    cursor: pointer;
}

/* ===== BUILDS ===== */
    padding: 6rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.builds-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.builds-scroll::-webkit-scrollbar {
    height: 4px;
}

.builds-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.builds-scroll::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.build-card {
    min-width: 300px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #131318;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.build-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.build-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #1a1a22, #0f0f14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.85rem;
}

.build-info {
    padding: 1.5rem;
}

.build-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.build-info p {
    font-size: 0.8rem;
    color: #666;
}

/* ===== ABOUT ===== */
.about {
    padding: 6rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.about-text {
    max-width: 650px;
}

.about-lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem;
    background: #131318;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
}

.contact-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.contact-right p {
    color: #888;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #fff;
}

.contact-icon {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 2.5rem 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #444;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-right {
        align-items: center;
    }

    .hero-right p {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 11, 15, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 1.2rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .services,
    .builds,
    .about,
    .contact {
        padding: 4rem 1.5rem;
    }

    .hero-logo {
        max-width: 300px;
    }
}
