/* ===================================
   HOLI STUDIO — Landing Page
   =================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --c: #ed6d5b;
    --c2: #d95a48;
    --cs: #fdf1ef;
    --dark: #2b2525;
    --txt: #6b6060;
    --light: #a09595;
    --bg: #ffffff;
    --soft: #faf8f6;
    --cream: #f9f6f3;
    --hd: 'Cormorant Garamond', Georgia, serif;
    --bd: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--bd); color: var(--txt); background: var(--bg); line-height: 1.8; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* --- Typography --- */
.label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--c); margin-bottom: 14px; }
.label--c { text-align: center; }
h2 { font-family: var(--hd); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; color: var(--dark); line-height: 1.12; margin-bottom: 24px; }
h2 em { font-style: italic; }
.tc { text-align: center; }

/* --- Button --- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 48px; background: var(--c); color: #fff; font-family: var(--bd); font-size: .95rem; font-weight: 600; border-radius: 999px; border: none; cursor: pointer; transition: .3s ease; }
.btn:hover { background: var(--c2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(237,109,91,.22); }

/* --- Sections --- */
.sec { padding: 100px 0; }
.sec--soft { background: var(--soft); }
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* --- Waves --- */
.wave { line-height: 0; overflow: hidden; }
.wave svg { width: 100%; height: 70px; display: block; }

/* --- Animations --- */
.anim { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.anim.on { opacity: 1; transform: translateY(0); }

/* ============================
   NAV
   ============================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 48px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    transition: .4s ease;
}

.nav.scrolled { padding: 14px 48px; box-shadow: 0 1px 20px rgba(0,0,0,.03); }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .82rem; font-weight: 500; color: var(--txt); transition: .3s; }
.nav-links a:hover { color: var(--c); }
.nav-cta { background: var(--c) !important; color: #fff !important; padding: 10px 26px; border-radius: 999px; }
.nav-cta:hover { background: var(--c2) !important; }

.burger { display: none; background: none; border: none; cursor: pointer; z-index: 101; width: 26px; height: 20px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
.burger span:first-child { top: 4px; }
.burger span:last-child { bottom: 4px; }

/* ============================
   HERO — Split, tekst wycentrowany
   ============================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 48px 60px;
}

.hero-tag {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--c);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--hd);
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 300;
    color: var(--dark);
    line-height: .92;
    margin-bottom: 24px;
}

.hero h1 em { color: var(--c); font-style: italic; }

.hero-sub {
    font-family: var(--hd);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--light);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 420px;
    font-weight: 500;
}

.hero-desc strong {
    color: var(--c);
}

.hero-areas-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--txt);
    margin-bottom: 12px;
}

.hero-areas {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-areas span {
    padding: 10px 24px;
    background: var(--cs);
    color: var(--c);
    font-size: .85rem;
    font-weight: 600;
    border-radius: 999px;
}

.hero-promo {
    margin-top: 28px;
    padding: 28px 40px;
    background: var(--cs);
    border-radius: 24px;
    text-align: center;
}

.hero-promo-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.hero-promo-old {
    font-size: 1.1rem;
    color: var(--light);
    text-decoration: line-through;
}

.hero-promo-new {
    font-family: var(--hd);
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark);
}

.hero-promo-badge {
    background: var(--c);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
}

.hero-promo-save {
    font-size: .95rem;
    color: var(--c);
    font-weight: 600;
    margin: 0;
}

.hero-photo {
    position: relative;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

/* ============================
   O ZABIEGU
   ============================ */
.about {
    padding: 100px 48px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-top {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 52px;
}

.about-title { max-width: 100%; margin-left: auto; margin-right: auto; }

.about-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-benefit {
    padding: 32px 24px;
    background: var(--cs);
    border-radius: 20px;
}

.about-benefit h3 {
    font-family: var(--hd);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--c);
    margin-bottom: 10px;
}

.about-benefit p {
    font-size: .95rem;
    color: var(--txt);
    line-height: 1.7;
}

.about-img {
    border-radius: 28px;
    overflow: hidden;
    height: 440px;
}

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


/* ============================
   GALERIA AUTOPLAY
   ============================ */
.gallery {
    padding: 20px 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: galleryScroll 60s linear infinite;
}


.gallery-item {
    flex: 0 0 360px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-360px * 9 - 14px * 9)); }
}

/* ============================
   EFEKTY
   ============================ */
.effects {
    background: #f0ede8;
    padding: 80px 48px;
}

.effects-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.effects-img {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
}

.effects-img img,
.effects-img video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eff-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
}

.eff-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c);
    margin-top: 6px;
}

.eff-item h4 {
    font-family: var(--hd);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}

.eff-item p {
    font-size: .95rem;
    color: var(--light);
    line-height: 1.6;
}

/* ============================
   AUTORSKI PROTOKÓŁ
   ============================ */
.process {
    padding: 80px 48px;
}

.process-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.process-inner h2 {
    margin-bottom: 48px;
}

.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 22px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--cs), var(--c), var(--cs));
    border-radius: 2px;
    z-index: 0;
}

.tl-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.tl-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(237,109,91,.2);
    transition: .35s ease;
}

.tl-step:hover .tl-dot {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(237,109,91,.3);
}

.tl-arrow {
    flex-shrink: 0;
    color: var(--c);
    font-size: 1.4rem;
    font-weight: 300;
    margin-top: 10px;
    opacity: .5;
    z-index: 1;
}

.tl-step h4 {
    font-family: var(--hd);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}

.tl-step p {
    font-size: .88rem;
    color: var(--light);
    line-height: 1.5;
}


/* ============================
   TECHNOLOGIA
   ============================ */
.tech {
    padding: 80px 48px;
    background: #f0ede8;
}

.tech-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: center;
}

.tech-video {
    border-radius: 24px;
    overflow: hidden;
    width: 340px;
    height: 600px;
}

.tech-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-text p {
    font-size: 1.05rem;
    color: var(--txt);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tech-text strong {
    color: var(--dark);
}

.tech-highlight {
    color: var(--c);
    font-weight: 600;
}

.tech-tags {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.tech-tags span {
    padding: 10px 24px;
    background: var(--cs);
    color: var(--c);
    font-size: .85rem;
    font-weight: 600;
    border-radius: 999px;
}

.tech-protocol {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #ddd8d2;
}

.tech-protocol h3 {
    font-family: var(--hd);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 16px;
}

.tech-protocol ul {
    list-style: none;
    margin-bottom: 16px;
}

.tech-protocol li {
    font-size: .95rem;
    color: var(--txt);
    padding: 5px 0 5px 22px;
    position: relative;
    line-height: 1.6;
}

.tech-protocol li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c);
}

.tech-protocol-sum {
    font-family: var(--hd);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--c);
    line-height: 1.7;
}

/* ============================
   PORÓWNANIE
   ============================ */
.compare {
    padding: 80px 48px;
    background: var(--soft);
}

.compare-inner {
    max-width: 900px;
    margin: 0 auto;
}

.compare-table-wrap {
    margin-top: 40px;
    overflow-x: auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
}

.compare-table thead {
    background: var(--dark);
    color: #fff;
}

.compare-table th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .03em;
    text-align: center;
}

.compare-table th:first-child {
    text-align: left;
    width: 35%;
}

.compare-table td {
    padding: 14px 20px;
    text-align: center;
    color: var(--txt);
    border-bottom: 1px solid #f5f2ef;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--dark);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: var(--soft);
}

/* Kolumna laser tulowy wyróżniona */
.compare-hl {
    background: var(--cs) !important;
}

thead .compare-hl {
    background: var(--c) !important;
    color: #fff;
}

.cmp-yes {
    color: #2e8b57;
    font-weight: 600;
}

.cmp-no {
    color: #c0392b;
    font-weight: 500;
}

.cmp-mid {
    color: #c88a2e;
    font-weight: 500;
}

/* ============================
   CENNIK
   ============================ */
.pricing {
    background: var(--dark);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.pricing::before, .pricing::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237,109,91,.05), transparent 70%);
}

.pricing::before { top: -100px; left: -100px; width: 400px; height: 400px; }
.pricing::after { bottom: -120px; right: -80px; width: 350px; height: 350px; }

.pricing-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.pricing-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--c);
    margin-bottom: 14px;
}

.pricing-title {
    font-family: var(--hd);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}

.pricing-title em { font-style: italic; }

.pricing-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.35);
    margin-bottom: 40px;
}

.pricing-card {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    padding: 44px 40px;
    position: relative;
}

/* Duży countdown nad kartą */
.pricing-countdown {
    text-align: center;
    margin-bottom: 36px;
    padding: 28px 40px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    background: rgba(255,255,255,.03);
}

.pricing-countdown-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 10px;
}

.pricing-countdown-val {
    font-family: var(--hd);
    font-size: 5rem;
    font-weight: 300;
    color: var(--c);
    letter-spacing: .05em;
}

/* Sticky popup */
.sticky-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    background: #fff;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,.12);
    text-align: center;
    min-width: 180px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: .5s ease;
}

.sticky-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-popup-close {
    position: absolute;
    top: 6px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--light);
    cursor: pointer;
}

.sticky-popup-timer-label {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c);
    margin-bottom: 4px;
}

.sticky-popup-timer {
    font-family: var(--hd);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--dark);
}

.sticky-popup-btn {
    display: block;
    margin-top: 14px;
    padding: 12px 0;
    background: var(--c);
    color: #fff;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.sticky-popup-btn:hover { background: var(--c2); }

.pricing-old {
    font-size: .95rem;
    color: rgba(255,255,255,.25);
    text-decoration: line-through;
    margin-top: 12px;
    display: block;
}

.pricing-new {
    font-family: var(--hd);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin: 6px 0 12px;
}

.pricing-new span { font-size: 1.6rem; color: rgba(255,255,255,.45); }

.pricing-save {
    display: inline-block;
    background: rgba(237,109,91,.15);
    color: var(--c);
    font-size: .88rem;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 999px;
    margin-bottom: 32px;
}

.pricing-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
    text-align: left;
    margin-bottom: 32px;
    list-style: none;
}

.pricing-list li {
    font-size: .95rem;
    color: rgba(255,255,255,.45);
    padding: 6px 0 6px 20px;
    position: relative;
}

.pricing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c);
    font-size: .72rem;
    font-weight: 700;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--c);
    color: #fff;
    font-family: var(--bd);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: .3s;
    text-align: center;
}

.pricing-btn:hover {
    background: var(--c2);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(237,109,91,.3);
}

.pricing-alt {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-alt-badge {
    background: rgba(237,109,91,.12);
    color: var(--c);
    font-size: .65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: .05em;
}

.pricing-alt-text p {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    text-align: left;
}

.pricing-alt-text strong { color: #fff; }

.pricing-alt-text small {
    font-size: .68rem;
    color: rgba(255,255,255,.25);
}

/* ============================
   WAŻNE INFO
   ============================ */
.info { padding: 80px 48px; }

.info-split {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.info-steps {
    position: relative;
    padding-left: 36px;
    margin-top: 32px;
}

.info-steps::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--c), var(--cs));
}

.info-step {
    position: relative;
    margin-bottom: 28px;
}

.info-step:last-child { margin-bottom: 0; }

.info-step::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cs);
    border: 2px solid var(--c);
}

.info-step h4 {
    font-family: var(--hd);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 6px;
}

.info-step p {
    font-size: 1rem;
    line-height: 1.75;
}

/* Slider zdjęć */
.info-slider {
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    position: relative;
}

.info-slider-track {
    position: absolute;
    inset: 0;
}

.info-slider-track img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.info-slider-track img.active {
    opacity: 1;
}

/* ============================
   OPINIE
   ============================ */
.reviews { background: #f8f5f1; padding: 80px 0; }

.reviews-head { text-align: center; padding: 0 48px; margin-bottom: 40px; }

.reviews-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.reviews-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.reviews-score strong { font-family: var(--hd); font-size: 1.6rem; color: var(--dark); }
.reviews-score span { font-size: .82rem; color: var(--light); }

.reviews { overflow: hidden; }

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: reviewsScroll 40s linear infinite;
}


.review-card {
    flex: 0 0 400px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.review-card img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes reviewsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 7 - 20px * 7)); }
}

/* ============================
   REZERWACJA
   ============================ */
.booking {
    background: var(--dark);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.booking::before, .booking::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237,109,91,.05), transparent 70%);
}

.booking::before { top: -100px; left: -100px; width: 400px; height: 400px; }
.booking::after { bottom: -120px; right: -80px; width: 350px; height: 350px; }

.booking-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.booking-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--c);
    margin-bottom: 14px;
}

.booking-title {
    font-family: var(--hd);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}

.booking-title em { font-style: italic; }

.booking-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.35);
    margin-bottom: 40px;
}

.booking-card {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    padding: 44px 40px;
}

/* MailerLite form override */
.ml-embedded {
    background: transparent !important;
}

.ml-embedded .ml-form-embedWrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.ml-embedded .ml-form-embedBody {
    background: transparent !important;
    padding: 0 !important;
}

.ml-embedded .ml-form-embedBody .ml-form-embedContent {
    display: none !important;
}

.ml-embedded input[type="text"],
.ml-embedded input[type="email"],
.ml-embedded input[type="tel"],
.ml-embedded textarea,
.ml-embedded .form-control {
    background: rgba(255,255,255,.1) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    padding: 14px 18px !important;
    font-size: 1.1rem !important;
    -webkit-text-fill-color: #ffffff !important;
}

.ml-embedded input::placeholder,
.ml-embedded textarea::placeholder {
    color: rgba(255,255,255,.4) !important;
    -webkit-text-fill-color: rgba(255,255,255,.4) !important;
}

/* Wymagane pola i errory */
.ml-embedded .ml-error,
.ml-embedded .ml-form-fieldRow .ml-error,
.ml-embedded .ml-form-embedBody .ml-form-fieldRow .ml-error,
.ml-embedded [class*="error"],
.ml-embedded .ml-form-formContent .ml-error {
    display: block !important;
    visibility: visible !important;
    color: #ff8a7a !important;
    font-size: .85rem !important;
    margin-top: 6px !important;
    opacity: 1 !important;
}

.ml-embedded .ml-form-fieldRow.ml-error input,
.ml-embedded input.error,
.ml-embedded input:invalid {
    border-color: #ff8a7a !important;
}

/* Komunikat po wysłaniu */
.ml-embedded .ml-form-successBody,
.ml-embedded .ml-form-successContent {
    color: #fff !important;
}

.ml-embedded .ml-form-successBody h4,
.ml-embedded .ml-form-successContent h4 {
    color: #fff !important;
    font-family: var(--hd) !important;
    font-size: 1.8rem !important;
}

.ml-embedded .ml-form-successBody p,
.ml-embedded .ml-form-successContent p {
    color: rgba(255,255,255,.6) !important;
    font-size: 1rem !important;
}

.ml-embedded input:focus,
.ml-embedded textarea:focus {
    border-color: var(--c) !important;
    background: rgba(255,255,255,.08) !important;
}

.ml-embedded .ml-form-embedBody label {
    color: rgba(255,255,255,.45) !important;
    font-size: .82rem !important;
}

.ml-embedded button[type="submit"],
.ml-embedded .ml-form-embedSubmit button {
    background: var(--c) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 16px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer;
    transition: .3s ease;
}

.ml-embedded button[type="submit"]:hover,
.ml-embedded .ml-form-embedSubmit button:hover {
    background: var(--c2) !important;
}

.booking-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.booking-note {
    padding: 20px 16px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    text-align: center;
}

.booking-note-icon { font-size: 1.2rem; margin-bottom: 8px; }
.booking-note strong { display: block; font-size: .92rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.booking-note p { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.5; }

/* ============================
   KAROLINA
   ============================ */
.karolina {
    padding: 80px 48px;
}

.karolina-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.karolina-img {
    border-radius: 24px;
    overflow: hidden;
    max-height: 520px;
}

.karolina-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.karolina-text p {
    font-size: 1.05rem;
    color: var(--txt);
    line-height: 1.8;
    margin-bottom: 16px;
}

.karolina-text strong {
    color: var(--dark);
}

.karolina-hl {
    color: var(--c);
    font-weight: 600;
}

/* ============================
   INFO SUBTITLE
   ============================ */
.info-subtitle {
    font-size: 1rem;
    color: var(--c);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ============================
   FAQ
   ============================ */
.faq {
    padding: 80px 48px;
    background: var(--soft);
}

.faq-inner {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 8px;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #fff;
    border: none;
    border-radius: 16px;
    font-family: var(--bd);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    transition: .3s ease;
}

.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--c);
    flex-shrink: 0;
    margin-left: 16px;
    transition: .3s ease;
}

.faq-q.active::after {
    transform: rotate(45deg);
}

.faq-q:hover {
    background: var(--cs);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 24px;
}

.faq-a.open {
    max-height: 500px;
    padding: 16px 24px 20px;
}

.faq-a p {
    font-size: .95rem;
    color: var(--txt);
    line-height: 1.8;
}

.faq-footer {
    text-align: center;
    font-family: var(--hd);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--c);
    margin-top: 40px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   LOKALIZACJA + FOOTER
   ============================ */
.location {
    background: #fff;
    padding: 80px 48px 0;
}

.loc-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
}

.loc-addr {
    font-size: 1rem;
    color: var(--txt);
    line-height: 1.6;
    margin-bottom: 24px;
}

.loc-map {
    border-radius: 24px;
    overflow: hidden;
    height: 340px;
}

.loc-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-bar {
    max-width: 1040px;
    margin: 0 auto;
    padding: 28px 0;
    margin-top: 60px;
    border-top: 1px solid #f0ece8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-addr {
    font-size: .75rem;
    color: var(--light);
}

.footer-copy {
    font-size: .7rem;
    color: var(--light);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .nav { padding: 14px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .burger { display: block; }
    .nav-links {
        position: fixed; inset: 0;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0; pointer-events: none;
        transition: .35s;
    }
    .nav-links.open { opacity: 1; pointer-events: auto; }
    .nav-links a { color: var(--dark) !important; font-size: 1.1rem; }

    .hero { grid-template-columns: 1fr; }
    .hero-text { padding: 120px 24px 48px; order: 2; }
    .hero-photo { height: 50vh; order: 1; }
    .hero h1 { font-size: clamp(3rem, 12vw, 4.5rem); }

    .about { padding: 64px 24px 48px; }
    .about-benefits { grid-template-columns: 1fr; gap: 14px; }
    .about-img { height: 280px; border-radius: 20px; }

    .effects { padding: 56px 24px; }
    .effects-inner { grid-template-columns: 1fr; gap: 32px; }
    .effects-img { aspect-ratio: 9/16; }

    .info { padding: 56px 24px; }
    .info-split { grid-template-columns: 1fr; gap: 32px; }
    .info-slider { height: 320px; }

    .booking { padding: 56px 24px; }
    .booking-card { padding: 32px 24px; }
    .booking-notes { grid-template-columns: 1fr; gap: 10px; }

    .karolina { padding: 56px 24px; }
    .karolina-inner { grid-template-columns: 1fr; gap: 32px; }
    .karolina-img { max-height: 400px; }

    .faq { padding: 56px 24px; }
    .faq-q { font-size: .92rem; padding: 16px 20px; }

    .sticky-popup { bottom: 12px; right: 12px; left: 12px; min-width: auto; }
    .pricing-countdown-val { font-size: 3.5rem; }

    .location { padding: 56px 24px 0; }
    .loc-inner { grid-template-columns: 1fr; gap: 28px; }
    .loc-map { height: 260px; }
    .footer-bar { flex-direction: column; gap: 6px; text-align: center; padding: 24px 0; margin-top: 40px; }

    .gallery-item { flex: 0 0 280px; height: 200px; }
    @keyframes galleryScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 9 - 14px * 9)); }
    }

    .reviews { padding: 56px 0; }
    .reviews-head { padding: 0 24px; }
    .reviews-scroll { padding: 0 24px 16px; gap: 14px; }
    .review-card { flex: 0 0 300px; }
    @keyframes reviewsScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-300px * 7 - 20px * 7)); }
    }

    .compare { padding: 56px 24px; }
    .compare-table { font-size: .82rem; }
    .compare-table th, .compare-table td { padding: 12px 12px; }

    .pricing { padding: 56px 24px; }
    .pricing-card { padding: 40px 24px; }
    .pricing-list { grid-template-columns: 1fr; }
    .pricing-alt { flex-direction: column; gap: 6px; }

    .process { padding: 56px 24px; }
    .timeline { flex-wrap: wrap; gap: 8px; }
    .timeline-line { display: none; }
    .tl-arrow { display: none; }
    .tl-step { flex: 0 0 calc(33% - 6px); min-width: 100px; margin-bottom: 16px; }
    .tech { padding: 56px 24px; }
    .tech-inner { grid-template-columns: 1fr; gap: 32px; }
    .tech-video { width: 100%; height: 400px; }

    .sec { padding: 64px 0; }
    .wave svg { height: 50px; }
}
