/* ===== PROJECT PAGE STYLES ===== */

/* Project Hero Section */
.project-hero {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--page-padding);
}

.project-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.project-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.project-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
}

.project-hero__content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.project-hero__content .heading-1 {
    margin-bottom: 24px;
    color: var(--color-white);
}

.project-hero__description {
    font-size: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 24px;
}

.project-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* Project Content Section */
.project-content {
    padding: var(--section-padding-large) var(--page-padding);
    background-color: var(--scheme-1-bg);
}

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

.project-content__media {
    aspect-ratio: 1;
}

.project-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-large);
    overflow: hidden;
}

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

.project-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.project-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 64px;
    height: 64px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-video__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.project-video__play img {
    width: 100%;
    height: 100%;
}

.project-content__info {
    color: var(--color-white);
}

.project-content__info .heading-2 {
    margin-bottom: 24px;
    color: var(--color-white);
}

.project-content__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-content__text p {
    font-size: var(--text-regular);
    line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
    padding: var(--section-padding-large) var(--page-padding);
    background-color: var(--scheme-1-bg);
}

.testimonial {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.testimonial__stars {
    margin-bottom: 32px;
}

.testimonial__stars img {
    height: 19px;
    margin: 0 auto;
}

.testimonial__quote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: var(--heading-5);
    line-height: 1.3;
    letter-spacing: -0.32px;
    color: var(--color-white);
    margin-bottom: 32px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial__info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial__name {
    font-weight: 600;
    font-size: var(--text-regular);
    color: var(--color-white);
}

.testimonial__position {
    font-size: var(--text-regular);
    color: var(--color-white);
}

.testimonial__divider {
    width: 1px;
    height: 61px;
    background-color: var(--color-white);
}

.testimonial__company-logo {
    width: 120px;
    height: 48px;
}

.testimonial__company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Partners Section */
.partners-section {
    padding: var(--section-padding-medium) var(--page-padding);
    background-color: var(--scheme-1-bg);
}

.partners-title {
    font-weight: 700;
    font-size: var(--text-medium);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
}

.partners-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 140px;
    height: 56px;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* CTA Section (Project Page) */
.cta-section.section--dark-gray {
    background-color: var(--scheme-5-bg);
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1280px;
}

.cta-content {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.cta-content .heading-2 {
    color: var(--color-white);
    margin-bottom: 24px;
}

.cta-content .section-description {
    color: var(--color-white);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-image {
    border-radius: var(--radius-large);
    overflow: hidden;
    aspect-ratio: 1280 / 738;
}

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

/* Comparison Section */
.comparison-section {
    padding: var(--section-padding-large) var(--page-padding);
    background-color: var(--scheme-3-bg);
}

.comparison-section .section-header {
    margin-bottom: 80px;
}

/* Comparison Table */
.comparison-table {
    max-width: 1024px;
    margin: 0 auto 48px;
}

.comparison-table__row {
    display: flex;
    align-items: center;
}

.comparison-table__row--highlight {
    background-color: var(--scheme-3-bg);
}

.comparison-table__cell {
    padding: 16px 24px;
}

.comparison-table__cell--label {
    width: 440px;
    flex-shrink: 0;
    font-size: var(--text-regular);
    color: var(--color-primary-dark);
}

.comparison-table__cell--value {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: var(--text-regular);
    color: var(--color-primary-dark);
}

.comparison-table__icon {
    width: 24px;
    height: 24px;
}

/* Table Header */
.comparison-table__header {
    margin-bottom: 0;
}

.comparison-table__header .comparison-table__cell--label {
    padding: 24px 24px 24px 0;
}

.comparison-table__header .comparison-table__cell--service {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.comparison-table__title {
    font-weight: 700;
    font-size: var(--text-large);
    color: var(--color-primary-dark);
}

.comparison-table__service-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-large);
    overflow: hidden;
}

.comparison-table__service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-table__service-title {
    font-weight: 700;
    font-size: var(--text-large);
    color: var(--color-primary-dark);
    text-align: center;
}

.comparison-table__service-desc {
    font-size: var(--text-regular);
    color: var(--color-primary-dark);
    text-align: center;
}

.comparison-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 1024px) {
    .project-hero {
        min-height: 600px;
        padding: 120px var(--page-padding);
    }
    
    .project-content__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .project-content__media {
        aspect-ratio: 16 / 9;
    }
    
    .testimonial__author {
        flex-wrap: wrap;
    }
    
    .testimonial__divider {
        display: none;
    }
    
    .comparison-table__cell--label {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .project-hero {
        min-height: 500px;
        padding: 80px 24px;
    }
    
    .project-hero__content .heading-1 {
        font-size: 48px;
    }
    
    .project-content {
        padding: var(--section-padding-medium) 24px;
    }
    
    .project-content__info .heading-2 {
        font-size: 36px;
    }
    
    .testimonial-section {
        padding: var(--section-padding-medium) 24px;
    }
    
    .testimonial__quote {
        font-size: 24px;
    }
    
    .testimonial__author {
        flex-direction: column;
        gap: 16px;
    }
    
    .partners-section {
        padding: var(--section-padding-medium) 24px;
    }
    
    .partners-list {
        gap: 16px;
    }
    
    .partner-logo {
        width: 100px;
        height: 40px;
    }
    
    .cta-section {
        padding: var(--section-padding-medium) 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-section {
        padding: var(--section-padding-medium) 24px;
    }
    
    /* Mobile comparison table */
    .comparison-table__row {
        flex-direction: column;
    }
    
    .comparison-table__cell--label {
        width: 100%;
        text-align: left;
    }
    
    .comparison-table__cell--value {
        width: 100%;
        text-align: left;
        padding-left: 24px;
    }
    
    .comparison-table__header {
        display: none;
    }
    
    .comparison-actions {
        flex-direction: column;
    }
}
