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

:root {
    --green: #32cb0c;
    --black: #000000;
    --dark-gray: #1c1c1b;
    --beige: #e4d8bf;
    --cream: #fff3e1;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--green);
}

.cta-green {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-green:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 856px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.hero-title {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

/* Main Intro */
.main-intro {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.intro-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.intro-col p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--black);
}

/* People Gallery */
.people-gallery {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 40px;
    padding: 0 80px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.gallery-img {
    width: 394px;
    height: 358px;
    border-radius: 8px;
    overflow: hidden;
}

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

.gallery-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Creativity Section */
.creativity-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title-black {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--black);
}

.section-title-black.center {
    text-align: center;
}

.content-single {
    max-width: 700px;
}

.content-single p {
    font-size: 15px;
    line-height: 1.8;
}

/* USP Icons */
.usp-icons {
    padding: 100px 0;
    background: var(--white);
}

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

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

.usp-icon {
    margin-bottom: 30px;
}

.usp-item p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

/* Join Section */
.join-section {
    padding: 100px 0;
    background: var(--white);
}

.join-content {
    max-width: 700px;
}

.join-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-download {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
}

/* Stats Counter */
.stats-counter {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--beige);
    z-index: 0;
}

.stats-counter .container {
    position: relative;
    z-index: 10;
}

.stats-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.counter-display {
    margin: 40px 0;
}

.counter-number {
    font-size: 120px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.counter-label {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

/* Join Us CTA */
.join-us-cta {
    padding: 100px 0;
    background: var(--white);
}

.center-text {
    text-align: center;
    font-size: 15px;
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Portfolio Grid */
.portfolio-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
}

.portfolio-item-card {
    position: relative;
    background: var(--white);
}

.portfolio-item-card.black-bg {
    background: var(--black);
}

.portfolio-img {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.portfolio-badge {
    position: absolute;
    top: 30px;
    right: 30px;
}

.portfolio-badge img {
    width: 80px;
    height: auto;
}

.portfolio-text {
    padding: 60px;
}

.black-bg .portfolio-text {
    color: var(--white);
}

.portfolio-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.portfolio-more {
    display: inline-block;
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    padding: 80px;
    background: var(--cream);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
}

/* Main Footer */
.main-footer {
    background: var(--black);
    padding: 40px 0;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    display: block;
    width: 34px;
    height: 34px;
}

.footer-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.2);
}

.footer-copyright {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .container, .nav-container, .container-wide {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .intro-columns {
        gap: 50px;
    }
    
    .usp-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .intro-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portfolio-grid-section {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
    }
    
    .gallery-scroll {
        padding: 0 40px;
    }
    
    .section-title, .section-title-black {
        font-size: 32px;
    }
    
    .counter-number {
        font-size: 80px;
    }
}

@media (max-width: 428px) {
    .container, .nav-container, .container-wide {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title, .section-title-black {
        font-size: 28px;
    }
    
    .gallery-scroll {
        padding: 0 20px;
    }
    
    .gallery-img {
        width: 300px;
        height: 280px;
    }
    
    .footer-columns {
        padding: 40px 20px;
    }
    
    .portfolio-text {
        padding: 40px 20px;
    }
    
    .counter-number {
        font-size: 60px;
    }
}
