/* ========== HEADER LOGO OVERRIDE ========== */
.header-logo .logo-dark { display: block !important; }
.header-logo .logo-white { display: none !important; }

/* ========== PAGE HERO ========== */
.page-hero {
    background: rgba(150,144,162,0.06);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    min-height: 100vh;
}

.hero-left {
    background: rgba(150,144,162,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10vh 0;
    position: relative;
}

.hero-left-inner {
    position: relative;
    width: 100%;
    padding: 0 40px;
}

.hero-left .hero-laptop {
    width: 100%;
    display: block;
}

.hero-left .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    z-index: 2;
}

.hero-left .play-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-left .play-btn svg {
    width: 13px;
    height: 20px;
    fill: #fff;
    margin-left: 3px;
}

.hero-right {
    background: linear-gradient(135deg, #161519 0%, #1e1e2a 50%, #24262B 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 180px 40px 80px 40px;
    position: relative;
}

.hero-right::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,10,44,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero h1 .light {
    font-weight: 300;
}

/* ========== ACCORDION ========== */
.accordion {
    margin-top: 32px;
    max-width: 600px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.accordion-header .icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body p {
    padding-bottom: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

/* ========== WHAT WE DO ========== */
.section-whatwedo {
    background: #fff;
    padding: 10vh 0;
}

.section-whatwedo .top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 6vh;
}

.section-whatwedo .subtitle {
    font-size: 0.9em;
    font-weight: 500;
    color: #82838c;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-whatwedo h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
}

.section-whatwedo h2 .light {
    font-weight: 300;
}

.section-whatwedo .desc {
    color: #94949e;
    font-size: 15px;
    line-height: 1.6;
    max-width: 500px;
}

/* ========== SERVICE CARDS (full-bleed) ========== */
.section-services {
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}

.service-card img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover img.bg {
    transform: scale(1.05);
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.service-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    color: #fff;
}

.service-card .content .cat {
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
}

.service-card .content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card .content p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ========== STATS / COUNTERS ========== */
.section-stats {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #161519;
}

.section-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/parallax-bg.jpg') center/cover no-repeat fixed;
    opacity: 0.25;
}

.stats-row {
    display: flex;
    position: relative;
    z-index: 1;
}

.stat-block {
    flex: 1;
    padding: 5vh 3vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-block i {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.stat-block .number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    color: #fff;
}

.stat-block .label {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

.stat-red {
    background: rgba(217,10,44,0.96);
}

.stat-dark {
    background: rgba(17,16,19,0.96);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 140px 20px 40px;
    }

    .hero-right {
        padding: 40px 20px 60px;
    }

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

    .service-card {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .hero-left {
        padding: 120px 16px 30px;
    }

    .hero-right {
        padding: 30px 16px 50px;
    }

    .section-whatwedo .top-row {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 320px;
    }

    .stats-row {
        flex-direction: column;
    }
}
