/* Sony Cashback Landing Page - Styles */

/* Font declarations */
@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;
}

/* Reset and base styles */
* {
    box-sizing: border-box;
    -webkit-font-smoothing:antialiased !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: "SST", sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: #020200;
    background-color: #ffffff;
}

/* Main container with responsive grid */
.lp-wrap {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 32px 16px;
    font-family: "SST", sans-serif;
    font-weight: 200;
    line-height: 1.4;
}

@media (min-width: 1441px) {
    .lp-wrap {
        max-width: 1376px;
    }
}

@media (min-width: 1230px) and (max-width: 1440px) {
    .lp-wrap {
        max-width: 1218px;
    }
}

@media (min-width: 960px) and (max-width: 1229px) {
    .lp-wrap {
        max-width: 960px;
    }
}

/* <960px: 100% szerokości */

/* Top Banner Styles */
.lp-top-banner {
    background-image: url('img/main-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 32px 0;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.lp-top-banner__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 44px;
}

.lp-top-banner__header {
    display: flex;
    justify-content: space-between;    
    margin-bottom: 24px;
    padding-top: 8px;
}

.lp-top-banner__logo {
    height: 22px;
    width: 125px;
}

.lp-top-banner__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-top-banner__alpha-logo {
    height: 90px;
    width: 93px;
}

.lp-top-banner__alpha-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-top-banner__content {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 0 -44px;
}

.lp-top-banner__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.lp-top-banner__slogan {
    display: flex;
    align-items: center;
    width: 630px;
}

.lp-top-banner__cashback {
    background-color: #ff4500;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.lp-top-banner__cashback-img {
    max-width: 100%;
    height: auto;
    display: block;
}


.lp-top-banner__description {
    background-color: #020200;
    padding: 22px 23px;
    min-width: 250px;
    flex: 1;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.lp-top-banner__description p {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 23.59px;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
    margin: 0;
    display: block;
    width: 100%;
}

.lp-top-banner__copyright {
    padding: 0 32px;
}

.lp-top-banner__copyright p {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

.lp-top-banner__image {
    flex-shrink: 0;
    padding-right: 44px;
}

.lp-top-banner__camera-img {
    width: 496.93px;
    height: 287.66px;
    object-fit: cover;
    border-radius: 12px;
}

/* Steps Section Styles */
.lp-steps {
    background-color: #ffffff;
    padding: 44px 0;
    margin-bottom: 32px;
}

.lp-steps__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lp-steps__title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #020200;
    text-align: center;
    margin: 0;
    letter-spacing: -0.72px;
}

.lp-steps__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    padding: 0 32px;
}

.lp-step {
    flex: 1;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-step__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.lp-step__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-step__content {
    flex: 1;
}

.lp-step__title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #020200;
    margin: 0 0 16px 0;
}

.lp-step__description {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
}

.lp-step__description strong {
    font-weight: 700;
}

.lp-step__orange {
    color: #ff4500;
}

.lp-step__link {
    color: #ff4500;
    cursor: pointer;
    text-decoration: underline;
}

.lp-step__link:hover {
    text-decoration: none;
}

.lp-steps__button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    padding: 0 24px;
}

/* Button Styles */
.lp-button {
    background-color: #ff4500;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 44px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform:none;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    font-family: "SST", sans-serif;
    font-size: 18px;
    line-height: 1;
}

.lp-button:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #e03e00;
}

.lp-button--outline {
    background-color: #ffffff;
    color: #ff4500;
    border: 1px solid #ff4500;
}

.lp-button--outline:hover {
    background-color: #ff4500;
    color: #ffffff;
}

.lp-button--outline .lp-button__arrow {
    filter: none;
}

.lp-button__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.lp-button span {
    text-align: left;
}

/* Products Section Styles */
.lp-products {
    background-color: #ffffff;
    padding: 44px 0;
    margin-bottom: 32px;
}
.lp-products--alpha{
    padding: 16px 0;
}
.lp-products--alpha .lp-products__container {
    gap: 24px;
}

.lp-products__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.lp-products__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
}

.lp-products__alpha-logo {
    height: 56px;
    width: 57px;
    flex-shrink: 0;
}

.lp-products__alpha-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-products__title-text {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #020200;
    text-align: center;
    margin: 0;
    letter-spacing: -0.72px;
}

.lp-products__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 0;
}

.lp-product {
    width: 256px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1440px) {
    .lp-product {
        width: 224px;
    }
    .lp-product__image{
        min-height: 250px;
    }
}

.lp-product__image {
    background-color: #f2f5f9;
    padding: 44px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
 
}

.lp-product__img {
    width: 100%;
    aspect-ratio: 2048/1600;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.lp-product__image:hover .lp-product__img {
    transform: scale(1.05);
}

.lp-product__content {
    height: 128px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-end;
}

.lp-product__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-product__code {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 1.2;
    color: #020200;
    margin: 0;
}

.lp-product__name {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lp-product__button {
    background: none;
    border: none;
    border-radius: 4px;
    padding: 6px 0;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #ff4500;
    font-family: "SST", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
}

.lp-product__button:hover {
    text-decoration: underline;
    color: #ff4500;
    text-decoration-color: #ff4500;
    text-decoration-thickness: 1px;
}

.lp-product__button-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1230px) {
    .lp-top-banner__slogan {
        flex-direction: column;
        gap: 0px;
        width: 100%;
    }
    
    .lp-top-banner__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .lp-top-banner__camera-img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .lp-steps__container {
        padding: 0;
    }
    
    .lp-steps__grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .lp-step {
        min-width: auto;
        align-items: flex-start;
        flex: 1;
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .lp-products__grid {
        padding: 0;
        gap: 20px;
    }
    
    .lp-product {
        /* width: calc(50% - 10px); */
        max-width: 300px;
    }
}

@media (max-width: 960px) {
    .lp-wrap {
        padding: 16px;
    }

    .lp-top-banner__container {
        padding: 0 24px;
    }
    
    .lp-top-banner__header {
        flex-direction: row;
        justify-content: space-between;        
        gap: 0;
        text-align: left;
        margin-bottom: 32px;
    }
    
    .lp-top-banner__logo {
        height: 18px;
        width: 100px;
    }
    
    .lp-top-banner__alpha-logo {
        height: 70px;
        width: 72px;
    }
    
    .lp-top-banner__cashback {
        padding: 22px 44px;
    }
    
    .lp-top-banner__description {
        padding: 22px 44px;
    }
    
    .lp-top-banner__copyright {
        position: absolute;
        left: 32px;
        bottom: 32px;
        padding: 0;
    }
    
    .lp-top-banner__image {
        margin-top: 132px;
        margin-bottom: 32px;
        padding: 0 64px;
    }
    
    .lp-top-banner__camera-img {        
        max-width: 100%;        
    }
    
    .lp-steps__container {
        padding: 0 16px;
    }
    
    .lp-steps__grid {
        padding: 0;
        flex-direction: column;
        gap: 32px;
    }
    
    .lp-step {
        min-width: auto;
        max-width: none;
        flex: none;
        align-items: center;
    }
    
    .lp-steps__title {
        font-size: 28px;
    }
    
    .lp-step__title {
        text-align: center;
    }
    
    .lp-step__description {
        text-align: center;
    }
    
    .lp-steps__button {
        padding: 0;
    }
    
    .lp-button {
        width: 100%;
        justify-content: center;
    }
    
    .lp-products {
        padding-top: 0;
    }
    
    .lp-products__container {
        padding: 0;
    }
    
    .lp-products__grid {
        padding: 0;
        gap: 16px;
    }
    
    .lp-product {
        width: 100%;
        max-width: 170px;
        margin: 0 auto;
    }
    .lp-product__image {
        min-height: 202px;
    }

    .lp-product__content {
        height: 140px;
    }
    
    .lp-product__info {
        gap: 2px;
    }
    
    .lp-product__name {
        font-size: 16px;
    }
    
    .lp-products__title-text {
        font-size: 28px;
    }
    
}

/* Input styles for Safari compatibility */
.noSafari {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* Product link styles - no visual impact */
.lp-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lp-product-link:hover {
    text-decoration: none;
    color: inherit;
}

.lp-product-link:visited {
    color: inherit;
}

.lp-product-link:focus {
    outline: none;
}

.lp-product-big__more-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lp-product-big__more-link:hover {
    text-decoration: none;
    color: inherit;
}

.lp-product-big__more-link:visited {
    color: inherit;
}

.lp-product-big__more-link:focus {
    outline: none;
}

/* Separator Styles */
.lp-separator {
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    margin: 44px 0;
}

.lp-separator__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cyber-shot Section Styles */
.lp-cybershot {
    background-color: #ffffff;
    padding: 44px 0;
    margin-bottom: 32px;
}

.lp-cybershot__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.lp-cybershot__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
}

.lp-cybershot__logo {
    height: 25px;
    width: 176px;
    flex-shrink: 0;
}

.lp-cybershot__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-cybershot__title-text {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #020200;
    text-align: center;
    margin: 0;
    letter-spacing: -0.72px;
}

.lp-cybershot__products {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 0 32px;
}

.lp-cybershot__product {
    width: 600px;
    display: flex;
    gap: 4px;
    align-items: stretch;
}

.lp-cybershot__product-image {
    flex: 1;
    background-color: #f2f5f9;
    padding: 44px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

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

.lp-cybershot__product-image:hover .lp-cybershot__product-img {
    transform: scale(1.05);
}

.lp-cybershot__product-content {
    flex: 1;
    background-color: rgba(242, 245, 249, 0.5);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
}

.lp-cybershot__product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-cybershot__product-code {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 1;
    color: #020200;
    margin: 0;
}

.lp-cybershot__product-name {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lp-cybershot__product-description {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
}


/* Responsive Design for Cyber-shot */
@media (max-width: 1230px) {
    .lp-cybershot__products {
        padding: 0;
        gap: 20px;
    }

    .lp-cybershot__product {
        width: 100%;
        max-width: 600px;
        flex-direction: column;
    }

    .lp-cybershot__product-image {
        flex: none;
    }

    .lp-cybershot__product-content {
        flex: none;
    }
}

@media (max-width: 960px) {
    .lp-cybershot {
        padding: 0;
    }
    
    .lp-cybershot__container {
        padding: 0;
    }

    .lp-cybershot__products {
        padding: 0;
        gap: 16px;
    }

    .lp-cybershot__product {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .lp-cybershot__title-text {
        font-size: 28px;
    }
}

/* Alpha Section - Obiektywy Styles */
.lp-alpha {
    background-color: #ffffff;
    padding: 44px 0;
    margin-bottom: 32px;
}

.lp-alpha__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.lp-alpha__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
}

.lp-alpha__logo {
    height: 43px;
    width: 136px;
    flex-shrink: 0;
}

.lp-g-master__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-alpha__title-text {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #020200;
    text-align: center;
    margin: 0;
    letter-spacing: -0.72px;
}

/* Responsive Design for Alpha Section */
@media (max-width: 1230px) {
    .lp-alpha__container {
        padding: 0;
    }

    .lp-alpha__title-text {
        font-size: 28px;
    }
}

@media (max-width: 960px) {
    .lp-alpha {
        padding: 0;
    }
}

/* Banner Sections Styles */
.lp-banners {
    background-color: #ffffff;
    padding: 44px 0;
    margin-bottom: 32px;
}

.lp-banners__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #f2f5f9;
    border-radius: 12px;
    padding: 0;
    height: 470px;
}

.lp-banner--mysony {
    background-image: url('img/banner-1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.lp-banner--regulamin {
    background-image: url('img/banner-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    justify-content: center;
    align-items: center;
}

.lp-banner__content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.lp-banner__heading {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #020200;
    margin: 0;
    letter-spacing: -0.64px;
}

.lp-banner__description {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #020200;
    margin: 0;
}



.lp-banner__image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* MySony Banner Specific Styles */
.lp-banner--mysony .lp-banner__content {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    border-radius: 12px 0 0 12px;
    padding: 80px;
    gap: 44px;
    max-width: 582px;
    height: 100%;
}

.lp-banner--regulamin .lp-banner__content {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 32px 44px;
    gap: 38px;
    max-width: none;
    height: auto;
    align-items: center;
    text-align: center;
}

.lp-banner__heading-line1 {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    color: #020200;
    display: block;
}

.lp-banner__heading-line2 {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 39px;
    line-height: 1;
    color: #020200;
    display: block;
}

/* Regulamin Banner Specific Styles */
.lp-banner--regulamin .lp-banner__heading-line1 {
    color: #ffffff;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
}

.lp-banner--regulamin .lp-banner__heading-line2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 28px;
}

.lp-banner__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.lp-banner__step {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.lp-banner__step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.lp-banner__step-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-banner__step-text {
    flex: 1;
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #020200;
}

.lp-banner__step-text p {
    margin: 0;
}

.lp-banner__step-text strong {
    font-weight: 700;
}

.lp-banner__link {
    color: #020200;
    text-decoration: underline;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

/* Responsive Design for Banner Sections */
@media (max-width: 1230px) {
    .lp-banners__container {
        padding: 0;
    }

    .lp-banner {
        flex-direction: column;
        height: auto;
        gap: 16px;
        min-height: 310px;        
    }

    .lp-banner__content {
        padding: 16px;
    }

    .lp-banner__heading {
        font-size: 28px;
    }

    .lp-banner__image {
        height: 300px;
    }

    .lp-banner__content {
        flex: 1;
    }

    .lp-banner--mysony .lp-banner__content {
        padding: 40px;
        gap: 24px;
        max-width: 40%;
        align-self: flex-start;
        margin-right: auto;
    }

    .lp-banner--regulamin {
        min-height: 310px;
    }
    
    .lp-banner--regulamin .lp-banner__content {
        padding: 24px 32px;
        gap: 24px;
        justify-content: center;
        align-items: center;
    }

    .lp-banner__heading-line1 {
        font-size: 28px;
    }

    .lp-banner__heading-line2 {
        font-size: 34px;
    }
}

@media (max-width: 960px) {
    .lp-banners {
        padding: 0;
    }
    
    .lp-banner__heading {
        font-size: 24px;
    }

    .lp-banner__description {
        font-size: 14px;
    }


    .lp-banner--mysony .lp-banner__content {
        padding: 32px;
        gap: 20px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
    }

    .lp-banner--regulamin .lp-banner__content {
        padding: 20px 24px;
        gap: 20px;
        justify-content: center;
        min-height: 310px;
    }

    .lp-banner__heading-line1 {
        font-size: 24px;
    }

    .lp-banner__heading-line2 {
        font-size: 28px;
    }

    .lp-banner__step-text {
        font-size: 14px;
    }

    .lp-banner__step-icon {
        width: 40px;
        height: 40px;
    }

    .lp-banner__step {
        gap: 16px;
    }
}

/* Product Big Section Styles */
.lp-product-big {
    background-color: #ffffff;
    padding: 44px 0;
}

.lp-product-big__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

/* Title Section */
.lp-product-big__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
}

.lp-product-big__logo {
    width: 57px;
    height: 56px;
    flex-shrink: 0;
}

.lp-product-big__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-product-big__heading {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #020200;
    text-align: center;
    margin: 0;
    letter-spacing: -0.72px;
}

/* Main Product Section */
.lp-product-big__main {
    display: flex;
    gap: 4px;
    height: 470px;
}

.lp-product-big__image {
    flex: 1;
    background-color: #f2f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 16px;
}

.lp-product-big__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.lp-product-big__content {
    flex: 1;
    background-color: rgba(242, 245, 249, 0.5);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
}

.lp-product-big__info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.lp-product-big__name {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #020200;
    margin: 0;
}

.lp-product-big__subtitle {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    color: #020200;
    margin: 0;
}

.lp-product-big__badge {
    position: relative;
    top: 10px;
    width: 129px;
    height: 48px;
}

.lp-product-big__badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-product-big__description {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
}

.lp-product-big__features {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
}

.lp-product-big__feature {
    height: 32px;
    object-fit: contain;
}

.lp-product-big__feature:nth-child(1) { width: 94px; }
.lp-product-big__feature:nth-child(2) { width: 88px;}
.lp-product-big__feature:nth-child(3) { width: 32px; }
.lp-product-big__feature:nth-child(4) { width: 37px; height: 29px; }
.lp-product-big__feature:nth-child(5) { width: 66px; }

/* Features List Section */
.lp-product-big__features-list {
    display: flex;
    gap: 44px;
    height: 104px;
}

.lp-product-big__feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    border-bottom: 1px solid #d8d8d8;
}

.lp-product-big__feature-item p {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
}

.lp-product-big__feature-item strong {
    font-weight: 700;
}

/* Banner Section */
.lp-product-big__banner {
    background-image: url('img/banner-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0 44px;
}

.lp-product-big__banner-title {
    font-family: "SST", sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.56px;
    line-height: 1.2;
    color: #020200;
    text-align: left;
    margin: 0;
}

.lp-product-big__banner-title span {
    display: block;
}

/* Banner Section */
.lp-lens-big__banner {
    background-image: url('img/banner-4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0 44px;
}

.lp-lens-big__banner-title {
    font-family: "SST", sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.56px;
    line-height: 1.2;
    color: #fff;
    text-align: left;
    margin: 0;
}

.lp-lens-big__banner-title span {
    display: block;
}

/* More Products Section */
.lp-product-big__more {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.lp-product-big__more-title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #020200;
    text-align: left;
    margin: 0;
}

.lp-product-big__more-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.lp-product-big__more-item {
    flex: 1;
    min-width: 244px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-product-big__more-image {
    background-color: #f2f5f9;
    padding: 44px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lp-product-big__more-image:hover .lp-product-big__more-img {
    transform: scale(1.05);
}

.lp-product-big__more-content {
    height: 144px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
}

.lp-product-big__more-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-product-big__more-code {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #020200;
    margin: 0;
}

.lp-product-big__more-name {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #020200;
    margin: 0;
}

/* Responsive Design for Product Big Section */
@media (max-width: 1230px) {
    .lp-product-big__container {
        padding: 0;
    }

    .lp-product-big__heading {
        font-size: 28px;
    }

    .lp-product-big__main {
        flex-direction: column;
        height: auto;
        gap: 4px;
    }

    .lp-product-big__image {
        height: 300px;
    }

    .lp-product-big__content {
        padding: 24px 16px;
    }

    .lp-product-big__features-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        height: auto;
    }

    .lp-product-big__feature-item {
        flex: 1;
        min-width: calc(50% - 8px);
        max-width: calc(50% - 8px);
        padding: 16px 0;
    }

    .lp-product-big__banner {
        height: 300px;
        padding: 0 24px;
        margin-bottom: 24px;
    }

    .lp-product-big__banner-title {
        font-size: 24px;
    }

    .lp-product-big__more-grid {        
        gap: 16px;
        justify-content: flex-start;
    }

    .lp-product-big__more-item {
        width: 100%;
        min-width: 170px;
        max-width: 170px;
        margin: 0 auto;
    }
}

@media (min-width: 1231px) and (max-width: 1440px) {
    .lp-product-big__more-item {
        flex: 1;
        min-width: calc(20% - 12.8px);
        max-width: calc(20% - 12.8px);
        margin: 0 auto;
    }
}

@media (max-width: 960px) {
    .lp-product-big {
        padding: 0;
    }
    
    .lp-product-big__heading {
        font-size: 24px;
    }

    .lp-product-big__name {
        font-size: 18px;
    }

    .lp-product-big__subtitle {
        font-size: 22px;
    }

    .lp-product-big__description {
        font-size: 13px;
    }

    .lp-product-big__features {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .lp-product-big__features-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
        height: auto;
    }
    
    .lp-product-big__feature-item {
        flex: 1;
        min-width: calc(50% - 8px);
        max-width: calc(50% - 8px);
        padding: 12px 0;
    }

    .lp-product-big__banner-title {
        font-size: 20px;
        max-width: 130px;
    }

    .lp-product-big__more-title {
        font-size: 20px;
    }

    .lp-product-big__more-name {
        font-size: 16px;
    }
}

/* Lens Section Styles */
.lp-lens {
    background-color: #ffffff;
    padding: 44px 0;
    margin-bottom: 32px;
}

.lp-lens__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.lp-lens__main {
    display: flex;
    gap: 4px;
    height: 470px;
}

.lp-lens__image {
    flex: 1;
    background-color: #f2f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 16px;
}

.lp-lens__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lp-lens__content {
    flex: 1;
    background-color: rgba(242, 245, 249, 0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
    justify-content: flex-end;
}

.lp-lens__header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-lens__subtitle {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lp-lens__title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    color: #020200;
    margin: 0;
}

.lp-lens__description {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
}

.lp-lens__features {
    display: flex;
    gap: 44px;
}

.lp-lens__feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 32px;
    position: relative;
    border-bottom: 1px solid #d8d8d8;
}

.lp-lens__feature-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.lp-lens__feature-text {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
}

.lp-lens__feature-text strong {
    font-weight: 700;
}

/* Responsive Design for Lens Section */
@media (max-width: 1230px) {
    .lp-lens__container {
        padding: 0;
    }

    .lp-lens__main {
        flex-direction: column;
        height: auto;
    }

    .lp-lens__image {
        height: 300px;
    }

    .lp-lens__content {
        padding: 24px;
    }

    .lp-lens__features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .lp-lens__feature {
        flex: 1;
        min-width: calc(50% - 8px);
        max-width: calc(50% - 8px);
        padding: 24px 0;
    }
}

@media (max-width: 960px) {
    .lp-lens {
        padding: 0;
    }
    
    .lp-lens__subtitle {
        font-size: 18px;
    }

    .lp-lens__title {
        font-size: 22px;
    }

    .lp-lens__description {
        font-size: 13px;
    }

    .lp-lens__feature-text {
        font-size: 13px;
    }

    .lp-lens__features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }
    
    .lp-lens__feature {
        flex: 1;
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .lp-lens__image {
        height: 250px;
    }

    .lp-lens__feature-image {
        height: 100px;
        width: 100%;
    }
    
    .lp-lens-big__banner {
        height: 310px;
        background-position: right center;
    }
}

/* Banner Big FullScreen Styles */
.lp-banner-big {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0;
}

.lp-banner-big--alpha {
    background-image: url('img/Section-BannerBig-FullScreen.jpg');
}

.lp-banner-big--lens {
    background-image: url('img/Section-BannerBig2-FullScreen.jpg');
}

.lp-banner-big__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.lp-banner-big__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.lp-banner-big__title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.lp-banner-big__subtitle {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.lp-banner-big__main-title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.72px;
}

.lp-banner-big__description {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    max-width: 800px;
    letter-spacing: -0.32px;
}

/* Responsive Design for Banner Big */
@media (max-width: 1230px) {
    .lp-banner-big__container {
        padding: 0 16px;
    }
    
    .lp-banner-big--alpha {
        margin: 0;
    }
    
    .lp-banner-big--lens {
        margin: 0;
    }

    .lp-banner-big__subtitle {
        font-size: 24px;
    }

    .lp-banner-big__main-title {
        font-size: 40px;
    }

    .lp-banner-big__description {
        font-size: 14px;
    }
}

@media (max-width: 960px) {
    .lp-banner-big {
        padding: 44px 0;
        margin: 0 -16px;
        border-radius: 0;
    }

    .lp-banner-big__subtitle {
        font-size: 20px;
    }

    .lp-banner-big__main-title {
        font-size: 32px;
    }

    .lp-banner-big__description {
        font-size: 14px;
    }
}

/* Article Sections Styles */
.lp-articles {
    background-color: #ffffff;
    padding: 0;
    margin-bottom: 32px;
    width: 100%;
}

.lp-articles__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.lp-articles__section {
    display: flex;
    flex-direction: column;
}

.lp-articles__grid {
    display: flex;
    gap: 44px;
}

.lp-article {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0;
    position: relative;
    border-bottom: 1px solid #d8d8d8;
}

.lp-article__image {
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-article__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-article__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-article__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-article__subtitle {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #020200;
    margin: 0;
}

.lp-article__title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
}

.lp-article__title span {
    display: block;
}

.lp-article__description {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
}

.lp-article__description strong {
    font-weight: 700;
}

.lp-article__list {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #020200;
    margin: 0;
    padding-left: 24px;
    list-style-type: disc;
}

.lp-article__list li {
    margin-bottom: 8px;
}

.lp-article__list li:last-child {
    margin-bottom: 0;
}

.lp-article__list strong {
    font-weight: 700;
}

/* Responsive Design for Article Sections */
@media (max-width: 1230px) {
    .lp-articles__container {
        padding: 0;
    }

    .lp-articles__grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .lp-article {
        flex: 1;
        min-width: calc(33.333% - 10.67px);
        max-width: calc(33.333% - 10.67px);
        padding: 24px 0;
    }

    .lp-article__image {
        height: 300px;
    }
}

@media (max-width: 960px) {
    .lp-articles__grid {
        flex-direction: column;
        gap: 32px;
    }

    .lp-article {
        min-width: auto;
        max-width: none;
        flex: none;
    }

    .lp-article__subtitle {
        font-size: 16px;
    }

    .lp-article__title {
        font-size: 20px;
    }

    .lp-article__description,
    .lp-article__list {
        font-size: 14px;
    }

    .lp-article__image {
        height: 340px;
    }
}

/* Footer Styles */
.lp-footer {
    background-color: #0c0e1a;
    padding: 60px 0;
    width: 100%;
}

.lp-footer__container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-footer__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    width: 600px;
}

.lp-footer__logo {
    height: 21px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-footer__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design for Footer */
@media (max-width: 1230px) {
    .lp-footer__container {
        padding: 0 24px;
    }

    .lp-footer__content {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 960px) {
    .lp-footer {
        padding: 40px 0;
    }

    .lp-footer__container {
        padding: 0 16px;
    }

    .lp-footer__content {
        gap: 40px;
    }

    .lp-footer__logo {
        height: 18px;
        width: 100px;
    }
}
