/*
Theme Name: DNS
Theme URI: https://example.com/
Author: Twoje Imię
Description: Minimalistyczny starter theme zoptymalizowany pod SEO i Core Web Vitals
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dns
*/


/* CSS VARIABLES */
.page-template-template-landing {
    --lp-teal:         #2db1ad;   /* kolor primary — turkus z logo */
    --lp-teal-dark:    #1d8f8b;   /* ciemniejszy turkus — stany hover */
    --lp-teal-light:   #e8f7f7;   /* jasny turkus — tła kart, badges */
    --lp-teal-pale:    #f0fafa;   /* bardzo jasny turkus — tło FAQ */
    --lp-warm:         #f7f3ef;   /* ciepła biel — tło sekcji empathy/space */
    --lp-cream:        #faf8f5;   /* kremowy — tło kart testimonials */
    --lp-charcoal:     #1e2a2a;   /* ciemny grafit — tła ciemnych sekcji */
    --lp-mid:          #4a5e5e;   /* szaro-zielony — kolor tekstu opisowego */
    --lp-light:        #8a9e9e;   /* jasny szary — meta, drobne etykiety */
    --lp-gold:         #f0b429;   /* złoty — gwiazdki w opiniach */
    --lp-white:        #ffffff;

    /* Typografia */
    --lp-font-display: 'Playfair Display', Georgia, serif;   /* nagłówki H1/H2/H3 */
    --lp-font-body:    'DM Sans', system-ui, sans-serif;     /* body text */

    /* Kształty i cienie */
    --lp-radius:       12px;
    --lp-shadow:       0 4px 24px rgba(45, 177, 173, 0.10);
    --lp-shadow-lg:    0 12px 48px rgba(30, 42, 42, 0.12);
}


/* 2. RESET LP — izolacja od globalnych reguł dns-theme */

/* Ukryj oryginalny nagłówek i stopkę motywu na stronie LP */
.page-template-template-landing .topmenu            { display: none !important; }
.page-template-template-landing footer:not(.lp-footer) { display: none !important; }

/* Font bazowy dla całego LP */
.page-template-template-landing {
    font-family: var(--lp-font-body);
    color: var(--lp-charcoal);
    background: var(--lp-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.page-template-template-landing .lp-section-h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.page-template-template-landing .lp-why-card h3,
.page-template-template-landing .lp-offer-card h3 { font-size: 1.1rem !important; margin-bottom: 10px !important; }

.page-template-template-landing { scroll-behavior: smooth; }


/* STICKY BAR — stały pasek logo + CTA u góry strony */
.lp-sticky-bar {
    position: sticky;
    top: 0; 
    z-index: 10000;
    background: var(--lp-charcoal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, backdrop-filter 0.3s;
}
.lp-sticky-bar.scrolled {
    background: rgba(30, 42, 42, 0.97);
    backdrop-filter: blur(12px);
}
.lp-sticky-logo {
    font-family: var(--lp-font-display);
    color: var(--lp-white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.lp-sticky-logo span { color: var(--lp-teal); }
.lp-sticky-logo img { max-width: 120px; }

.lp-sticky-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--lp-teal);
    color: var(--lp-white);
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
}
.lp-sticky-phone:hover { background: var(--lp-teal-dark); transform: scale(1.03); color: white; }
.lp-sticky-phone svg   { width: 15px; height: 15px; fill: currentColor; }


/* URGENCY BAR — pasek pilności (warsztaty / dostępność miejsc) */
.lp-urgency-bar {
    background: linear-gradient(90deg, var(--lp-teal-dark), var(--lp-teal));
    padding: 14px 24px;
    text-align: center;
    color: white;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.lp-urgency-bar strong { font-weight: 700; }
.lp-urgency-bar a      { color: white; font-weight: 700; text-decoration: underline; }


/* HERO — główna sekcja z tłem zdjęcia */
.lp-hero {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    background-color: var(--lp-charcoal);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgb(30 42 42) 0%, rgb(45 177 173 / 30%) 100%);
    z-index: 0;
}
.lp-hero > * { position: relative; z-index: 1; }

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 177, 173, 0.18);
    border: 1px solid rgba(45, 177, 173, 0.4);
    color: #7ee8e5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.lp-hero-badge::before {
    content: '●';
    font-size: 8px;
    color: var(--lp-teal);
    animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.lp-hero h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(2rem, 6vw, 3.8rem);
    color: var(--lp-white);
    line-height: 1.15;
    font-weight: 700;
    max-width: 720px;
    margin: 0 auto 20px;
    letter-spacing: -0.01em;
}
.lp-hero h1 em { font-style: italic; color: #7ee8e5; }

.lp-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin: 0 auto 36px;
    font-weight: 300;
    line-height: 1.65;
}

.lp-hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
.lp-hero-proof-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.88);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}
.lp-hero-proof-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.lp-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-teal);
    color: var(--lp-white);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 32px rgba(45, 177, 173, 0.45);
    transition: all 0.2s;
    margin-bottom: 14px;
    min-height: 56px;
}
.lp-cta-primary:hover {
    background: var(--lp-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(45, 177, 173, 0.55);
    color: white;
}
.lp-cta-primary svg { width: 20px; height: 20px; fill: currentColor; }

.lp-cta-note { color: rgba(255, 255, 255, 0.55); font-size: 12px; letter-spacing: 0.03em; }


/* PROCESS STRIP — 4 kroki procesu leczenia (turkusowy pasek) */
.lp-process {
    background: var(--lp-teal);
    padding: 48px 24px;
}
.lp-process-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}
.lp-process-step  { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.lp-process-num {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--lp-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}
.lp-process-step-title { color: white; font-weight: 600; font-size: 0.88rem; line-height: 1.3; }
.lp-process-step-sub   { color: rgba(255,255,255,0.65); font-size: 0.78rem; line-height: 1.4; }


/* SEKCJE — wspólne klasy dla wszystkich sekcji LP */
.lp-section { padding: 72px 24px; }

.lp-container    { max-width: 1080px; margin: 0 auto; }
.lp-container-sm { max-width: 720px;  margin: 0 auto; }

.lp-section-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lp-teal);
    background: var(--lp-teal-light);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.lp-section-h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.2;
    color: var(--lp-charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.lp-section-h2 em { font-style: italic; color: var(--lp-teal); }


/* EMPATHY — "Rozumiemy, co przeżywasz" */
.lp-empathy { background: var(--lp-warm); }

.lp-empathy-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.lp-empathy-text p {
    color: var(--lp-mid);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}
.lp-empathy-text strong { color: var(--lp-charcoal); font-weight: 600; }

.lp-empathy-highlight {
    background: var(--lp-white);
    border-left: 4px solid var(--lp-teal);
    padding: 20px 24px;
    border-radius: 0 var(--lp-radius) var(--lp-radius) 0;
    margin-top: 24px;
    font-family: var(--lp-font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--lp-charcoal);
    line-height: 1.55;
    box-shadow: var(--lp-shadow);
}

.lp-empathy-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.lp-stat-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--lp-shadow);
    border: 1px solid rgba(45, 177, 173, 0.1);
}
.lp-stat-card .lp-stat-num {
    font-family: var(--lp-font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--lp-teal);
    line-height: 1;
    margin-bottom: 6px;
}
.lp-stat-card .lp-stat-label {
    font-size: 12px;
    color: var(--lp-mid);
    font-weight: 500;
    line-height: 1.4;
}


/* WHY US — "Dlaczego Nasz Dom?" */
.lp-why { background: var(--lp-white); }

.lp-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.lp-why-card {
    background: var(--lp-teal-pale);
    border: 1px solid rgba(45, 177, 173, 0.12);
    border-radius: var(--lp-radius);
    padding: 28px 22px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.lp-why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lp-teal);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.lp-why-card:hover             { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }
.lp-why-card:hover::after      { transform: scaleX(1); }

.lp-why-icon {
    width: 48px; height: 48px;
    background: var(--lp-teal);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.lp-why-icon svg { width: 24px; height: 24px; fill: white; }

.lp-why-card h3 {
    font-family: var(--lp-font-display);
    color: var(--lp-charcoal);
    line-height: 1.3;
}
.lp-why-card p { font-size: 0.9rem; color: var(--lp-mid); line-height: 1.65; }


/* OFFER — "Nasza oferta" */
.lp-offer { background: var(--lp-charcoal); }

.lp-offer .lp-section-label { background: rgba(45, 177, 173, 0.15); color: #7ee8e5; }
.lp-offer .lp-section-h2    { color: var(--lp-white); }
.lp-offer .lp-section-h2 em { color: #7ee8e5; }

.lp-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.lp-offer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--lp-radius);
    padding: 32px 26px;
    transition: background 0.2s, border-color 0.2s;
}
.lp-offer-card:hover {
    background: rgba(45, 177, 173, 0.08);
    border-color: rgba(45, 177, 173, 0.3);
}

.lp-offer-card-tag {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lp-teal);
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-offer-card h3 {
    font-family: var(--lp-font-display);
    color: var(--lp-white);
    line-height: 1.25;
    margin-bottom: 14px !important;
}
.lp-offer-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    margin-bottom: 20px;
}

.lp-offer-benefit-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-offer-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.lp-offer-benefit-list li::before {
    content: '';
    width: 16px; height: 16px;
    background: var(--lp-teal);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}


/* SPACE / BUDYNEK — "Tu wrócisz do siebie" */
.lp-space { background: var(--lp-warm); }

.lp-space-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.lp-space-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    order: 2;
}
.lp-space-text { order: 1; }

.lp-space-gallery-main {
    grid-column: 1 / -1;
    border-radius: var(--lp-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--lp-teal-light), #c8eeec);
    position: relative;
}
.lp-space-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.lp-space-gallery-sub {
    border-radius: var(--lp-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--lp-teal-light);
}
.lp-space-gallery-sub img { width: 100%; height: 100%; object-fit: cover; }

.lp-img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--lp-teal-light) 0%, #c8eeec 100%);
    gap: 10px;
}
.lp-img-placeholder-icon { font-size: 36px; opacity: 0.5; }
.lp-img-placeholder-text { font-size: 11px; color: var(--lp-teal-dark); opacity: 0.6; text-align: center; }

.lp-space-features { display: flex; flex-direction: column; gap: 18px; }
.lp-space-feature  { display: flex; align-items: flex-start; gap: 16px; }
.lp-space-feature-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--lp-teal);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.lp-space-feature-icon svg { width: 22px; height: 22px; fill: white; }
.lp-space-feature h4 {
    font-weight: 600;
    color: var(--lp-charcoal);
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.lp-space-feature p { font-size: 0.88rem; color: var(--lp-mid); line-height: 1.6; }


/* TESTIMONIALS — opinie uczestników */
.lp-testimonials { background: var(--lp-white); }

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.lp-testimonial-card {
    background: var(--lp-cream);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    border: 1px solid rgba(45, 177, 173, 0.1);
    position: relative;
}

.lp-testimonial-card::before {
    content: '"';
    font-family: var(--lp-font-display);
    font-size: 80px;
    color: var(--lp-teal);
    opacity: 0.15;
    position: absolute;
    top: 8px; left: 18px;
    line-height: 1;
}

.lp-testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.lp-star              { color: var(--lp-gold); font-size: 14px; }

.lp-testimonial-card p {
    font-size: 0.92rem;
    color: var(--lp-mid);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.lp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.lp-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--lp-teal-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: var(--lp-teal-dark);
    font-size: 14px;
    flex-shrink: 0;
}
.lp-testimonial-name  { font-weight: 600; font-size: 0.88rem; color: var(--lp-charcoal); }
.lp-testimonial-meta  { font-size: 0.78rem; color: var(--lp-light); }

.lp-testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--lp-teal-light);
    color: var(--lp-teal-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-top: 6px;
}


/* FAQ — accordion pytania i odpowiedzi */
.lp-faq { background: var(--lp-teal-pale); }

.lp-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }

.lp-faq-item {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    border: 1px solid rgba(45, 177, 173, 0.12);
    overflow: hidden;
}

.lp-faq-question {
    width: 100%;
    background: none; border: none;
    padding: 22px 26px;
    text-align: left; cursor: pointer;
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    font-family: var(--lp-font-body);
    font-size: 0.98rem; font-weight: 600;
    color: var(--lp-charcoal);
    transition: color 0.2s;
}
.lp-faq-question:hover { color: var(--lp-teal); }

.lp-faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: var(--lp-teal-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-teal);
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.25s, background 0.2s;
}

.lp-faq-item.open .lp-faq-icon {
    transform: rotate(45deg);
    background: var(--lp-teal);
    color: white;
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 26px;
}
.lp-faq-item.open .lp-faq-answer {
    max-height: 400px;
    padding-bottom: 22px;
}
.lp-faq-answer p       { color: var(--lp-mid); font-size: 0.92rem; line-height: 1.8; }
.lp-faq-answer strong  { color: var(--lp-charcoal); }


/* FINAL CTA — ostateczne wezwanie do działania */
.lp-final-cta {
    background: linear-gradient(135deg, var(--lp-charcoal) 0%, #162222 100%);
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.lp-final-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45,177,173,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.lp-final-cta > * { position: relative; }

.lp-final-cta .lp-section-h2    { color: var(--lp-white); max-width: 620px; margin: 0 auto 16px; }
.lp-final-cta .lp-section-h2 em { color: #7ee8e5; }

.lp-final-cta-sub { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 40px; font-size: 1rem; }

.lp-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lp-cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem; font-weight: 500;
    transition: all 0.2s;
    min-height: 56px;
}
.lp-cta-secondary:hover { background: rgba(255,255,255,0.08); color: white; }


/* FOOTER LP — własna stopka landing page */
.lp-footer {
    background: #111b1b;
    padding: 48px 24px 32px;
}
.lp-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.lp-footer-brand-name {
    font-family: var(--lp-font-display);
    color: var(--lp-white);
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 10px;
}
.lp-footer-brand-name span { color: var(--lp-teal); }
.lp-footer-brand-name img {
    max-width: 150px;
    margin-bottom: 15px;
}

.lp-footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }

.lp-footer-phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--lp-teal);
    text-decoration: none;
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 6px;
}

.lp-footer .lp-sticky-phone {
    width: fit-content;
    font-size: 20px;
}

.lp-footer-address { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; }

.lp-footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 32px 0 20px; }

.lp-footer-bottom {
    max-width: 1080px; margin: 0 auto;
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.25); font-size: 0.78rem;
}
.lp-footer-bottom a {
	color: unset;
    text-decoration: none;
}

/* FINAL CTA — layout z formularzem */
.lp-final-cta-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}
@media (min-width: 768px) {
    .lp-final-cta-layout {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}
.lp-final-cta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
@media (max-width: 767px) {
    .lp-final-cta-left { align-items: center; }
}
.lp-final-cta-right {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}

/* FORMULARZ KONTAKTOWY */
.lp-form-group {
    margin-bottom: 20px;
}
.lp-form-group:last-of-type { margin-bottom: 0; }

.lp-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 0;
}

.lp-form-required {
    color: var(--lp-teal);
    margin-left: 2px;
}

.lp-contact-form input[type="text"],
.lp-contact-form input[type="tel"],
.lp-contact-form input[type="email"],
.lp-contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--lp-white);
    font-family: var(--lp-font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: border-color 0.2s, background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 5px;
}
.lp-contact-form input[type="text"]:focus,
.lp-contact-form input[type="tel"]:focus,
.lp-contact-form input[type="email"]:focus,
.lp-contact-form textarea:focus {
    outline: none;
    border-color: var(--lp-teal);
    background: rgba(45, 177, 173, 0.08);
}

.lp-contact-form input::placeholder,
.lp-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.lp-contact-form textarea {
    resize: vertical;
    min-height: 90px;
}

.lp-form-group--checkbox { margin-top: 4px; }

.lp-form-group--checkbox .wpcf7-list-item { margin: 0 !important; }
.lp-form-group--checkbox .wpcf7-list-item > label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.4;
}
.lp-form-group--checkbox .wpcf7-list-item > label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--lp-teal);
    cursor: pointer;
    border: none;
    border-bottom: none;
    padding: 0;
}

.lp-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    background: var(--lp-teal);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--lp-font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    min-height: 52px;
}
.lp-form-submit:hover    { background: var(--lp-teal-dark); transform: translateY(-1px); }
.lp-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.wpcf7 form .wpcf7-response-output {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    margin: 0 !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    display: block;
    background: rgba(45, 177, 173, 0.15);
    border: 1px solid rgba(45, 177, 173, 0.4);
    color: #7ee8e5;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    display: block;
    background: rgba(139, 58, 58, 0.15);
    border: 1px solid rgba(200, 80, 80, 0.35);
    color: #f4a4a4;
}

/* ANIMACJE */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* MEDIA QUERIES LP — mobile-first breakpoints */
/* Tablet: >= 600px & =< 800px */
@media (min-width: 600px) and (max-width: 800px) {
    .lp-hero { min-height: 80vh; }
}
/* Tablet: >= 600px */
@media (min-width: 600px) {
    .lp-why-grid   { grid-template-columns: 1fr 1fr; }
    .lp-offer-grid { grid-template-columns: 1fr 1fr; }
}
/* Tablet szeroki: >= 700px */
@media (min-width: 700px) {
    .lp-process-inner    { grid-template-columns: repeat(4, 1fr); }
    .lp-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-footer-inner     { grid-template-columns: 1.5fr 1fr 1fr; }
    .lp-cta-group        { flex-direction: row; justify-content: center; }
}
/* Desktop: >= 768px */
@media (min-width: 768px) {
    .lp-empathy-inner { grid-template-columns: 1fr 1fr; }
    .lp-space-inner   { grid-template-columns: 1fr 1fr; }
    .lp-space-gallery { order: 0; }
    .lp-space-text    { order: 0; }
}
/* Desktop szeroki: >= 900px */
@media (min-width: 900px) {
    .lp-why-grid { grid-template-columns: repeat(4, 1fr); }
}
/* Mobile małe: <= 480px — zmniejsz padding sekcji */
@media (max-width: 480px) {
    .lp-sticky-logo img { max-width: 85px; }
    .lp-section { padding: 56px 20px; }
    .lp-hero    { padding: 88px 20px 56px; }
    .lp-footer-brand-name img { max-width: 120px; }
}
