.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.3;
    animation: slow-zoom 20s infinite alternate linear;
}

@keyframes slow-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--mono-1) 0%, transparent 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-desc {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--mono-4);
    margin-bottom: 40px;
    max-width: 600px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--mono-6);
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--mono-4);
    text-transform: uppercase;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-list li h3 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Partner Feature (Homepage) */
.partner-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.pf-img {
    height: 600px;
    position: relative;
}

.pf-img::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-red);
    z-index: -1;
    transition: 0.5s ease;
}

.partner-feature:hover .pf-img::after {
    transform: translate(10px, 10px);
}

.pf-name {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--mono-6);
    letter-spacing: -1px;
}

.pf-role {
    color: var(--accent-red);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.pf-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--mono-5);
    margin-bottom: 50px;
    font-style: italic;
    border-left: 3px solid var(--accent-red);
    padding-left: 20px;
}

.pf-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.pfs-num {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--mono-6);
    line-height: 1;
    margin-bottom: 10px;
}

.pfs-label {
    font-size: 0.8rem;
    color: var(--mono-4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .partner-feature {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pf-img {
        height: 400px;
    }
}

/* Detailed Services List */
.service-list-large {
    list-style: none;
    margin-top: 50px;
}

.service-list-large li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-list-large li:nth-child(even) {
    flex-direction: row-reverse;
}

.sll-content {
    flex: 1;
}

.sll-img {
    flex: 1;
    height: 500px;
}

.sll-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.sll-desc {
    color: var(--mono-4);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.sub-services {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sub-tag {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mono-4);
}

@media (max-width: 900px) {

    .service-list-large li,
    .service-list-large li:nth-child(even) {
        flex-direction: column;
    }

    .sll-img {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

    .service-list-large li {
        padding: 50px 0;
    }
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testi-card {
    background: var(--mono-1);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testi-quote-icon {
    font-size: 2rem;
    color: var(--mono-2);
    margin-bottom: 20px;
    display: block;
}

.testi-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--mono-5);
    font-style: italic;
    margin-bottom: 30px;
    flex: 1;
}

.ta-name {
    font-size: 1rem;
    color: var(--mono-6);
    font-weight: 500;
    margin-bottom: 5px;
}

.ta-org {
    font-size: 0.8rem;
    color: var(--accent-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
        height: auto;
        align-items: flex-end;
        padding-top: calc(var(--mobile-nav-height) + 36px);
        padding-bottom: 48px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.92) 72%);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 42px;
        padding-top: 24px;
    }

    .article-grid,
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pf-stats {
        flex-direction: column;
        gap: 24px;
    }

    .pf-role,
    .stat-label,
    .pfs-label {
        letter-spacing: 1.5px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding-top: calc(var(--mobile-nav-height) + 28px);
        padding-bottom: 36px;
    }

    .hero-content .cb-meta {
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .partner-feature {
        gap: 32px;
    }

    .pf-img {
        height: 300px;
    }

    .pf-img::after {
        bottom: -12px;
        right: -12px;
    }

    .pf-desc {
        font-size: 1.05rem;
        margin-bottom: 28px;
        padding-left: 16px;
    }

    .service-list-large {
        margin-top: 28px;
    }

    .service-list-large li {
        gap: 24px;
        padding: 36px 0;
    }

    .sll-img {
        height: 220px;
        margin-bottom: 0;
    }

    .sll-title {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
    }

    .sll-desc {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .sub-services {
        gap: 10px;
    }

    .sub-tag {
        width: 100%;
        text-align: center;
    }

    .testi-card {
        padding: 28px 22px;
    }

    .testi-text {
        font-size: 1rem;
    }
}

/* Premium Quote Section */
.premium-quote-section {
    padding: 150px 0;
    background: linear-gradient(135deg, var(--mono-1) 0%, var(--mono-0) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 50px 0;
}

.relative-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-watermark {
    position: absolute;
    top: -80px;
    left: -40px;
    font-size: 300px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.quote-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 40px;
}

.pq-text {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--mono-6);
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.pq-text::before,
.pq-text::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--accent-red);
    top: 50%;
}

.pq-text::before {
    left: -80px;
}

.pq-text::after {
    right: -80px;
}

.pq-author {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.pq-name {
    font-size: 1.2rem;
    color: var(--mono-5);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.pq-role {
    font-size: 0.85rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 900px) {

    .pq-text::before,
    .pq-text::after {
        display: none;
    }

    .quote-watermark {
        left: 0;
        top: -60px;
        font-size: 200px;
    }

    .premium-quote-section {
        padding: 100px 0;
    }

    .quote-content {
        padding: 0 20px;
    }
}