/* Definicje czcionek */
@font-face {
    font-family: 'DelaGothicOne';
    src: url('DelaGothicOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Zmienne kolorów */
:root {
    /* Kolory główne */
    --primary-brown: #2F160D;
    --primary-gold: #EECE6B;
    --gold-hover: #EECE6B;
    --landrine: #E6B3B3;
    --mustard-light: #F8EBC4;
    --beige-border: #D4C3B2;
    --beige-main: #F9F0E7;
    /* Kolory tekstu */
    --text-dark: #333;
    --text-brown: #2F160D;
    
    /* Kolory tła */
    --bg-white-transparent: rgba(255, 255, 255, 0.9);
    --bg-white-semi: rgba(255, 255, 255, 1);
    
    /* Kolory cieni */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --shadow-gold-hover: rgba(212, 175, 55, 0.4);
    
    /* Szerokości */
    --content-width: 65%;
}

/* Usunięcie pogrubienia z nagłówków h2 */
h2 {
    font-weight: normal;
}

/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.commerce-html {
    overflow: visible !important;
    overflow-y: auto !important;
    height: auto !important;
    position: relative !important;
    scroll-padding-top: 120px; /* Wysokość header + margines */
}

.homepage-body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow: visible !important;
    height: auto !important;
    position: relative !important;
}

.homepage-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    background-size: cover;
    background-attachment: scroll;
    z-index: -1;
}

@media (min-width: 768px) {
    .homepage-body::before {
        display: none;
    }
    
    .homepage-body {
        background: white;
        background-size: 100% 100%;
        background-attachment: scroll;
    }
}

/* Nagłówek */
.top-header {
    display: block;
    background: var(--bg-white-semi);
    padding: 0;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.header-content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    padding: 15px 50px;
}

/* Nawigacja desktop */
.header-nav {
    display: flex;
    align-items: center;
    order: 2;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-brown);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger menu button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    order: 2;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-brown);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 60px 20px 20px 20px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-brown);
    text-decoration: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--beige-border);
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
}

.nav-arrow {
    font-size: 1.2rem;
    color: var(--primary-brown);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover .nav-arrow {
    color: var(--primary-gold);
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.mobile-cta-button {
    background: #E6B3B3;
    color: var(--primary-brown);
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-cta-button:hover {
    background: #D4A0A0;
    transform: translateY(-2px);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contact-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-brown);
    margin: 0;
}

.mobile-contact-link {
    color: var(--primary-brown);
    text-decoration: underline;
    font-weight: 600;
}

.mobile-contact-link:hover {
    color: var(--primary-gold);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    order: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-logo-img {
    width: 60px;
    height: auto;
}

.header-logo-text h1 {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin: 0;
}

.header-logo-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-brown);
    margin: 0;
    opacity: 0.8;
}

/* Mobile-only elements */
.mobile-only {
    display: none;
}

/* Kontener główny */
.homepage-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Logo */
.logo-container {
    text-align: center;
    padding: 40px 20px 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo {
    max-width: 120px;
    height: auto;
}

/* Główna sekcja z tekstem */
.main-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.main-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
    line-height: 1.4;
}

.quiz-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
}

.demo-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    margin-top: 25px;
    margin-bottom: 15px;
}

.free-text {
    color: var(--primary-brown);
    background-color: var(--mustard-light);
    font-weight: 600;
}

/* Kontener główny hero */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-text {
    text-align: left;
}

/* Grafika główna */
.graphics-container {
    margin: 30px 0;
    text-align: center;
}

.graphics-mobile {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.graphics-desktop {
    display: none;
}

/* Kontener dla środkowych sekcji - grid dwukolumnowy */
.middle-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1600px;
    align-items: start;
}

/* Sekcja FAQ */
.faq-section {
    max-width: none;
    margin: 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0;
}

.faq-item {
    background: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
    border-bottom: 1px solid #E0E0E0;
}

.faq-item:hover {
    transform: none;
    box-shadow: none;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    transition: none;
}

.faq-question:hover {
    background: none;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-arrow {
    font-size: 1.2rem;
    color: var(--primary-brown);
    transition: transform 0.3s ease;
    margin-left: 15px;
    position: relative;
    width: 16px;
    height: 12px;
    display: inline-block;
}

.faq-arrow::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: var(--primary-brown);
    transform: rotate(45deg);
    top: 4px;
    left: 0px;
}

.faq-arrow::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: var(--primary-brown);
    transform: rotate(-45deg);
    top: 4px;
    right: 0px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: none;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 0 20px 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    line-height: 1.6;
    text-align: left;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    padding-bottom: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-question {
    background: none;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Sekcja Wzory quizu i kodów QR */
.designs-section {
    max-width: none;
    margin: 0;
}

.designs-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    margin-bottom: 40px;
    line-height: 1.6;
}

.designs-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.designs-container::-webkit-scrollbar {
    display: none;
}

.design-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid var(--beige-border);
    border-radius: 15px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
}

.design-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    transition: none;
}

.design-image:hover {
    transform: none;
    box-shadow: none;
}

.design-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin: 15px 0 0 0;
}

/* Sekcje */
.section-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
}

/* Jak to działa */
.how-it-works {
    padding: 0px 0;
    max-width: none;
    margin: 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 115%;
    background-color: var(--beige-main);
    z-index: -1;
    margin-top: -30px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    background: var(--bg-white-transparent);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.step-number {
    background: var(--primary-gold);
    color: var(--primary-brown);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-brown);
    margin: 0;
    line-height: 1.4;
}

/* Co otrzymujecie */
.what-you-get {
    max-width: none;
    margin: 0;
}

.package-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.package-image {
    width: 100%;
    max-width: 400px;
    text-align: center;
    order: 1;
}

.package-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.package-content {
    width: 100%;
    max-width: 600px;
    order: 2;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 15px;
}

.benefit-icon {
    background: #F8BEB3;
    color: var(--primary-brown);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.benefit-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    margin: 0;
}

.package-footer {
    text-align: left;
}

.package-price-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
}

.package-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto;
}

.cta-button-order {
    background: var(--primary-gold);
    color: var(--primary-brown);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold-hover);
}

.cta-button-demo {
    background: var(--bg-white-transparent);
    color: var(--primary-brown);
    border: 2px solid var(--primary-gold);
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button-demo:hover {
    background: var(--primary-gold);
    color: var(--primary-brown);
    transform: translateY(-2px);
}

.benefits-cta {
    background: none;
    padding: 40px 0;
    border-radius: 0;
    box-shadow: none;
}

.free-offer {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Przycisk CTA */
.cta-container {
    text-align: center;
    padding: 30px 20px;
}

.cta-button-1 {
    background: var(--landrine);
    color: var(--primary-brown);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button-2 {
    padding-top: 20px;
    background: var(--bg-white-transparent);
    color: var(--primary-brown);
    border: 1px solid var(--landrine);
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button-3 {
    padding-top: 20px;
    background: var(--bg-white-transparent);
    color: var(--primary-brown);
    border: 1px solid var(--primary-gold);
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.cta-button:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold-hover);
}

/* Kontener dla ostatnich sekcji - grid dwukolumnowy */
.bottom-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 10px 0px;
}

.left-column {
    display: contents;
}

.right-column {
    /* Pusta na mobile, na desktop będzie zawierać dodatkową zawartość */
}

/* Sekcja "O nas" */
.about-section {
    padding: 0;
    max-width: none;
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    line-height: 1.6;
    text-align: left;
}

/* Kontakt */
.contact-section {
    padding: 0;
    max-width: none;
    margin: 0;
}

.contact-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-brown);
    margin-bottom: 25px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-brown);
    margin-bottom: 0;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-brown);
    text-align: center;
    padding: 20px;
}

/* Footer */
.footer {
    padding: 30px 0px;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-brown);
    margin-bottom: 5px;
}

.footer-credits {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-brown);
}

/* Responsywność - Desktop */
@media (min-width: 768px) {
    /* Scroll padding dla desktop */
    html.commerce-html {
        scroll-padding-top: 100px;
    }
    
    /* Pokaż nagłówek na desktop */
    .top-header {
        display: block;
        position: sticky;
        top: 0;
        z-index: 1003;
    }
    
    /* Ukryj burger menu na desktop */
    .burger-menu {
        display: none;
    }
    
    /* Pokaż nawigację desktop */
    .desktop-nav {
        display: flex;
    }
    
    /* Ukryj mobile menu na desktop */
    .mobile-nav {
        display: none;
    }

    /* Ukryj logo mobile na desktop */
    .mobile-only {
        display: none;
    }

    .homepage-container {
        padding-top: 0;
        max-width: 1500px;
        padding: 0 50px;
    }

    .logo {
        max-width: 150px;
    }

    .main-content {
        padding-top: 40px;
        max-width: 1500px;
    }

    .hero-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 60px;
        justify-content: space-between;
    }

    .hero-text {
        flex: 1;
        text-align: left;
        max-width: 500px;
    }

    .graphics-container {
        flex: 1;
        margin: 0;
        max-width: 600px;
        text-align: center;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .main-subtitle {
        font-size: 1.1rem;
    }

    .quiz-info {
        font-size: 1.1rem;
    }

    .demo-info {
        font-size: 1.1rem;
        margin-top: 40px;
    }

    .graphics-mobile {
        display: none;
    }

    .graphics-desktop {
        display: block;
        max-width: 88%;
        height: auto;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Desktop layout dla kroków */
    .how-it-works {
        max-width: none;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
        margin: 0 auto;
    }

    .step {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        min-height: 180px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

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

    /* Desktop layout dla benefitów */
    .what-you-get {
        max-width: none;
    }

    .package-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;
    }

    .how-it-works::before {
        height: 130%;
    }

    .package-image {
        max-width: none;
        order: 2;
    }

    .package-img {
        width: 100%;
        max-width: 450px;
    }

    .package-content {
        width: 100%;
        order: 1;
    }

    .package-footer {
        text-align: left;
    }

    .package-price-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .package-buttons {
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
        align-items: stretch;
        max-width: none;
        margin: 0;
        width: var(--content-width);
    }

    .cta-button-order,
    .cta-button-demo {
        flex: 1;
    }

    .benefits-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        justify-content: end;
    }

    .benefits-cta {        
        padding-top: 0px;
        padding-left: 40px;
        max-width: 500px;
    }

    .free-offer {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .contact-item {
        font-size: 1.1rem;
        display: block;
        margin: 0;
        padding-right: 50px;
    }

    .contact-info {
        display: flex;
    }

    /* Desktop layout dla środkowych sekcji */
    .middle-sections {
        margin-top: 100px;
    }

    /* Desktop layout dla sekcji FAQ */
    .faq-section {
        width: var(--content-width);
        margin-top: 120px;
        text-align: left;
    }

    /* Desktop layout dla sekcji wzorów */
    .designs-section {
        margin: 0;
        text-align: left;
    }

    .designs-subtitle {
        text-align: left;
    }

    .designs-container {
        justify-items: start;
    }

    .design-item {
        padding: 30px;
        border: 1px solid var(--beige-border);
        border-radius: 15px;
        background: transparent;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .design-image {
        max-width: 300px;
        border-radius: 10px;
    }

    .design-title {
        font-size: 1.3rem;
        margin: 20px 0 0 0;
    }

    .faq-container {
        max-width: 900px;
        gap: 0;
        margin: 0;
    }

    .faq-question {
        padding: 25px 0;
    }

    .faq-question h3 {
        font-size: 1.2rem;
    }

    .faq-answer p,
    .faq-answer ul,
    .faq-answer ol {
        font-size: 1.1rem;
        padding: 0 0 25px 0;
    }

    .faq-answer ul,
    .faq-answer ol {
        padding-left: 20px;
        padding-bottom: 25px;
    }

    /* Desktop layout dla ostatnich sekcji */
    .bottom-sections {
        display: flex;
        flex-direction: column;
        gap: 80px;
        padding: 10px 0px;
        margin-top: 120px;
    }

    .left-column {
        display: contents;
    }

    .about-section {
        padding: 0;
        width: var(--content-width);
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-content {
        display: flex !important;
        flex-direction: row !important;
        gap: 40px;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .about-image {
        width: 300px;
        height: auto;
        border-radius: 20px;
        flex-shrink: 0;
    }

    .about-text {
        flex: 1;
        font-size: 1.1rem;
        text-align: left;
    }

    .contact-section {
        padding: 0;
        width: var(--content-width);
    }

    /* --- Korekta wyrównania i układu sekcji wzorów --- */
    .designs-section {
        margin: 0;      
        margin-top: 120px;          /* wyrównanie do lewej krawędzi contentu */
    }
    .designs-section .section-title {
        text-align: left;
        margin-bottom: 40px;
    }
    .designs-subtitle {
        text-align: left;
        margin-bottom: 30px;
    }
    .designs-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        width: 100%;
        justify-items: center;
    }
    .design-item {
        width: 100%;
        padding: 20px;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .homepage-container {
        max-width: 1500px;
        padding: 0 50px;
    }

    .main-content {
        max-width: 1500px;
    }

    .how-it-works,
    .what-you-get {
        max-width: none;
    }

    .package-container {
        gap: 80px;
        max-width: 1400px;
    }

    .package-img {
        max-width: 450px;
    }

    .package-price-text {
        font-size: 1.2rem;
    }

    .middle-sections {
        max-width: 1500px;
        gap: 120px;
        margin-top: 100px;
    }

    .bottom-sections {
        padding: 10px 0px;
        gap: 120px;
        margin-top: 120px;
    }

    .designs-subtitle {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }

    .design-title {
        font-size: 1.4rem;
        margin: 25px 0 0 0;
    }

    .faq-section {
        margin-top: 120px;
    }

    .faq-container {
        max-width: 1000px;
        gap: 0;
    }

    .faq-question {
        padding: 30px 0;
    }

    .faq-question h3 {
        font-size: 1.3rem;
    }

    .faq-answer p,
    .faq-answer ul,
    .faq-answer ol {
        font-size: 1.2rem;
        padding: 0 0 30px 0;
    }

    .faq-answer ul,
    .faq-answer ol {
        padding-left: 20px;
        padding-bottom: 30px;
    }

    .main-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Większy nagłówek na dużych ekranach */
    .header-logo-img {
        width: 70px;
    }

    .header-logo-text h1 {
        font-size: 1.7rem;
    }

    .header-logo-text p {
        font-size: 1rem;
    }
}

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

.step,
.benefit,
.free-offer,
.about-text,
.contact-info,
.contact-note {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
    transition: all 0.3s ease;
}

/* Przycisk CTA w sekcji benefits */
.benefits-cta .cta-button {
    background: var(--primary-gold);
    color: var(--primary-brown);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-gold);
    width: 100%;
}

.benefits-cta .cta-button:hover {
    background: var(--gold-hover);
    color: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold-hover);
}

/* Responsive header dla mobile */
@media (max-width: 767px) {
    /* Scroll padding dla mobile */
    html.commerce-html {
        scroll-padding-top: 90px;
    }
    
    /* Header sticky na mobile */
    .top-header {
        display: block;
        position: sticky;
        top: 0;
        z-index: 1003;
    }
    
    /* Gap między sekcjami na mobile */
    .middle-sections {
        gap: 100px;
        margin-top: 100px;
    }

    .package-content {
       margin-bottom: 20px;     
    }

    .benefits-list {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin-bottom: 0px;
    }
    
    .bottom-sections {
        gap: 100px;
        margin-top: 100px;
    }
    
    .designs-section {
        margin-top: 100px;
    }
    
    .faq-section {
        margin-top: 100px;
    }
    
    /* Ukryj nawigację desktop na mobile */
    .desktop-nav {
        display: none;
    }
    
    /* Pokaż burger menu na mobile */
    .burger-menu {
        display: flex;
    }
    
    /* Pokaż mobile menu */
    .mobile-nav {
        display: block;
    }
    
    /* Dostosuj header content */
    .header-content {
        position: relative;
    }
    
    .hero-section {
        display: flex;
        flex-direction: column;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        order: 1;
    }
    
    /* Tytuły i opisy pozostają w naturalnej kolejności */
    .hero-text .main-title {
        order: 1;
    }
    
    .hero-text .main-subtitle {
        order: 2;
    }
    
    .hero-text .quiz-info {
        order: 3;
        margin-bottom: 20px;
    }
    
    /* Obrazek wstawiamy do hero-text za pomocą CSS */
    .hero-text::after {
        content: '';
        order: 4;
        height: 450px;
        background-image: url('grafika_mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: -30px 0;
        width: 100%;
    }
    
    /* Ukrywamy oryginalny obrazek */
    .graphics-container {
        display: none;
    }
    
    /* Przyciski na końcu */
    .hero-text .cta-button-1 {
        order: 5;
        margin-top: 20px;
    }
    
    .hero-text .demo-info {
        order: 6;
    }
    
    .hero-text .cta-button-2 {
        order: 7;
    }
    
    /* Karuzela wzorów na mobile */
    .designs-container {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 0 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .designs-container::-webkit-scrollbar {
        display: none;
    }
    
    .design-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 10px 0;
    }

    .hero-text::after {
        margin: -55px 0;
    }
    
    .header-content {
        padding: 0 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .header-logo {
        gap: 10px;
    }
    
    .header-logo-img {
        width: 45px;
    }
    
    .header-logo-text h1 {
        font-size: 1.2rem;
    }
    
    .header-logo-text p {
        font-size: 0.8rem;
    }
    
    /* Burger menu na małych ekranach */
    .burger-menu {
        width: 25px;
        height: 20px;
    }
    
    .mobile-nav-link {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .top-header {
        padding: 12px 0;
    }
    
    .header-content {
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-logo-img {
        width: 50px;
    }
    
    .header-logo-text h1 {
        font-size: 1.3rem;
    }
    
    .header-logo-text p {
        font-size: 0.85rem;
    }
    
    /* Burger menu na średnich ekranach */
    .burger-menu {
        width: 28px;
        height: 22px;
    }
    
    .mobile-nav-link {
        padding: 14px 25px;
        font-size: 1.05rem;
    }
}

/* Formularz kontaktowy */
.contact-form-container {
    margin-top: 40px;
    transition: transform 0.3s ease;
}

.form-title {
    font-family: 'DelaGothicOne', serif;
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 25px;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group.full-width {
    width: 100%;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #D4C3B2;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: #FFFFFF;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #A0A0A0;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Montserrat', sans-serif;
}

.form-submit-btn {
    background: var(--landrine);
    color: var(--primary-brown);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 179, 179, 0.3);
    align-self: center;
    min-width: 350px;
    margin-top: 10px;
    max-width: 350px;
}

.form-submit-btn:hover {
    background: #D4A0A0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 179, 179, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(230, 179, 179, 0.3);
}

/* Responsive dla formularza */
@media (max-width: 768px) {
    .contact-form-container {
        margin-top: 30px;
    }

    .form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        min-width: auto;
    }

    .form-input, .form-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        font-size: 1.1rem;
        padding: 15px 30px;
        min-width: 180px;
    }
} 