/* Zmienne CSS */
:root {
    --bg-color: #ffffff;
    --accent-color: #ffff00;
    --accent-hover: #e6e600;
    --text-color: #2c2c2c;
    --text-light: #555555;
    --white: #ffffff;
    
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Maven Pro', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtelny akcent w tle dodający głębi pod efekty szkła */
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 255, 0, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 255, 255, 0.95) 0px, transparent 50%);
    background-attachment: fixed;
}

strong {
    color: #1c1c1c;
    background-color: #ffff00;
    padding: 0 0.2em;
    border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-wrap: balance;
}

h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.underline-handwritten {
    position: relative;
    display: inline-block;
    padding-bottom: 0.28em;
}

.underline-handwritten::after {
    content: '';
    position: absolute;
    left: -0.08em;
    right: -0.08em;
    bottom: 0.03em;
    height: 0.18em;
    background: linear-gradient(90deg, rgba(220, 18, 18, 0.92) 0%, rgba(255, 61, 61, 0.98) 50%, rgba(192, 10, 10, 0.92) 100%);
    border-radius: 999px;
    transform: rotate(-1.5deg) skewX(-12deg);
    box-shadow: 0 2px 0 rgba(130, 0, 0, 0.18);
    z-index: -1;
}

.underline-handwritten-green {
    position: relative;
    display: inline-block;
    padding-bottom: 0.28em;
}

.underline-handwritten-green::after {
    content: '';
    position: absolute;
    left: -0.08em;
    right: -0.08em;
    bottom: 0.03em;
    height: 0.18em;
    background: linear-gradient(90deg, rgba(0, 153, 38, 0.92) 0%, rgba(0, 204, 51, 0.98) 50%, rgba(0, 128, 32, 0.92) 100%);
    border-radius: 999px;
    transform: rotate(-1.4deg) skewX(-11deg);
    box-shadow: 0 2px 0 rgba(0, 92, 23, 0.2);
    z-index: -1;
}

.brush-yellow {
    display: inline;
    padding: 0.02em 0.15em;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 0, 0.78) 0%, rgba(255, 255, 0, 0.95) 50%, rgba(246, 233, 0, 0.8) 100%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    filter: saturate(110%);
}

section {
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Utilities - Dokładnie według Twoich wytycznych */
.glass-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    max-width: 100%;
    margin: 0 auto;
}
/* Przyciski */
.cta-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.cta-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 1rem;
}

.hero-content h1 {
    font-size: clamp(1.2rem, 4.6vw, 1.45rem);
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
    word-spacing: 0.02em;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: none;
    margin: 0 auto 0.7rem;
}

.hero-line {
    display: block;
    white-space: nowrap;
}

.golden-glow {
    font-weight: 800;
    display: inline-block;
    letter-spacing: -0.01em;
    background: linear-gradient(90deg, #ffe888 0%, #ffd44d 55%, #f1b90b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke: 0.8px rgba(20, 16, 9, 0.25);
    text-shadow: 
        0 1px 0 rgba(255,255,255,0.25),
        0 0 9px rgba(255, 214, 0, 0.52),
        0 0 20px rgba(58, 42, 8, 0.28);
}

.hero-price {
    font-size: 1.1em;
    letter-spacing: -0.01em;
    white-space: nowrap;
    align-self: center;
    background: linear-gradient(
        110deg,
        #111111 0%,
        #111111 18%,
        #ffd95c 35%,
        #fff3b0 46%,
        #ffc933 58%,
        #1a1a1a 72%,
        #0f0f0f 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke: 1px rgba(18, 14, 8, 0.45);
    text-shadow:
        0 1px 0 rgba(255, 249, 214, 0.2),
        0 0 10px rgba(255, 204, 51, 0.22);
    animation: gold-black-shimmer 5.8s ease-in-out infinite;
}

@keyframes gold-black-shimmer {
    0% {
        background-position: 0% 50%;
        text-shadow:
            0 1px 0 rgba(255, 249, 214, 0.18),
            0 0 6px rgba(255, 204, 51, 0.16);
    }
    45% {
        background-position: 100% 50%;
        text-shadow:
            0 1px 0 rgba(255, 249, 214, 0.25),
            0 0 12px rgba(255, 204, 51, 0.28);
    }
    100% {
        background-position: 220% 50%;
        text-shadow:
            0 1px 0 rgba(255, 249, 214, 0.18),
            0 0 6px rgba(255, 204, 51, 0.16);
    }
}

.subtitle {
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

.highlight {
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: clamp(0.95rem, 3.1vw, 1.05rem);
    font-weight: 800;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fff89a 0%, #fff34d 52%, #ffe800 100%);
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    padding: 0.65rem 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(201, 182, 0, 0.35);
    box-shadow: 
        0 8px 20px rgba(177, 160, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.highlight::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -60%;
    width: 38%;
    height: 170%;
    background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.62) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(16deg);
    animation: highlight-shine 3.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes highlight-shine {
    0% {
        left: -60%;
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    44% {
        left: 130%;
        opacity: 0.95;
    }
    100% {
        left: 130%;
        opacity: 0;
    }
}

.hero-benefits {
    margin: 1rem 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.1rem;
}

.hero-benefit-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    white-space: normal;
    text-align: center;
    min-height: 50px;
    padding: 0.66rem 0.9rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
    border: 1px solid rgba(30, 30, 30, 0.08);
    color: #1d1d1d;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.005em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 214, 0, 0.55) 0%, rgba(255, 214, 0, 0.9) 50%, rgba(255, 214, 0, 0.55) 100%);
}

.hero-benefit-card:hover {
    background: #ffff99;
    border-color: rgba(185, 168, 0, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(130, 120, 0, 0.2);
}

.hero-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.budget-underline {
    text-decoration: underline;
    text-decoration-color: #d90429;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Karuzela */
.social-proof-hero {
    margin-top: 3rem;
    text-align: center;
}

.social-proof-hero p {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.marquee-content img {
    height: 180px;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Problem & Rozwiązanie */
.problem-list, .solution-list {
    list-style: none;
}

.solution .glass-container > h2 {
    margin-bottom: 1.1rem;
}

.solution .glass-container > p {
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.solution .glass-container > p strong {
    display: inline-block;
    margin-top: 0.3rem;
}

.solution-list {
    margin-top: 0.8rem;
}

.problem-list li, .solution-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.55;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.solution-list li {
    margin-bottom: 1.15rem;
    line-height: 1.55;
}

.problem-list li:hover {
    background-color: #ff9999;
    transform: translateY(-2px);
}

.solution-list li:hover {
    background-color: #99ff99;
    transform: translateY(-2px);
}

.problem-list li .icon {
    color: #e74c3c;
    font-weight: bold;
    margin-right: 10px;
}

.highlight-box {
    background: rgba(255, 214, 0, 0.15);
    border-left: 4px solid var(--accent-color);
    padding: 1.2rem;
    border-radius: 0 12px 12px 0;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.solution .highlight-box {
    margin-top: 2rem;
    line-height: 1.75;
}

/* Opinie Carousel */
.testimonials-carousel {
    background: linear-gradient(135deg, rgba(255,214,0,0.05) 0%, rgba(255,255,255,0.1) 100%);
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0.75rem 0;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 25px;
    height: 100%;
    z-index: 2;
}
.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}
.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.carousel-content {
    display: inline-flex;
    gap: 1rem;
    animation: carousel-scroll 30s linear infinite;
    padding: 0.25rem 0;
}

.carousel-content:hover {
    animation-play-state: paused;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card-carousel {
    flex: 0 0 200px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card-image {
    width: 100%;
    height: auto;
    overflow: visible;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
}



.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(29, 25, 21, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover,
.video-item:focus-within {
    background: #ffffcc;
    border-color: rgba(201, 190, 120, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(29, 25, 21, 0.1);
}

.video-item h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #1f1a16;
    margin: 0;
    padding: 1.25rem 1.5rem 0.9rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
}

.video-item iframe {
    width: 100%;
    min-height: 260px;
    height: auto;
    border: none;
    border-radius: 0 0 28px 28px;
    display: block;
    background: #000;
}

/* Manual Testimonials */
.manual-testimonials .glass-container {
    background: rgba(255, 255, 255, 0.28);
}

.manual-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
}

.manual-carousel-btn {
    border: none;
    background: #111111;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.manual-carousel-btn:hover {
    background: #2b2b2b;
    transform: translateY(-1px);
}

.manual-carousel {
    display: flex;
    gap: 0.95rem;
    overflow-x: auto;
    padding: 0.4rem 0.1rem 0.8rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}

.manual-carousel.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.manual-carousel::-webkit-scrollbar {
    height: 9px;
}

.manual-carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
}

.manual-card {
    flex: 0 0 min(92vw, 380px);
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.manual-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transform: none;
}

/* Gwarancja */
.highlight-glass {
    background: rgba(255, 214, 0, 0.15);
    border: 1px solid rgba(255, 214, 0, 0.3);
    text-align: center;
}
.highlight-glass h2 {
    color: #b39500;
}

/* Formularz */
.form-glass {
    padding: 2rem 1rem;
}

.contact .form-glass > p {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro {
    max-width: 720px;
    margin: 0 auto;
    text-wrap: balance;
}

.contact-intro-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.02rem, 2.2vw, 1.14rem);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: #1f1f1f;
    margin-bottom: 0.55rem;
}

.contact-intro-sub {
    font-size: clamp(0.96rem, 2vw, 1.04rem);
    font-weight: 500;
    line-height: 1.62;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

#contactForm {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.3);
}

.datetime-field {
    position: relative;
}

.datetime-field .datetime-overlay {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7a7a7a;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.datetime-field.has-value .datetime-overlay,
.datetime-field:focus-within .datetime-overlay {
    opacity: 0;
}

/* Hide browser default date hint when field is empty so custom text is readable */
.datetime-field:not(.has-value) input[type="datetime-local"]::-webkit-datetime-edit {
    color: transparent;
}

.datetime-field:not(.has-value) input[type="datetime-local"]::-webkit-datetime-edit-fields-wrapper {
    color: transparent;
}

.datetime-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0.95;
}

.meeting-note {
    display: inline-block;
    margin-top: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meeting-note a {
    color: #2c2c2c;
    font-weight: 700;
}

.submit-btn {
    background: #e8e8e8;
    color: #787878;
    box-shadow: none;
    pointer-events: none;
    display: block;
    width: fit-content;
    min-width: 190px;
    margin: 1.1rem auto 0;
}

.submit-btn.is-ready {
    background: #ffff00;
    color: #2c2c2c;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
    pointer-events: auto;
}

.submit-btn.is-ready:hover {
    background: #e6e600;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
    accent-color: var(--accent-color);
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-light);
}

.checkbox-group a {
    color: var(--text-color);
    font-weight: 600;
}

.hidden {
    display: none !important;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 9999;
}

.popup-card {
    position: relative;
    width: min(92vw, 560px);
    background: #ffffff;
    border-radius: 18px;
    padding: 1.4rem 1.2rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.popup-card h3 {
    margin: 0 0 0.7rem;
    color: #20a45a;
    font-size: 1.45rem;
}

.popup-card p {
    margin: 0.45rem 0;
    line-height: 1.55;
}

.popup-close {
    position: absolute;
    top: 0.45rem;
    right: 0.55rem;
    border: none;
    background: transparent;
    font-size: 1.7rem;
    line-height: 1;
    color: #616161;
    cursor: pointer;
}

.popup-cta {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
}

.popup-close:hover {
    color: #222222;
}

.no-scroll {
    overflow: hidden;
}

.calendar-btn {
    margin-top: 1rem;
    background-color: #2c2c2c;
    color: #ffffff;
}
.calendar-btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* FAQ */
.accordion-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.5);
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
}

.accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-header.active {
    background: rgba(255, 214, 0, 0.1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.accordion-content p {
    padding-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* About Me */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.about-text p,
.solution .glass-container > p,
.highlight-box,
.form-glass > p,
.popup-card p,
.manual-testimonials p,
.faq p,
footer {
    font-size: 1rem;
    line-height: 1.65;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}
footer a {
    color: var(--text-color);
}

@media (min-width: 640px) {
    .glass-container {
        padding: 2rem 1.5rem;
        border-radius: 18px;
        max-width: 95%;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.5;
    }

    .subtitle {
        font-size: 1rem;
    }
    
    .hero-benefit-card {
        font-size: 0.86rem;
        padding: 0.74rem 0.95rem;
    }

    .hero-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }
    
    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        margin-top: 1.2rem;
    }
    
    .testimonial-card-carousel {
        flex: 0 0 240px;
    }
    
    .testimonial-card-image img {
        max-height: 240px;
    }
    
    .form-group input {
        font-size: 0.95rem;
        padding: 0.95rem;
    }
}

/* Media Queries dla Tabletów i Desktopu (skalowanie "Mobile First") */
@media (min-width: 768px) {
    section {
        padding: 3.5rem 2rem;
    }
    
    .glass-container {
        padding: 2.5rem 2.5rem;
        border-radius: 22px;
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.45;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .cta-btn {
        width: auto;
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }
    
    .carousel-wrapper {
        padding: 1rem 0;
    }
    
    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 35px;
    }
    
    .carousel-content {
        gap: 1.5rem;
    }
    
    .testimonial-card-carousel {
        flex: 0 0 260px;
    }
    
    .testimonial-card-image img {
        max-height: 260px;
    }

    .marquee-content img {
        height: 180px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .video-item {
        border-radius: 28px;
    }

    .video-item iframe {
        min-height: 260px;
    }
    
    .video-item {
        border-radius: 28px;
    }
    
    .video-item iframe {
        min-height: 260px;
    }
    
    .form-glass {
        padding: 3rem 2.5rem;
    }
    
    .form-note {
        margin-top: 0.4rem;
        color: var(--text-light);
        font-size: 0.89rem;
    }
    
    .form-group input {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .about-image, .about-text {
        flex: 1;
    }
    
    .image-placeholder {
        height: 350px;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 4rem 2rem;
    }
    
    .glass-container {
        padding: 3rem 2.5rem;
        border-radius: 24px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card-carousel {
        flex: 0 0 280px;
    }
    
    .testimonial-card-image img {
        max-height: 280px;
    }
    
    .marquee-content img {
        height: 220px;
    }

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-glass {
        padding: 3.5rem 3rem;
    }
}