/* Sony Fotobiznes - Styles */

:root{
    --max-width-desktop: 1200px;
    --max-width-tablet: 960px;
    --max-width-mobile: 100%;
    --breakpoint-desktop: 1200px;
    --breakpoint-tablet: 768px;
    --breakpoint-mobile: 480px;

    --w-100: 100%;
    --w-90: 90%;
    --w-80: 80%;
    --w-70: 70%;
    --w-60: 60%;
    --w-50: 50%;
    --w-40: 40%;
    --w-30: 30%;
    --w-20: 20%;
    --w-10: 10%;
    --w-5: 5%;
    --w-0: 0%;
    
    --h-100: 100%;
    --h-90: 90%;
    --h-80: 80%;
    --h-70: 70%;
    --h-60: 60%;
    --h-50: 50%;
    --h-40: 40%;
    --h-30: 30%;
    --h-20: 20%;
    --h-10: 10%;
    --h-5: 5%;
    --h-0: 0%;
}

/* Font Declarations */
/* SST Font Family */
@font-face {
    font-family: "SST";
    src: url("fonts/SSTW02Roman.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "SST";
    src: url("https://images.scentre.pl/images/SCENTRE_FOTOBIZNES/fonts/SSTW02Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
}

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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing:antialiased !important;
}

/* Disable iOS Safari auto-detection and styling of numbers as phone links */
a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

/* Image rendering optimization */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    height: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container System */
.lf-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: var(--breakpoint-desktop)) {
    .lf-container {
        max-width: var(--max-width-tablet);
    }
}

@media (max-width: var(--breakpoint-tablet)) {
    .lf-container {
        max-width: var(--max-width-mobile);
        padding: 0 15px;
    }
}

@media (max-width: var(--breakpoint-mobile)) {
    .lf-container {
        padding: 0 10px;
    }
}

.lf-logo{
    display: flex;
}

.w-100 {
    width: var(--w-100);
}

.bg-white {
    background-color: #ffffff !important;
}

/* Typography */
.lf-section-title {
    font-family: "SST", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #333;
}

.lf-section-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin-bottom: 24px;
}

.lf-section-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

/* Buttons */
.lf-btn {
    display: inline-block;
    padding: 16px 24px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.lf-btn-primary {
    background-color: #FF4E0F;
    color: white;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    font-family: "SST", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.34px;
    white-space: nowrap;
}


.lf-btn-primary:hover {
    background-color: #E5450D;
    transform: translateY(-2px);
}

.lf-btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(7.35px);
    color: white;
    border: 1px solid #9e9e9e;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    font-family: "SST", sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.34px;
}

.lf-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.lf-btn-link {
    background-color: transparent;
    color: #666;
    text-decoration: underline;
    padding: 8px 0;
}

.lf-btn-link:hover {
    color: #FF6B35;
}

.lf-btn-full {
    width: 100%;
}

.lf-btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Top Section */
.lf-top-section {
    position: relative;
    height: 90vh;
    min-height: 730px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lf-top-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 32px 24px;
    margin: 0;
}

.lf-nav-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}

.lf-logo-img {
    height: 24px;
}

.lf-nav-menu {
    display: flex;
    gap:32px;
    margin: 0;
    padding: 0;
}

.lf-nav-link {
    color: white;
    text-decoration: none;
    font-family: "SST", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
    padding: 0;
    margin: 0;
}

.lf-nav-link:hover {
    color: #FF4E0F;
}

.lf-sony-center-logo {
    height: 30px;
}

.lf-sony-center-img {
    height: 30px;
    object-fit: contain;
}

/* Hamburger Menu (Hidden on Desktop) */
.lf-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.lf-hamburger-line {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.lf-hamburger.active .lf-hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.lf-hamburger.active .lf-hamburger-line:nth-child(2) {
    opacity: 0;
}

.lf-hamburger.active .lf-hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.lf-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lf-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

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

.lf-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.lf-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.lf-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
    padding: 0 16px;
    margin: 0;
}

.lf-hero-container {
    max-width: var(--max-width-desktop);
    padding: 0;
}

.lf-hero-title {
    font-family: "SST", sans-serif;
    font-size: clamp(24px, 5vw, 68px);
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    white-space: nowrap;
}

.lf-hero-subtitle {
    font-family: "SST", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.lf-hero-buttons {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}

.lf-btn-arrow {
    font-size: 14px;
    margin-left: 8px;
}

/* Why Section */
/* Section-Why */
.lf-why-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    margin: 0;
}

/* SubSection-Why-1 */
.lf-subsection-why-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width-desktop);
    width: 100%;
    gap: 0;
    margin: 0;
}

.lf-why-column-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: 0;
    margin: 0;
}

.lf-why-text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 0;
    margin: 0;
}

.lf-why-label {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.36px;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lf-why-title {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: -0.56px;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lf-why-description {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.32px;
    color: #020200;
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
}

.lf-why-column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 24px;
    min-width: 0;
    margin: 0;
}

.lf-why-step {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 12px 16px;
    margin: 0;
}

.lf-why-icon-container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.lf-why-icon {
    width: 51.2px;
    height: 51.2px;
    display: block;
    flex-shrink: 0;
}

.lf-why-step-text {
    flex: 1;
    min-width: 0;
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: normal;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lf-why-step-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 4px 0;
    padding: 0;
}

.lf-why-step-subtitle {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

/* SubSection-Why-2 */
.lf-subsection-why-2 {
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    max-width: var(--max-width-desktop);
    width: 100%;
    padding: 0;
    margin: 0;
}

.lf-why-separator {
    width: 100%;
    max-width: var(--max-width-desktop);
    height: 1px;
    background-color: #d8d8d8;
    border: none;
    margin: 0;
    padding: 0;
}

.lf-why-steps-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
}

.lf-why-step-bottom {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

/* Configurator Section */
.lf-configurator-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 44px 20px 88px 20px;
    margin: 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 20%, #F2F5F9 20%, #F2F5F9 100%);
}

.lf-configurator-box {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width-desktop);
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 35px 0px #d3dde9;
    margin: 0;
    padding: 0;
}

.lf-configurator-row {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    max-width: var(--max-width-desktop);
    width: 100%;
    padding: 44px;
    margin: 0;
}

.lf-configurator-col-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.lf-configurator-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
}

.lf-configurator-title {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: -0.52px;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lf-title-bold {
    font-weight: 700;
}

.lf-configurator-description {   
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.28px;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lf-configurator-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    margin-top: 12px;
    padding: 0;
}

.lf-config-step {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 66px;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
}

.lf-config-label {
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.3px;
    color: #374151;
    margin: 0;
    padding: 0;
    display: block;
}

/* Custom Select Styles */
.lf-custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

.lf-select-trigger {
    background: #ffffff;
    border: 1px solid #d8d8d8;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.lf-select-trigger:hover {
    border-color: #252525;
    box-shadow: 0 0 0 1px #252525;
}

.lf-custom-select.active .lf-select-trigger {
    border-color: #252525;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.lf-select-value {
    flex: 1;
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    color: #666c77;
    transition: all 0.2s ease;
}

.lf-custom-select.has-value .lf-select-value {
    font-weight: 700;
    color: #020200;
}

.lf-dropdown-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lf-custom-select.active .lf-dropdown-icon {
    transform: rotate(180deg);
}

.lf-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.lf-custom-select.active .lf-select-dropdown {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

.lf-select-option {
    padding: 6px 12px;
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.28px;
    color: #020200;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lf-select-option:hover {
    background: #f5f5f5;
    color: #ff4e0f;
}

.lf-select-option:active {
    background: #e8e8e8;
}

.lf-select-option.selected {
    background: #f5f5f5;
    color: #ff4e0f;
    font-weight: 700;
}

/* Scrollbar styling */
.lf-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.lf-select-dropdown::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.lf-select-dropdown::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 3px;
}

.lf-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #c0c0c0;
}

/* Right Column - Result */
.lf-configurator-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin: 0;
    padding: 0;
}

/* Configurator None State Styles */
.lf-config-none {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    width: 100%;
}

.lf-config-none-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.lf-config-none-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    text-align: center;
}

.lf-config-none-title {
    font-size: 14px;
    font-weight: 400;
    color: #020200;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.28px;
}

.lf-config-none-subtitle {
    font-family: 'SST', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #020200;
    margin: 0;
    line-height: 1.75;
    letter-spacing: -0.4px;
}

.lf-config-none-images {
    display: flex;
    gap: 5px;
    align-items: end;
    justify-content: center;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 0;
    width: 100%;
}

.lf-config-none-image {
    position: relative;
    width: auto;
    height: 100px;
    overflow: hidden;
}

.lf-config-none-image:nth-child(1) {
    width: 136px;
}

.lf-config-none-image:nth-child(2) {
    width: 117px;
}

.lf-config-none-image:nth-child(3) {
    width: 126px;
}

.lf-config-none-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: cover;
}

.lf-config-none-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 277px;
}

.lf-config-none-feature {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.lf-config-none-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lf-config-none-text {
    font-family: 'SST', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #020200;
    margin: 0;
    line-height: 1;
    position: relative;
    top: 2px;
}

.lf-config-none-highlight {
    font-weight: 700;
    text-transform: uppercase;
}

.lf-config-result {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.lf-config-product-header {
    border-bottom: 1px solid #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 0;
    margin: 0;
}

.lf-config-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.lf-config-product-label {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lf-config-product-name {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.72px;
    color: #020200;
    margin: 0;
    padding: 0;
}

.lf-config-product-image {
    width: 113.615px;
    height: 84px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.lf-config-product-img {
    width: 100%;
    max-width: none;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.lf-config-product-list {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #020200;
    list-style-position: outside;
    margin: 0;
    padding: 0 0 0 18px;
}

.lf-config-product-list li {
    margin: 0 0 4px 0;
    padding: 0;
}

.lf-config-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.lf-config-badge {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.lf-badge-icon {
    width: 15.768px;
    height: 15.768px;
    flex-shrink: 0;
}

.lf-badge-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    color: #020200;
    margin: 0;
    padding: 4px 0;
}

.lf-badge-highlight {
    font-weight: 700;
    text-transform: uppercase;
}

.lf-config-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
}

.lf-config-btn-primary {
    background: #ff4e0f;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0;
}

.lf-config-btn-primary:hover {
    background: #e54408;
}

.lf-config-btn-primary span {
    flex: 1;
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.34px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.lf-config-btn-primary .lf-btn-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.lf-config-btn-secondary {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin: 0;
}

.lf-config-btn-secondary:hover {
    opacity: 0.8;
}

.lf-config-btn-secondary span {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #ff4e0f;
    margin: 0;
    padding: 0;
}

.lf-config-btn-secondary .lf-btn-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Package Foto Section */
.lf-package-foto-section {
    background-color: #F2F5F9;
    padding: 44px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Banner */
.lf-package-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width-desktop);
    width: 100%;
    position: relative;
    border-bottom: 1px solid #d8d8d8;
}

.lf-banner-content {
    flex: 1;
    height: 85px;
    display: flex;
    align-items: center;
    padding: 24px 0;
    overflow: hidden;
    position: relative;
}

.lf-banner-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 44px;
    padding: 0;
    width: 100%;
}

.lf-banner-title {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex: 1;
}

.lf-banner-label {
    font-family: 'SST', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    color: #020200;
    margin: 0;
    white-space: nowrap;
}

.lf-banner-name {
    font-family: 'SST', sans-serif;
    font-weight: bold;
    font-size: 28px;
    line-height: 1;
    color: #020200;
    letter-spacing: -0.56px;
    margin: 0;
    white-space: nowrap;
}

.lf-banner-description {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lf-banner-description p {
    font-size: 14px;
    line-height: 17px;
    color: #020200;
    text-align: right;
    letter-spacing: -0.28px;
    margin: 0;
    max-width: 450px;
}

.lf-banner-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 258px;
    height: 191px;
    z-index: 10;
    pointer-events: none;
}

.lf-banner-img {
    width: 100%;
    height: 132%;
    object-fit: cover;
    object-position: left top;
}

/* Packages Grid */
.lf-packages-grid {
    display: flex;
    gap: 24px;
    max-width: var(--max-width-desktop);
    width: 100%;
}

/* Package AB Container */
.lf-package-ab-container {
    flex: 1;
    position: relative;
}

/* Configurator Tabs */
.lf-config-tabs-wrapper {
    z-index: 20;
    display: none; /* Hidden by default */
}

.lf-config-tabs {
    background: #ffffff;
    border-radius: 4px;
    padding: 6px;
    display: flex;
    gap: 2px;
}

.lf-config-tab {
    font-family: 'SST', sans-serif;
    width: 35px;
    height: 34px;
    border: 2px solid #ffffff;
    background: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.lf-config-tab:hover {
    background: #f8f9fa;
    color: #333;
}

.lf-config-tab.lf-config-tab-active {
    background-color: #fff;
    color: #020200;
    border: 2px solid #FF4E0F;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.lf-package-tabs-wrapper {
    position: absolute;
    top: 246px;
    right: 10px;
    z-index: 20;
}

.lf-package-variant {
    opacity: 1;
    animation: fadeIn 0.4s ease-in-out;
}

.lf-package-variant.fade-out {
    animation: fadeOut 0.3s ease-in-out forwards;
}

.lf-package-variant.fade-in {
    animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lf-package-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lf-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.lf-package-product {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.lf-product-image {
    position: relative;
    width: 288px;
    height: 182px;
}

.lf-product-main-img {
    width: 100%;
    height: 182px;
    object-fit: cover;
}

.lf-product-lens {
    position: absolute;
    right: 34%;
    top: 10px;
    width: 151px;
    height: 182px;
    object-fit: cover;
}

.lf-product-accessory {
    position: absolute;
    right: 22%;
    top: 126px;
    width: 45px;
    height: 56px;
    object-fit: cover;
}

.lf-product-flash {
    position: absolute;
    right: 20%;
    top: 63px;
    width: 151px;
    height: 150px;
    object-fit: cover;
}

.lf-product-card {
    position: absolute;
    right: 0;
    top: 55px;
    width: 158px;
    height: 158px;
    object-fit: cover;
}

.lf-product-accessory-2 {
    position: absolute;
    right: 0;
    top: 115px;
    width: 144px;
    height: 141px;
    object-fit: cover;
}

.lf-product-extra {
    position: absolute;
    right: 36%;
    top: 11px;
    width: 41px;
    height: 34px;
    transform: rotate(90deg);
    object-fit: cover;
}

.lf-package-badge {
    position: absolute;
    left: -10px;
    top: -6px;
    background: #ff4e0f;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: white;
}

.lf-badge-label {
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.lf-badge-price {
    font-family: 'SST', sans-serif;
    font-weight: 900;
    font-size: 20px;
    margin: 0;
    line-height: 1;
}

/* Package Info */
.lf-package-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.lf-package-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lf-package-label {
    font-family: 'SST', sans-serif;
    font-size: 14px;
    font-weight: 200;
    color: #000000;
    margin: 0;
    height: 10px;
}

.lf-package-name {
    font-family: 'SST', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #020200;
    letter-spacing: -0.4px;
    margin: 0;
}

.lf-package-tabs {
    background: #F2F5F9;
    border-radius: 4px;
    padding: 6px;
    display: flex;
    gap: 2px;
}

.lf-tab {
    background: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 4px 12px;
    font-family: 'SST', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #020200;
    letter-spacing: -0.28px;
    cursor: pointer;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.lf-tab:not(.lf-tab-active) {
    background: transparent;
    box-shadow: none;
}

/* Package List */
.lf-package-list {
    font-size: 12px;
    color: #000000;
    margin: 0;
    padding: 0;
    list-style: disc;
    height: 200px;
}

.lf-package-list li {
    margin-bottom: 4px;
    margin-left: 18px;
    line-height: normal;
}

/* Package Badges */
.lf-package-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lf-package-badge-item, .lf-package-badge-item-one {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lf-badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lf-package-badge-item p, .lf-package-badge-item-one p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #020200;
    margin: 0;
    line-height: normal;
}

.lf-badge-highlight {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

/* Package Buttons */
.lf-package-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lf-package-btn-primary {
    background: #ff4e0f;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    cursor: pointer;
}

.lf-package-btn-primary span {
    font-family: 'SST', sans-serif;
    font-size: 17px;
    color: white;
    letter-spacing: -0.34px;
}

.lf-package-btn-secondary {
    background: transparent;
    border: none;
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.lf-package-btn-secondary:hover span {
    border-bottom: 1px dashed #ff4e0f;
}

.lf-package-btn-secondary span {
    font-family: 'SST', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ff4e0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.lf-btn-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Package Footer (in SubSection-Package-Foto) */
.lf-package-footer {
    width: 100%;
    max-width: var(--max-width-desktop);
    padding: 44px 0;
    border-top: 1px solid #d8d8d8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lf-footer-separator {
    display: none;
}

.lf-package-footer .lf-footer-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 0 20px;
}

.lf-footer-title {
    font-family: 'SST', sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #020200;
    margin: 0;
    line-height: normal;
}

.lf-footer-description {
    font-size: 14px;
    line-height: 22px;
    color: #020200;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 16px;
}

.lf-footer-btn {
    background: transparent;
    border: none;
    border-radius: 4px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin-top: 16px;
}

.lf-footer-btn span {
    font-family: 'SST', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ff4e0f;
}

/* Responsive */
@media (max-width: var(--breakpoint-tablet)) {
    .lf-packages-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .lf-banner-content {
        height: auto;
        min-height: 85px;
        flex-direction: column;
        padding: 24px;
    }
    
    .lf-banner-text {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0;
    }
    
    .lf-banner-title {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .lf-banner-description {
        justify-content: center;
    }
    
    .lf-banner-description p {
        text-align: center;
        max-width: 100%;
    }
    
    .lf-banner-image {
        position: static;
        width: 200px;
        height: 150px;
        margin-top: 20px;
    }
    
    .lf-banner-img {
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: var(--breakpoint-mobile)) {
    .lf-package-foto-section {
        padding: 24px 16px;
    }
    
    .lf-banner-label {
        font-size: 18px;
    }
    
    .lf-banner-name {
        font-size: 24px;
    }
    
    .lf-product-image {
        width: 240px;
        height: 150px;
    }
    
    .lf-package-name {
        font-size: 18px;
    }
}

/* Package Sections */
.lf-package-section {
    padding: 80px 0;
}

.lf-package-title {
    font-family: "SST", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    text-align: left;
}

.lf-package-highlight {
    color: #FF6B35;
}

.lf-package-description {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.lf-banner-image {
    width: 258px;
    height: 191px;
    border-radius: 12px;
    overflow: hidden;
}

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

.lf-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lf-package-card {
    padding: 44px 20px;
    background-color: none;
}

.lf-package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.lf-package-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
}

.lf-package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
}

.lf-icon {
    width: 40px;
    height: 40px;
}

.lf-package-info {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
}

.lf-package-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.lf-tab {
    width: 35px;
    height: 34px;
    border: 2px solid #e1e5e9;
    background: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.lf-tab.lf-tab-active {
    background-color: #fff;
    color: #020200;
    border-color: #fff;
}

.lf-package-name {
    font-family: "SST", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
}

.lf-package-price {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
}

.lf-package-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 24px;
    text-align: center;
}

.lf-package-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Foundation Section */
.lf-foundation-section {
    padding: 44px 0;
    background-color: #f8f9fa;
    background: linear-gradient(to bottom, #F2F5F9 0%, #F2F5F9 40%, #FFF 40%, #FFF 100%);    
}

.lf-foundation-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 35px 0px #d3dde9; /* zgodnie z Figmą */
    padding: 64px 44px;
}

.lf-foundation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Foundation left column (text) */
.lf-foundation-title {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 35px;
    letter-spacing: -0.52px;
    color: #020200;
    margin: 0 0 24px 0;
}

.lf-foundation-lead {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.38px;
    color: #020200;
    margin: 0;
}

.lf-foundation-desc {
    font-family: "SST", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #020200;
    margin: 16px 0 0 0;
}

.lf-foundation-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lf-funding-step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
}

.lf-step-icon .lf-icon {
    width: 48px;
    height: 32px;
    object-fit: contain;
}

.lf-step-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lf-step-title {
    font-weight: 700;
    font-size: 18px;
    color: #020200;
    margin: 0;
}

.lf-step-desc {
    font-size: 16px;
    line-height: 1.3;
    color: #020200;
    margin: 0;
}

/* Ask Section */
.lf-ask-section {
    background-color: #ffffff;
    padding: 44px 0;
}

.lf-ask-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.lf-ask-title-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 0 24px;
}

.lf-ask-title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 35px;
    color: #020200;
    text-align: center;
    margin: 0;
    letter-spacing: -0.52px;
}

.lf-ask-banner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    max-width: var(--max-width-desktop);
    width: 100%;
    margin: 0 auto;
}

.lf-ask-row {
    display: flex;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.lf-ask-row-2 {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

/* Detailed benefits styling for Row2 */
.lf-ask-benefit-detailed {
    padding: 6px 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}


.lf-ask-col-left {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
}

.lf-ask-container-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
}

.lf-ask-text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.lf-ask-description {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: #020200;
    margin: 0;
    letter-spacing: -0.32px;
}

.lf-ask-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
}

.lf-ask-benefit {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 6px 16px;
    width: 100%;
}

.lf-benefit-icon {
    display: flex;
    gap: 7px;
    align-items: center;
}

.lf-benefit-icon .lf-icon {
    width: 44.8px;
    height: 44.8px;
    object-fit: contain;
}

.lf-benefit-text {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #020200;
    margin: 0;
    flex: 1;
}

.lf-benefit-text-multi {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.lf-benefit-text-multi p {
    font-family: "SST", sans-serif;
    font-size: 16px;
    line-height: normal;
    color: #020200;
    margin: 0;
}

.lf-benefit-text-bold {
    font-weight: 700 !important;
}

.lf-text-normal {
    font-weight: 400 !important;
}

.lf-ask-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lf-ask-image-container {
    position: relative;
    width: 526px;
    height: 356px;
}

.lf-ask-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.lf-ask-image img{
    width: 100%;
    object-fit: cover;
}


.lf-discount-badge {
    position: absolute;
    left: 311px;
    top: -11.15px;
    width: 141px;
    height: 141px;
    background: #ff4e0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-badge-content {
    display: flex;
    flex-direction: column;
    gap: 6.669px;
    align-items: center;
    justify-content: center;
    padding: 13.338px 18.895px;
}

.lf-badge-label {
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    color: white;
    margin: 0;
    line-height: normal;
}

.lf-badge-discount {
    font-weight: 900;
    font-size: 32px;
    color: white;
    margin: 0;
    line-height: normal;
}


/* Responsive styles for Ask Section */
@media (max-width: 1024px) {
    .lf-ask-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .lf-ask-col-left {
        width: 100%;
        gap: 40px;
    }
    
    .lf-ask-image-container {
        width: 100%;
        max-width: 526px;
        height: auto;
        aspect-ratio: 526/356;
    }
    
    .lf-discount-badge {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
}

@media (max-width: 768px) {
    .lf-ask-container {
        padding: 0 16px;
    }
    
    .lf-ask-title {
        font-size: 22px;
        line-height: 30px;
    }
    
    .lf-ask-banner {
        padding: 24px 16px;
    }
    
    .lf-ask-col-left {
        gap: 32px;
    }
    
    .lf-ask-benefits {
        gap: 16px;
    }
    
    .lf-ask-benefit {
        padding: 8px 12px;
        gap: 16px;
    }
    
    .lf-benefit-icon .lf-icon {
        width: 40px;
        height: 40px;
    }
    
    .lf-benefit-text,
    .lf-benefit-text-multi p {
        font-size: 16px;
    }
    
    .lf-discount-badge {
        width: 120px;
        height: 120px;
        top: -15px;
    }
    
    
    .lf-badge-discount {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .lf-ask-title {
        font-size: 26px;
        line-height: 28px;
    }
    
    .lf-ask-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .lf-discount-badge {
        width: 100px;
        height: 100px;
        top: -10px;
    }
    
    .lf-badge-label {
        font-size: 12px;
    }
    
    .lf-badge-discount {
        font-size: 24px;
    }
}

/* Banner FullScreen */
.lf-banner-fullscreen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 128px 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    background-image: url('https://images.scentre.pl/images/SCENTRE_FOTOBIZNES/img/Section-Banner-FullScreen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lf-banner-fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.33);
    z-index: 0;
}

.lf-banner-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.lf-banner-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    padding: 0 24px;
}

.lf-banner-title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: white;
    text-align: center;
    margin: 0;
    letter-spacing: -0.8px;
}

.lf-banner-subtitle {
    font-family: "SST", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: white;
    text-align: center;
    width: 100%;
}

.lf-banner-subtitle p {
    margin: 0;
}

.lf-text-bold {
    font-weight: 700;
}


/* Responsive styles for Banner FullScreen */
@media (max-width: 768px) {
    .lf-banner-fullscreen {
        padding: 80px 0;
    }
    
    .lf-banner-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .lf-banner-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .lf-banner-subtitle {
        font-size: 17px;
    }
    
    .lf-banner-btn span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lf-banner-fullscreen {
        padding: 60px 0;
    }
    
    .lf-banner-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.56px;
    }
    
    .lf-banner-subtitle {
        font-size: 16px;
    }
    
    .lf-banner-btn {
        padding: 10px 16px;
        gap: 24px;
    }
    
    .lf-banner-btn span {
        font-size: 15px;
    }
    
    .lf-banner-btn .lf-btn-arrow {
        width: 12px;
        height: 12px;
    }
}

/* Footer */
.lf-footer {
    background: #ffffff;
    padding: 60px 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.lf-footer-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: center;
    width: 100%;
}

.lf-footer-links {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    margin: 0;
    width: 100%;
    line-height: normal;
    display: flex;
    justify-content: center;
    gap: 26px;
}

.lf-footer-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lf-footer-link:hover {
    color: #ff4e0f;
    text-decoration: underline;
}

.lf-footer-contact {
    font-size: 13px;
    color: #020200;
    line-height: 1.3;
    width: 100%;
}

.lf-footer-contact p {
    margin: 0;
    line-height: normal;
    white-space: pre-wrap;
}

.lf-footer-phone {
    font-weight: bold;
    font-size: 14px;
    color: #020200;
}

.lf-footer-email {
    font-weight: bold;
    font-size: 14px;
    color: #ff4e0f;
    text-decoration: none;
}

.lf-footer-email:hover {
    text-decoration: underline;
}

.lf-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-footer-logo-img {
    width: 162px;
    height: 25px;
}

/* Responsive Design */
/* Tablet & Mobile - 1024px and below */
@media (max-width: 1024px) {
    /* TopSection */
    .lf-top-section {
        height: 80vh;
    }
    
    .lf-top-nav {
        padding: 16px 24px;
    }
    
    .lf-nav-container {
        gap: 16px;
    }
    
    .lf-nav-menu {
        gap: 16px;
    }
    
    .lf-nav-link {
        font-size: 14px;
    }
    
    .lf-hero-title {
        font-size: 40px;
        white-space: normal;
        padding: 0 20px;
    }
    
    .lf-hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .lf-hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 400px;
        padding: 0 20px;
        margin: 0 auto;
    }
    
    .lf-hero-buttons .lf-btn {
        width: 100%;
        gap: 0;
        white-space: wrap;
        text-align: left;
        line-height: 1.3;
    }
    
    /* Section Why */
    .lf-why-section {
        padding: 44px 24px;
    }
    
    .lf-subsection-why-1 {
        flex-direction: column;
        gap: 40px;
    }
    
    .lf-why-column-left,
    .lf-why-column-right {
        width: 100%;
        padding: 0;
        gap: 12px;
    }
    .lf-why-step{
        padding: 12px 0;
    }
    
    .lf-why-steps-bottom {
        gap: 24px;
    }
    
    .lf-why-step-bottom {
        max-width: 100%;
    }
    
    /* Configurator */
    .lf-configurator-box {
        padding: 40px 24px;
    }
    
    .lf-configurator-row {
        flex-direction: column;
        gap: 40px;
        padding: 12px;
    }
    
    .lf-configurator-col-left,
    .lf-configurator-col-right {
        width: 100%;
    }
    
    /* Config None State Mobile */
    .lf-config-none {
        padding: 24px 16px;
        min-height: 300px;
    }
    
    .lf-config-none-content {
        gap: 20px;
    }
    
    .lf-config-none-product-info {
        gap: 6px;
    }
    
    .lf-config-none-title {
        font-size: 13px;
        letter-spacing: -0.26px;
    }
    
    .lf-config-none-subtitle {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing: -0.36px;
    }
    
    .lf-config-none-images {
        gap: 3px;
        padding-bottom: 00px;
    }
    
    .lf-config-none-image {
        height: 80px;
    }
    
    .lf-config-none-image:nth-child(1) {
        width: 110px;
    }
    
    .lf-config-none-image:nth-child(2) {
        width: 95px;
    }
    
    .lf-config-none-image:nth-child(3) {
        width: 102px;
    }
    
    .lf-config-none-features {
        gap: 10px;
        width: 100%;
        max-width: 240px;
    }
    
    .lf-config-none-feature {
        gap: 6px;
    }
    
    .lf-config-none-icon {
        width: 14px;
        height: 14px;
    }
    
    .lf-config-none-text {
        font-size: 11px;
        line-height: 1.2;
    }
    
    /* Packages */
    .lf-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
    }
    
    .lf-package-banner {
        flex-direction: row;
        padding: 0 20px;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }
    
    .lf-banner-content {
        flex: 1;
        height: auto;
        padding: 0;
    }
    
    .lf-banner-text {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    
    .lf-banner-title {
        text-align: left;
    }
    
    .lf-banner-description {
        text-align: left;
    }
    
    .lf-banner-image {
        position: static;
        transform: none;
        width: 130px;
        height: auto;
        flex-shrink: 0;
    }
    
    .lf-banner-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    /* Foundation */
    .lf-foundation-box {
        padding: 40px 24px;
    }
    
    .lf-foundation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Ask Section */
    .lf-ask-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .lf-ask-col-left {
        width: 100%;
    }
    
    .lf-ask-col-right {
        width: 100%;
    }
    
    .lf-ask-image-container {
        width: 100%;
        max-width: 526px;
        height: auto;
        aspect-ratio: 526/356;
        margin: 0 auto;
    }
    
    /* Package Footer */
    .lf-package-footer {
        padding: 30px 20px;
    }
    
    .lf-package-footer .lf-footer-content {
        padding: 0;
    }
    
    .lf-footer-title {
        font-size: 18px;
    }
    
    .lf-footer-description {
        font-size: 13px;
        line-height: 20px;
    }
    
    /* Footer */
    .lf-footer {
        padding: 40px 24px;
    }
    
    .lf-footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* Mobile & Small Tablets - 768px and below */
@media (max-width: 768px) {
    /* TopSection Mobile */
    .lf-top-section {
        height: 100vh;
        min-height: 100vh;
    }
    
    /* Mobile Navigation with Hamburger */
    .lf-hamburger {
        display: flex;
        order: 3;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .lf-logo-img {
        width: 100%;
        height: auto;
        max-height: 18px;
        object-fit: contain;
    }
    
    .lf-sony-center-img {
        width: 100%;
        height: auto;
        max-height: 28px;
        object-fit: contain;
        position: relative;
        top: 2px;
    }
    
    .lf-nav-container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }
    
    /* Group logos together */
    .lf-logo {
        order: 1;
        display: flex;
        justify-content: flex-start;
        flex-shrink: 0;
        margin-right: 16px;
    }
    
    .lf-sony-center-logo {
        order: 2;
        display: flex;
        justify-content: flex-start;
        flex-shrink: 0;
        margin-left: 0;
        align-items: center;
    }
    
    .lf-menu-overlay {
        display: block;
    }
    
    .lf-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(2, 2, 0, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .lf-nav-menu.active {
        right: 0;
    }
    
    .lf-nav-link {
        font-size: 18px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }
    
    .lf-nav-link:last-child {
        border-bottom: none;
    }
    
    .lf-top-nav {
        padding: 16px 20px;
    }
    
    .lf-hero-content {
        padding: 0 12px;
    }
    
    /* Hide hero subtitle on mobile */
    .lf-hero-content .lf-title-bold {
        display: none;
    }
    
    .lf-hero-title {
        font-size: 36px;
        white-space: normal;
        padding: 0;
    }
    
    .lf-hero-subtitle {
        font-size: 16px;
        padding: 0;
    }
    
    .lf-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0;
    }
    
    /* Why Section Mobile */
    .lf-subsection-why-1 {
        flex-direction: column;
        gap: 24px;
    }
    
    .lf-why-column-right {
        padding: 0;
    }
    
    .lf-why-steps-bottom {
        flex-direction: column;
        gap: 24px;
    }
    
    .lf-why-step-bottom {
        min-width: 100%;
        flex-direction: row;
        gap: 24px;
        align-items: center;
    }
    
    .lf-configurator-row {
        flex-direction: column;
        gap: 40px;
        padding: 12px;
    }
    
    .lf-config-product-name {
        font-size: 28px;
    }
    
    .lf-packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;;
    }
    
    .lf-package-banner {
        flex-direction: column;
        padding: 0px;
        text-align: center;
        gap: 20px;
    }
    
    .lf-banner-content {
        text-align: center;
    }
    
    .lf-banner-text {
        align-items: center;
    }
    
    .lf-banner-title,
    .lf-banner-description {
        text-align: center;
    }
    
    .lf-banner-image {
        width: 150px;
        margin: 0 auto;
    }
    
    .lf-foundation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lf-ask-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lf-footer {
        padding: 40px 20px;
    }
    
    .lf-footer-content {
        width: 100%;
        max-width: 100%;
        gap: 30px;
        padding: 0 20px;
    }
    
    .lf-footer-text {
        width: 100%;
    }
    
    .lf-footer-contact {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .lf-footer-contact p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .lf-footer-logo-img {
        width: 140px;
        height: auto;
    }
}

@media (max-width: var(--breakpoint-tablet)) {
    .lf-section-title {
        font-size: 28px;
    }
    
    .lf-hero-title {
        font-size: 32px;
    }
    
    .lf-banner-title {
        font-size: 28px;
    }
    
    .lf-why-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .lf-why-label {
        font-size: 16px;
    }
    
    .lf-why-step-title {
        font-size: 16px;
    }
    
    .lf-configurator-title {
        font-size: 22px;
        line-height: 30px;
    }
    
    .lf-foundation-box {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lf-animate-ready {
    opacity: 0;
    transform: translateY(20px);
}

.lf-fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.lf-btn:focus,
.lf-nav-link:focus,
.lf-select:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* Cashback Badge Hover Effect */
.lf-cashback-badge,
.lf-package-badge-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    padding: 6px;
    margin: -4px -6px;
}

/* Make sure the first badge (DOFINANSOWANIE) is not clickable */
.lf-package-badge-item-one {
    cursor: default;
}

.lf-cashback-promo-note {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.lf-cashback-promo-note strong {
    color: #FF6B35;
    font-weight: 600;
}

.lf-cashback-badge:hover,
.lf-package-badge-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.lf-cashback-badge:hover .lf-badge-highlight,
.lf-package-badge-item:hover .lf-badge-highlight {
    text-decoration: underline;
    text-decoration-color: #FF6B35;
    text-decoration-thickness: 2px;
}

/* Modal Styles */
.lf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lf-modal-overlay.show {
    display: flex;
}

.lf-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    animation: slideIn 0.3s ease;
}

.lf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #eee;
}

.lf-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.lf-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.lf-modal-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.lf-modal-body {
    padding: 24px;
}

.lf-cashback-promo {
    margin-bottom: 24px;
    padding: 20px 0;
}

.lf-cashback-promo:last-child {
    margin-bottom: 0;
}

.lf-cashback-promo h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.lf-cashback-promo p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.lf-cashback-promo strong {
    color: #FF6B35;
    font-weight: 600;
}

.lf-cashback-link {
    display: inline-block;
    background: #FF6B35;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lf-cashback-link:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
