/* Deklaracja fontów SST */
@font-face {
    font-family: "SST";
    src: url("fonts/SSTW02Roman.woff2") format("woff2");
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: "SST";
    src: url("fonts/SSTW02Light.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "SST";
    src: url("fonts/SSTW02Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
}

/* Podstawowe style */
body {
    font-family: "SST", sans-serif;
    margin: 0;
    padding: 0;
}

/* Kolory */
:root {
    --color-black: #020200;
    --color-white: #ffffff;
    --color-orange: #ff4e0f;
    --color-light-blue: #f2f5f9;
    --color-border: #d8d8d8;
    --color-img-bg: #f2f5f9;
    --max-width: 1000px;
}

/* Container custom - max 1000px */
.container-custom {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar */
.topbar {
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    padding: 24px 0;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-sony-center-white {
    height: 30px;
    width: 197.46px;
}

.logo-sony-center-white img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.distributor-text {
    color: #e9e9e9;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.logo-sony-white {
    height: 18px;
    width: 102.27px;
}

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

/* Section Hero */
.section-hero {
    position: relative;    
    width: 100%;
    display: flex;
    align-items: center;
    padding: 128px 0;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    display: flex;
    gap: 44px;
    align-items: center;
    width: 100%;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 47px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 50px;
    letter-spacing: -0.94px;
    margin: 0;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 26px;
    letter-spacing: -0.32px;
    margin: 0;
}

.hero-image-small {
    height: 111.38px;
    width: 115.72px;
}

.hero-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-box {
    background-color: var(--color-orange);
    width: 300px;
    height: 300px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-box-icon {
    width: 51.2px;
    height: 51.2px;
}

.hero-box-icon img {
    width: 100%;
    height: 100%;
}

.hero-box-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 31px;
    letter-spacing: -0.52px;
    margin: 0;
}

.hero-box-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 21px;
    letter-spacing: -0.32px;
    margin: 0;
}

/* Section Benefits */
.section-benefits {
    background-color: var(--color-white);
    padding: 64px 0;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    line-height: 35px;
    letter-spacing: -0.52px;
    margin-bottom: 44px;
}

.benefits-row {
    display: flex;
    gap: 24px;
}

.benefit-box {
    flex: 1;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 24px 20px;
    height: 380px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    line-height: normal;
}

.benefit-description {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 20px;
    margin: 0;
}

/* Section Description */
.section-description {
    background-color: var(--color-white);
    padding: 20px 0;
}

.description-text {
    padding: 20px 0;
}

.description-text p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 20px;
    margin: 0;
}

.description-bold {
    font-weight: 700 !important;
}

/* Section Banner FullScreen */
.section-banner-fullscreen {
    position: relative;
    width: 100%;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 400px;
}

.banner-title {
    font-size: 40px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 47px;
    letter-spacing: -0.8px;
    margin: 0;
}

.banner-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 24px;
    margin: 0;
}

/* Section Requirements */
.section-requirements {
    background-color: var(--color-white);
    padding: 64px 0;
}

.requirement-item {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 44px;
}

.requirement-item:last-child {
    margin-bottom: 0;
}

.requirement-title {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-black);    
    margin: 0;
}

.requirement-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 20px;
    margin: 0;
}

/* Section Banner Application */
.section-banner-application {
    background-color: var(--color-light-blue);
    width: 100%;
    padding: 100px 0;
}

.application-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 64px;
}

.application-title {
    font-size: 40px;
    font-weight: 400;
    color: var(--color-black);
    text-align: center;
    line-height: 47px;
    letter-spacing: -0.8px;
    margin: 0;
}

.application-steps {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 24px;
    text-align: center;
}

.application-steps p {
    margin-bottom: 16px;
}

.application-steps p:last-child {
    margin-bottom: 0;
}

.btn-application {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 17px;
    font-weight: 400;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 32px;
    margin: 0 auto;
    max-width: 368px;
    letter-spacing: -0.34px;
}

.btn-application .material-symbols-outlined {
    font-size: 14px;
}

/* Section Products */
.section-products {
    background-color: var(--color-white);
    padding: 64px 0;
}

.product-subsection {
    margin-bottom: 64px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 24px;
}

.product-subsection:last-child {
    margin-bottom: 0;
}

.product-group-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.product-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-4px);    
}

.product-image-container {
    background-color: var(--color-img-bg);
    padding: 32.16px 11.695px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.product-image {
    width: 100%;
    aspect-ratio: 2048/1600;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image-container {
    background-color: #e8ecf2;
}

.product-item:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

.product-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.product-link:hover {
    color: var(--color-orange);
    text-decoration: none;
}

.product-link .material-symbols-outlined {
    font-size: 14px;
}

/* Section Newsletter */
.section-newsletter {
    position: relative;
    width: 100%;
    padding: 44px 0;
    display: flex;
    align-items: center;
}

.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.newsletter-background img {
    width: 181.21%;
    height: 181.12%;
    object-fit: cover;
    position: absolute;
    left: -23.38%;
    top: -70.08%;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.newsletter-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.newsletter-title {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    line-height: normal;
    letter-spacing: -0.6px;
    margin: 0;
}

.logo-sony-center-white-big {
    height: 35.86px;
    width: 236px;
}

.logo-sony-center-white-big img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newsletter-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    line-height: normal;
    letter-spacing: -0.36px;
    max-width: 600px;
    margin: 0;
}

.newsletter-features {
    display: flex;
    gap: 3.257px;
    padding: 16px 0;
    max-width: 896px;
}

.newsletter-feature {
    flex: 1;
    display: flex;
    gap: 19.54px;
    align-items: center;
    padding: 4.885px 13.027px;
}

.feature-icon {
    width: 48.22px;
    height: 48.22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .material-symbols-outlined {
    font-size: 48.22px;
    color: var(--color-orange);
}

.feature-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: normal;
}

.feature-text p {
    margin: 0;
}

.btn-newsletter {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 17px;
    font-weight: 400;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 32px;
    letter-spacing: -0.34px;
}

.btn-newsletter .material-symbols-outlined {
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--color-white);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-black);
    line-height: normal;
    margin: 0;
}

.footer-text p:first-child {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-text strong {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-black);
}

.footer-email {
    color: var(--color-orange);
}

.logo-sony-center-black {
    height: 24.6px;
    width: 161.9px;
}

.logo-sony-center-black img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsywność */
@media (max-width: 991px) {
    .benefits-row {
        flex-wrap: wrap;
    }
    
    .benefit-box {
        flex: 0 0 calc(50% - 12px);
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-box {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-features {
        flex-direction: column;
    }
}

@media (max-width: 767px) {

    .section-benefits{
        padding: 22px 0;
    }
    .section-hero {
        padding: 22px 0;
    }
    .topbar-content {
        flex-direction: row;
        gap: 12px;     
        align-items: flex-start;   
    }
    
    .topbar-left {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .benefit-box {
        flex: 0 0 100%;
        height: auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .application-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .banner-title,
    .application-title {
        font-size: 28px;
        line-height: 34px;
    }
}


