/* ============================================
   REFIZJO – SERVICE MODULES CSS
   Reużywalne moduły stron usługowych
   Każda sekcja ma komentarz z wzorcem HTML
   ============================================ */

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   <section class="faq-section">
     <div class="container"><h2>FAQ</h2>
       <div class="faq-list">
         <details class="faq-item">
           <summary class="faq-question">Pytanie?</summary>
           <div class="faq-answer"><p>Odpowiedź.</p></div>
         </details>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.faq-section {
    padding: var(--section-padding-y-compact) 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--space-10);
}

.faq-list {
    max-width: var(--content-narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--primary-text);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-4);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    color: var(--primary-text);
}

/* Smooth height animation via grid-template-rows */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    overflow: hidden;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer>* {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 0 var(--space-6);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-3);
}

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

/* ═══════════════════════════════════════════
   EXPERT QUOTE
   <figure class="service-expert-quote">
     <img class="service-expert-quote__photo" />
     <div class="service-expert-quote__body">
       <blockquote class="service-expert-quote__text">Cytat</blockquote>
       <figcaption class="service-expert-quote__author">Autor</figcaption>
     </div>
   </figure>
   ═══════════════════════════════════════════ */

.service-expert-quote {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: var(--space-5);
    align-items: start;
    max-width: var(--content-narrow);
    margin: var(--space-8) auto;
    padding: var(--space-6);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.service-expert-quote--compact {
    margin-top: 0;
    margin-bottom: var(--space-8);
}

.service-expert-quote .service-expert-quote__photo {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0;
    box-shadow: none;
}

.service-expert-quote .service-expert-quote__text {
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--gray-700);
    font-size: var(--text-base);
    line-height: 1.75;
    font-style: italic;
}

.service-expert-quote__author {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-top: var(--space-4);
    font-style: normal;
}

.service-expert-quote__name {
    color: var(--navy);
    font-weight: 700;
}

.service-expert-quote__role {
    color: var(--gray-500);
    font-size: var(--text-sm);
}

@media (max-width: 640px) {
    .service-expert-quote {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: var(--space-5);
    }

    .service-expert-quote .service-expert-quote__photo {
        width: 72px;
        height: 72px;
    }
}

/* ═══════════════════════════════════════════
   PRICING BOX
   <section class="pricing-section">
     <div class="container"><h2>Cennik</h2>
       <div class="pricing-box">
         <div class="pricing-item">
           <span class="pricing-name">Usługa</span>
           <span class="pricing-dots"></span>
           <span class="pricing-value">200 zł</span>
         </div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.pricing-jump-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.pricing-jump-nav .tab-btn {
    text-decoration: none;
    display: inline-block;
}

.pricing-section {
    padding: var(--section-padding-y-compact) 0;
}

.pricing-section.full-bleed-section {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: var(--space-5);
}

.pricing-box {
    max-width: var(--content-narrow);
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-base);
    padding: var(--space-6) var(--space-8);
    border: 1px solid var(--gray-200);
}

.pricing-item {
    display: flex;
    align-items: baseline;
    padding: var(--space-3) 0;
    gap: var(--space-3);
}



.pricing-name {
    font-weight: 500;
    font-size: var(--text-base);
    color: var(--navy);
    white-space: normal;
}

.pricing-dots {
    flex: 1;
    border-bottom: 1px dotted var(--gray-200);
    margin: 0 var(--space-3);
    min-width: 20px;
    align-self: center;
}

.pricing-value {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    font-size: var(--text-base);
}

.pricing-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-style: italic;
}

.pricing-category {
    font-weight: 600;
    font-size: var(--text-xs);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-6) 0 var(--space-2) 0;
    border-bottom: none;
    margin-top: var(--space-2);
}

.pricing-category:first-child {
    padding-top: var(--space-1);
    border-top: none;
    margin-top: 0;
}

.pricing-item--link {
    text-decoration: none;
    color: inherit;
    transition: background var(--transition-fast);
    border-radius: 4px;
    margin: 0 calc(-1 * var(--space-2));
    padding-left: var(--space-2);
    padding-right: var(--space-2);
}

.pricing-item--link:hover {
    background: var(--gray-50);
}

.pricing-item--link .pricing-name {
    color: var(--navy);
}

/* ═══════════════════════════════════════════
   ZIGZAG
   <section class="zigzag">
     <div class="container">
       <div class="zigzag-item">
         <div class="zigzag-text"><h2>Tytuł</h2><p>Tekst</p></div>
         <div class="zigzag-image"><img src="..." alt="..." /></div>
       </div>
       <div class="zigzag-item zigzag-item--reverse">...</div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.zigzag {
    padding: var(--section-padding-y-compact) 0;
    /* Zawsze full-bleed – wyrwanie z wąskiego service-prose (max 800px) */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* .zigzag jest full-bleed (100vw), więc .container wraca do standardowego
   max-width + wyśrodkowania – bez tego padding liczony w % od 100vw
   rozjeżdżał się z innymi sekcjami na szerokich ekranach. */

.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-16);
}

.zigzag-item:last-child {
    margin-bottom: 0;
}

.zigzag-item--reverse {
    direction: rtl;
}

.zigzag-item--reverse>* {
    direction: ltr;
}

.section--relax-choice {
    background: linear-gradient(180deg, var(--off-white) 0%, #f6f9f3 100%);
}

.section--relax-choice .container {
    max-width: 1120px;
}

.zigzag-item--relaxed {
    grid-template-columns: minmax(360px, 0.95fr) minmax(440px, 1.05fr);
    gap: var(--space-16);
    align-items: center;
}

.zigzag-item--relaxed .zigzag-image img {
    aspect-ratio: 16 / 10;
}

.zigzag-item--relaxed .zigzag-text {
    max-width: 560px;
}

.zigzag-item--relaxed .zigzag-text ul {
    margin-bottom: var(--space-5);
}

.zigzag-item--relaxed .zigzag-text li {
    margin-bottom: var(--space-4);
}

.zigzag-text__cta {
    margin-top: var(--space-2);
}

.zigzag-text h2 {
    margin-bottom: var(--space-4);
}

.zigzag-text h3 {
    margin-bottom: var(--space-3);
}

.zigzag-text p {
    color: var(--gray-600);
    line-height: 1.8;
}

.zigzag-image {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.zigzag-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (max-width: 768px) {

    .zigzag .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .zigzag-item,
    .zigzag-item--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .zigzag-item--relaxed {
        gap: var(--space-8);
    }

    .zigzag-image {
        order: -1;
    }
}

/* ═══════════════════════════════════════════
   INFO CARDS – Liquid Glass
   <section class="info-cards-section">
     <div class="container"><h2>Informacje</h2>
       <div class="info-cards">
         <div class="info-card">
           <div class="info-card-icon"><svg>…</svg></div>
           <h3>Tytuł</h3>
           <p>Opis</p>
         </div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.info-cards-section {
    padding: var(--section-padding-y-compact) 0;
}

.info-cards-section h2 {
    text-align: center;
    margin-bottom: var(--space-10);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

/* ── Liquid Glass Card ── */
.info-card {
    position: relative;
    background: linear-gradient(135deg,
            rgba(42, 157, 143, 0.08) 0%,
            rgba(42, 157, 143, 0.03) 50%,
            rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: var(--space-8) var(--space-6);
    border: 1px solid rgba(42, 157, 143, 0.18);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 4px 24px rgba(42, 157, 143, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

/* Liquid glass highlight streak */
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.15) 45%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 55%);
    pointer-events: none;
    transition: transform 0.6s ease;
}

.info-card:hover::before {
    transform: translateX(30%);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 8px 32px rgba(42, 157, 143, 0.16),
        0 2px 12px rgba(42, 157, 143, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(42, 157, 143, 0.3);
    background: linear-gradient(135deg,
            rgba(42, 157, 143, 0.12) 0%,
            rgba(42, 157, 143, 0.05) 50%,
            rgba(255, 255, 255, 0.7) 100%);
}

/* ── SVG Icon container ── */
.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.15) 0%, rgba(42, 157, 143, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 157, 143, 0.12);
}

.info-card:hover .info-card-icon {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.25) 0%, rgba(42, 157, 143, 0.1) 100%);
    transform: scale(1.08);
    border-color: rgba(42, 157, 143, 0.2);
}

.info-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    stroke-width: 1.8;
    fill: none;
    transition: stroke 0.3s ease;
}

.info-card:hover .info-card-icon svg {
    stroke: var(--primary-dark, #1a7a6d);
}

/* ── Card text ── */
.info-card h3 {
    margin-bottom: var(--space-2);
    font-size: var(--text-lg);
    color: var(--navy);
    font-weight: 600;
}

.info-card p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ── When on bg-alt (with gradient background) ── */
.bg-alt .info-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.45) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(42, 157, 143, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.bg-alt .info-card:hover {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(42, 157, 143, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .info-cards {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .info-card {
        padding: var(--space-6) var(--space-5);
    }
}

/* ═══════════════════════════════════════════
   INFO LIST – Classic white background list
   <section class="info-list-section">
     <div class="container"><h2>Tytuł</h2>
       <div class="info-list">
         <div class="info-list-item">
           <div class="info-list-icon"><svg>…</svg></div>
           <div class="info-list-content">
             <h3>Tytuł</h3><p>Opis</p>
           </div>
         </div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.info-list-section {
    padding: var(--section-padding-y-compact) 0;
}

/* h2 margin-bottom inherited from global.css */

.info-list {
    max-width: var(--content-narrow);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition-fast);
}

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

.info-list-item:hover {
    background: var(--gray-50);
}

.info-list-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.12) 0%, rgba(42, 157, 143, 0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(42, 157, 143, 0.1);
    transition: all var(--transition-fast);
}

.info-list-item:hover .info-list-icon {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.2) 0%, rgba(42, 157, 143, 0.08) 100%);
    border-color: rgba(42, 157, 143, 0.2);
}

.info-list-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    stroke-width: 1.8;
    fill: none;
}

.info-list-content h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.info-list-content p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .info-list-item {
        padding: var(--space-4) var(--space-4);
        gap: var(--space-4);
    }

    .info-list-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .info-list-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ═══════════════════════════════════════════
   PROCESS STEPS
   <section class="process-steps-section">
     <div class="container"><h2>Jak wygląda wizyta?</h2>
       <div class="process-steps">
         <div class="step">
           <div class="step-number">1</div>
           <div class="step-content">
             <h3>Krok 1</h3><p>Opis</p>
           </div>
         </div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.process-steps-section {
    padding: var(--section-padding-y-compact) 0;
}

.process-steps-section--in-flow {
    padding: 0;
}

.process-steps-section--after-media {
    padding-top: var(--section-padding-y-compact);
}

.process-steps-section h2 {
    text-align: center;
}

.process-steps {
    max-width: var(--content-narrow);
    margin: 0 auto;
    position: relative;
    display: grid;
    gap: var(--space-6);
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: var(--gray-200);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: var(--space-6);
    align-items: start;
    padding: var(--space-5) 0;
}

.process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-button);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(74, 140, 32, 0.2);
    grid-row: 1 / span 2;
}

.process-step h3 {
    grid-column: 2;
    margin: 0 0 var(--space-2);
    font-size: var(--text-xl);
    color: var(--navy);
}

.process-step p {
    grid-column: 2;
    margin: 0;
    color: var(--gray-700);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .process-steps-section--after-media {
        padding-top: var(--space-12);
    }
}

.step {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    position: relative;
}

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

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    margin-bottom: var(--space-2);
    font-size: var(--text-xl);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

.step--active {
    background: var(--primary-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-4) var(--space-6);
    margin-left: calc(-1 * var(--space-6));
    margin-right: calc(-1 * var(--space-6));
}

.step--active .step-number {
    background: var(--primary-dark);
}

/* ═══════════════════════════════════════════
   STATS ROW
   <section class="stats-section">
     <div class="container">
       <div class="stats-row">
         <div class="stat">
           <span class="stat-number">15+</span>
           <span class="stat-label">lat doświadczenia</span>
         </div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.stats-section {
    padding: var(--section-padding-y-compact) 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-base);
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════
   FEATURES GRID
   <section class="features-section">
     <div class="container"><h2>Dlaczego my?</h2>
       <div class="features-grid">
         <div class="feature-card">
           <div class="feature-icon">✨</div>
           <h3>Cecha</h3><p>Opis</p>
         </div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.features-section {
    padding: var(--section-padding-y-compact) 0;
    background: var(--gray-50);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-section h2 {
    text-align: center;
    color: var(--navy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.feature-card {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--white);
    border-radius: var(--border-radius-base);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 157, 143, 0.25);
    box-shadow: 0 8px 32px rgba(42, 157, 143, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.12) 0%, rgba(42, 157, 143, 0.04) 100%);
    border: 1px solid rgba(42, 157, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.2) 0%, rgba(42, 157, 143, 0.08) 100%);
    transform: scale(1.08);
}

.feature-card h3 {
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
    color: var(--navy);
    overflow-wrap: anywhere;
}

.feature-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .feature-card {
        padding: var(--space-6) var(--space-5);
    }

    .feature-card h3 {
        font-size: var(--text-xl);
    }
}

/* ═══════════════════════════════════════════
   PARALLAX BREAK
   <section class="parallax-break" style="background-image: url(...)">
     <div class="parallax-overlay">
       <div class="container text-center">
         <h2>Tekst</h2><p>Podtytuł</p>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.parallax-break {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 350px;
    display: flex;
    align-items: center;
    /* Full bleed */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -1px;
    margin-bottom: -1px;
}

.parallax-break--with-top-gap {
    margin-top: var(--section-padding-y);
}

.parallax-break--session {
    min-height: 420px;
    overflow: hidden;
    background: var(--navy);
    isolation: isolate;
}

.parallax-break__media {
    position: absolute;
    inset: -15% 0;
    z-index: 0;
    width: 100%;
    height: 130%;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: cover;
    object-position: center 68%;
    transform: translate3d(0, var(--session-parallax-shift, 0%), 0) scale(1.02);
    will-change: transform;
}

.parallax-break--session .parallax-overlay {
    background:
        linear-gradient(180deg, rgba(0, 35, 26, 0.38) 0%, rgba(0, 35, 26, 0.66) 100%),
        radial-gradient(circle at 50% 64%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.44) 78%);
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 45, 29, 0.94) 0%, rgba(0, 38, 24, 0.90) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-prose .parallax-break .parallax-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: var(--white) !important;
    text-align: center;
    line-height: 1.5;
    max-width: var(--content-narrow);
    margin: 0 auto;
    border: none;
    padding: 0 var(--space-4);
    font-style: italic;
    opacity: 1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.parallax-break h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.parallax-break p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .parallax-break {
        background-attachment: scroll;
        min-height: 280px;
    }

    .parallax-break--with-top-gap {
        margin-top: var(--space-14);
    }

    .parallax-break--session {
        min-height: 320px;
    }

    .parallax-break__media {
        inset: -12% 0;
        height: 124%;
        object-position: center 64%;
    }

    .service-prose .parallax-break .parallax-quote {
        font-size: 1.25rem;
        line-height: 1.45;
        padding: 0 var(--space-5);
    }
}

/* ═══════════════════════════════════════════
   BLOG SECTION
   <section class="blog-section">
     <div class="container-wide"><h2>Blog</h2>
       <div class="blog-cards">
         <a class="blog-card" href="...">
           <img src="..." alt="..." />
           <div class="blog-card-body">
             <span class="tag">Kategoria</span>
             <h3>Tytuł</h3><p>Excerpt</p>
           </div>
         </a>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.blog-section {
    padding: var(--section-padding-y) 0;
    background: var(--gray-50);
    /* Full bleed */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -1px;
    margin-bottom: -1px;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: var(--space-3);
}

.blog-section .section-subtitle {
    text-align: center;
    margin-bottom: var(--space-10);
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: inherit;
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-body {
    padding: var(--space-5);
}

.blog-card-body .tag {
    margin-bottom: var(--space-3);
}

.blog-card-body h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.blog-card-body p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-cards {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   IMAGE GRID
   <div class="image-grid">
     <img src="..." alt="..." />
     <img src="..." alt="..." />
   </div>
   ═══════════════════════════════════════════ */

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.image-grid img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   TWO COLUMNS
   <div class="two-col">
     <div class="two-col-left"><h3>Lewa</h3>...</div>
     <div class="two-col-right"><h3>Prawa</h3>...</div>
   </div>
   ═══════════════════════════════════════════ */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    margin: var(--space-8) 0;
}

.two-col h3 {
    margin-bottom: var(--space-4);
}

.two-col p,
.two-col li {
    color: var(--gray-600);
    line-height: 1.7;
}

.two-col ul {
    list-style: none;
    padding: 0;
}

.two-col li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
}

.two-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-text);
    font-weight: 700;
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   NOTICE BOX / CROSS-LINKS
   <div class="notice-box notice-info">
     <h3>Powiązane tematy</h3>
     <ul>
       <li><a href="...">Link</a></li>
     </ul>
   </div>
   ═══════════════════════════════════════════ */

.notice-box {
    border-radius: var(--border-radius-lg);
    padding: var(--space-6) var(--space-8);
    margin: var(--space-8) auto;
    max-width: var(--content-narrow);
}

.notice-box h3 {
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
}

.notice-info {
    background: var(--primary-light);
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.notice-warning {
    background: #FFF3CD;
    border: 1px solid #FFEAA7;
}

.notice-success {
    background: #D4EDDA;
    border: 1px solid #C3E6CB;
}

.notice-box ul {
    list-style: none;
    padding: 0;
    columns: 2;
    gap: var(--space-6);
}

.notice-box li {
    margin-bottom: var(--space-2);
    break-inside: avoid;
    position: relative;
    padding-left: var(--space-6);
}

.notice-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-text);
    font-weight: 700;
}

.notice-box a {
    color: var(--primary-text);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.notice-box a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .notice-box ul {
        columns: 1;
    }
}

/* ═══════════════════════════════════════════
   TESTIMONIAL
   <div class="testimonial">
     <blockquote class="testimonial-text">"Opinia"</blockquote>
     <div class="testimonial-author">
       <span class="testimonial-name">Jan K.</span>
       <span class="testimonial-source">Google</span>
     </div>
   </div>
   ═══════════════════════════════════════════ */

.testimonial {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    margin: var(--space-8) 0;
    text-align: center;
}

.testimonial-text {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-4);
    border: none;
    padding: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--navy);
}

.testimonial-source {
    color: var(--gray-400);
    font-size: var(--text-sm);
    margin-left: var(--space-2);
}

/* ═══════════════════════════════════════════
   SERVICE CTA (full-width bottom strip)
   <section class="service-cta">
     <div class="container text-center">
       <h2>Potrzebujesz pomocy?</h2>
       <p>Opis</p>
       <div class="service-cta-buttons">
         <a href="..." class="btn btn--primary">CTA</a>
         <a href="..." class="btn btn--outline">Zadzwoń</a>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.service-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: var(--section-padding-y-compact) 0;
    color: var(--white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.service-cta h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--white);
}

.service-cta p {
    font-size: var(--text-lg);
    opacity: 0.8;
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta .btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.service-cta .btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .service-cta-buttons {
        justify-content: center;
    }
}

/* Voucher button – amber/gold */
.btn--voucher {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.25);
    transition: all var(--transition-base);
}

.btn--voucher:hover {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

/* ═══════════════════════════════════════════
   SERVICE TILES – clickable card links to subpages
   <section class="service-tiles-section">
     <div class="container"><h2>Título</h2>
       <div class="service-tiles">
         <a class="service-tile" href="...">
           <div class="service-tile-icon">🏃</div>
           <h3>Fizjoterapia sportowa</h3>
           <p>Krótki opis</p>
           <span class="service-tile-arrow">→</span>
         </a>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.service-tiles-section {
    padding: var(--section-padding-y-compact) 0;
}

.service-tiles-section h2 {
    text-align: center;
    margin-bottom: var(--space-3);
}

.service-tiles-section .section-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-tile {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8) var(--space-6);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.service-tile:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary);
    color: inherit;
}

.service-tile-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: 2rem;
    transition: background var(--transition-base);
}

.service-tile:hover .service-tile-icon {
    background: var(--primary);
    color: var(--white);
}

.service-tile h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.service-tile p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    flex: 1;
}

.service-tile-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--primary-text);
    font-size: var(--text-lg);
    font-weight: 700;
    transition: all var(--transition-base);
}

.service-tile:hover .service-tile-arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .service-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .service-tiles {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   FULL BLEED – container breakout helper
   ═══════════════════════════════════════════ */

.full-bleed-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.section--after-media {
    padding-top: var(--section-padding-y-compact);
}

@media (max-width: 768px) {
    .section--after-media {
        padding-top: var(--space-12);
    }
}

/* ═══════════════════════════════════════════
   RELAXATION CONVERSION MODULES
   ═══════════════════════════════════════════ */

.relax-mini-proof {
    padding: var(--space-10) 0 var(--space-10);
    background:
        linear-gradient(180deg, var(--off-white) 0%, #f6f9f3 100%);
    overflow: hidden;
}

.relax-mini-proof .container {
    max-width: 1040px;
}

.relax-mini-proof__intro {
    display: grid;
    justify-items: center;
    gap: var(--space-3);
    max-width: 720px;
    margin: 0 auto var(--space-6);
    text-align: center;
}

.relax-mini-proof__rating {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius-pill);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 90, 57, 0.10);
    color: var(--navy);
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 28px rgba(0, 65, 43, 0.07);
    white-space: nowrap;
}

.relax-mini-proof__intro h2,
.service-prose .relax-mini-proof__intro h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    line-height: 1.15;
}

.relax-mini-proof__intro p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.65;
}

.relax-proof-carousel {
    --relax-proof-card-width: min(720px, calc(100vw - var(--space-12)));
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: var(--space-4) auto 0;
}

.relax-proof-carousel__viewport {
    position: relative;
    overflow: hidden;
}

.relax-proof-carousel__viewport::before,
.relax-proof-carousel__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(2rem, 8vw, 5rem);
    pointer-events: none;
}

.relax-proof-carousel__viewport::before {
    left: 0;
    background: linear-gradient(90deg, #f6f9f3 0%, rgba(246, 249, 243, 0) 100%);
}

.relax-proof-carousel__viewport::after {
    right: 0;
    background: linear-gradient(270deg, #f6f9f3 0%, rgba(246, 249, 243, 0) 100%);
}

.relax-proof-carousel__track {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    scroll-padding-inline: calc((100% - var(--relax-proof-card-width)) / 2);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding:
        var(--space-2)
        calc((100% - var(--relax-proof-card-width)) / 2)
        var(--space-4);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.relax-proof-carousel__track::-webkit-scrollbar {
    display: none;
}

.relax-proof-card {
    display: flex;
    flex: 0 0 var(--relax-proof-card-width);
    flex-direction: column;
    justify-content: space-between;
    min-height: 255px;
    padding: var(--space-6);
    border: 1px solid rgba(0, 90, 57, 0.10);
    border-radius: var(--border-radius-base);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 253, 248, 0.94) 100%);
    box-shadow: 0 18px 42px rgba(0, 65, 43, 0.08);
    opacity: 0.5;
    scroll-snap-align: center;
    transform: scale(0.94);
    transition:
        opacity var(--transition-base),
        transform var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base);
}

.relax-proof-card.is-active {
    border-color: rgba(0, 90, 57, 0.18);
    box-shadow: 0 24px 58px rgba(0, 65, 43, 0.13);
    opacity: 1;
    transform: scale(1);
}

.relax-proof-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    color: var(--primary-text);
    font-size: var(--text-sm);
    font-weight: 800;
}

.relax-proof-card blockquote {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin: var(--space-5) 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--gray-700) !important;
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.25vw, 1.08rem);
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1.55;
}

.relax-proof-card footer {
    display: grid;
    gap: 0.2rem;
    color: var(--gray-600);
}

.relax-proof-card footer strong {
    color: var(--navy);
}

.relax-proof-card footer span {
    font-size: var(--text-sm);
}

.relax-proof-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.relax-proof-carousel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(0, 90, 57, 0.18);
    border-radius: var(--border-radius-pill);
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0, 65, 43, 0.09);
    transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.relax-proof-carousel__button:hover,
.relax-proof-carousel__button:focus-visible {
    border-color: rgba(0, 90, 57, 0.3);
    background: var(--white);
    transform: translateY(-1px);
}

.relax-proof-carousel__button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.relax-proof-carousel__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-height: 42px;
    padding: 0 var(--space-2);
}

.relax-proof-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: var(--border-radius-pill);
    background: rgba(0, 90, 57, 0.22);
    cursor: pointer;
    transition: width var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.relax-proof-carousel__dot:hover,
.relax-proof-carousel__dot:focus-visible,
.relax-proof-carousel__dot.is-active {
    width: 26px;
    background: var(--primary-button);
}

.relax-fit-section {
    padding: var(--section-padding-y-compact) 0;
    background: var(--off-white);
}

.relax-fit-section .container {
    max-width: 1120px;
}

.relax-fit-section__header {
    max-width: 720px;
    margin: 0 auto var(--space-8);
    text-align: center;
}

.relax-fit-section__header h2,
.service-prose .relax-fit-section .relax-fit-section__header h2 {
    margin: 0 0 var(--space-3);
    color: var(--navy);
}

.relax-fit-section__header p {
    margin: 0;
    color: var(--gray-600);
}

.relax-fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
}

.relax-fit-card {
    min-height: 190px;
    padding: var(--space-5);
    border: 1px solid rgba(0, 90, 57, 0.10);
    border-radius: var(--border-radius-base);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    scroll-margin-top: var(--space-28);
}

.relax-fit-card h3,
.service-prose .relax-fit-card h3 {
    margin: 0 0 var(--space-3);
    color: var(--navy);
    font-size: var(--text-lg);
}

.relax-fit-card p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.65;
}

.relax-duration-guide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
    max-width: 820px;
    margin: 0 auto var(--space-8);
}

.duration-card {
    position: relative;
    min-height: 190px;
    padding: var(--space-6);
    border: 1px solid rgba(0, 90, 57, 0.12);
    border-radius: var(--border-radius-base);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    scroll-margin-top: var(--space-28);
}

.duration-card--recommended {
    border-color: rgba(82, 170, 38, 0.38);
    box-shadow: 0 18px 40px rgba(0, 65, 43, 0.10);
}

.duration-card__badge,
.pricing-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: var(--border-radius-pill);
    background: var(--primary-light);
    color: var(--primary-text);
    font-size: var(--text-xs);
    font-weight: 800;
    line-height: 1.1;
}

.duration-card__badge {
    margin-bottom: var(--space-3);
    padding: 0.35rem 0.7rem;
}

.duration-card h3,
.service-prose .duration-card h3 {
    margin: 0 0 var(--space-2);
    color: var(--navy);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.05;
}

.duration-card p {
    margin: 0 0 var(--space-5);
    color: var(--gray-600);
    line-height: 1.65;
}

.duration-card__price {
    color: var(--navy);
    font-weight: 800;
}

.pricing-item--recommended {
    position: relative;
    margin: 0 calc(-1 * var(--space-3));
    padding: var(--space-4) var(--space-3) var(--space-3);
    border: 1px solid rgba(82, 170, 38, 0.26);
    border-radius: var(--border-radius-base);
    background: rgba(101, 191, 47, 0.035);
}

.pricing-item--recommended .pricing-name {
    font-weight: 700;
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: var(--space-3);
    transform: translateY(-50%);
    padding: 0.2rem 0.55rem;
    background: var(--white);
    border: 1px solid rgba(82, 170, 38, 0.24);
    box-shadow: 0 6px 14px rgba(0, 65, 43, 0.06);
}

.relax-voucher-section {
    padding: var(--space-12) 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #f6f9f3 100%);
}

.relax-voucher-section .container {
    max-width: 980px;
}

.relax-voucher-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    padding: var(--space-8);
    border: 1px solid rgba(0, 90, 57, 0.12);
    border-radius: var(--border-radius-base);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.relax-voucher-card__kicker {
    margin: 0 0 var(--space-2) !important;
    color: var(--primary-text) !important;
    font-size: var(--text-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.relax-voucher-card h2,
.service-prose .relax-voucher-card h2 {
    margin: 0 0 var(--space-3);
    color: var(--navy);
}

.relax-voucher-card p:last-child {
    margin-bottom: 0;
    color: var(--gray-600);
}

@media (max-width: 900px) {
    .relax-fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .relax-mini-proof {
        padding: var(--space-8) 0;
    }

    .relax-mini-proof .container {
        padding-inline: var(--space-5);
    }

    .relax-mini-proof__intro {
        justify-items: start;
        text-align: left;
    }

    .relax-proof-carousel {
        --relax-proof-card-width: min(21rem, calc(100vw - var(--space-10)));
    }

    .relax-proof-carousel__track {
        gap: var(--space-3);
        padding-bottom: var(--space-3);
    }

    .relax-proof-card {
        min-height: 300px;
        padding: var(--space-5);
    }

    .relax-proof-card blockquote {
        -webkit-line-clamp: 5;
        font-size: var(--text-base);
    }

    .relax-proof-carousel__controls {
        margin-top: var(--space-3);
    }

    .relax-fit-section {
        padding: var(--space-12) 0;
    }

    .relax-fit-section__header {
        text-align: left;
    }

    .relax-fit-grid,
    .relax-duration-guide {
        grid-template-columns: 1fr;
    }

    .relax-fit-card,
    .duration-card {
        min-height: 0;
    }

    .pricing-actions {
        align-items: stretch;
        flex-direction: column;
        gap: var(--space-4);
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
    }

    .pricing-actions .btn {
        width: 100%;
        white-space: normal;
    }

    .pricing-section--relax > .container {
        padding-inline: var(--space-3);
    }

    .pricing-section--relax .pricing-box {
        width: 100%;
        max-width: none;
        padding-inline: var(--space-5);
    }

    .pricing-section--relax .pricing-item {
        gap: var(--space-2);
    }

    .pricing-section--relax .pricing-dots {
        min-width: 12px;
        margin-inline: var(--space-2);
    }

    .relax-voucher-card {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-5);
        padding: var(--space-6);
    }
}

@media (prefers-reduced-motion: reduce) {
    .relax-proof-carousel__track {
        scroll-behavior: auto;
    }

    .relax-proof-card {
        transition: none;
    }
}

/* ═══════════════════════════════════════════
   SERVICE PHOTO STORY
   ═══════════════════════════════════════════ */

.service-photo-story {
    padding: var(--section-padding-y-compact) 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #f6f9f3 100%);
}

.service-photo-story--with-top-gap {
    margin-top: var(--section-padding-y-compact);
}

.service-photo-story--after-copy {
    margin-top: 0;
    padding-top: var(--space-12);
}

.service-photo-story--after-proof {
    padding-top: var(--space-10);
}

.service-photo-story--quiet {
    background: linear-gradient(180deg, #f6f9f3 0%, var(--off-white) 100%);
}

.service-photo-story + .parallax-break--with-top-gap {
    margin-top: 0;
}

.service-photo-story__header {
    max-width: 720px;
    margin: 0 auto var(--space-10);
    text-align: center;
}

.service-photo-story__header h2,
.service-prose .service-photo-story .service-photo-story__header h2 {
    margin: 0 0 var(--space-3);
    color: var(--navy);
}

.service-photo-story__header p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-photo-story__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6);
    max-width: 1080px;
    margin: 0 auto;
}

.service-photo-card {
    position: relative;
    overflow: hidden;
    min-height: clamp(280px, 28vw, 420px);
    border-radius: var(--border-radius-base);
    background: var(--navy-dark);
    box-shadow: 0 18px 42px rgba(0, 65, 43, 0.10);
    transform: translateZ(0);
}

.service-photo-card__media {
    position: absolute;
    inset: -8% 0;
    transform: translate3d(0, var(--relax-photo-y, 0px), 0);
    will-change: transform;
}

.service-photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: cover;
    transform: scale(1.01);
    animation: servicePhotoBreath 9s ease-in-out infinite alternate;
}

.service-photo-card:hover img {
    transform: scale(1.035);
}

.service-photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(0, 35, 26, 0.62) 100%);
    pointer-events: none;
}

.service-photo-card figcaption {
    position: absolute;
    left: var(--space-4);
    bottom: var(--space-4);
    z-index: 1;
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

@keyframes servicePhotoBreath {
    from {
        transform: scale(1.01);
    }

    to {
        transform: scale(1.045);
    }
}

@media (max-width: 600px) {
    .service-photo-story {
        padding: var(--space-12) 0;
    }

    .service-photo-story--with-top-gap {
        margin-top: var(--space-12);
    }

    .service-photo-story--after-copy {
        padding-top: var(--space-10);
    }

    .service-photo-story--after-proof {
        padding-top: var(--space-8);
    }

    .service-photo-story__header {
        margin-bottom: var(--space-6);
        text-align: left;
    }

    .service-photo-story__grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .service-photo-card {
        min-height: clamp(250px, 76vw, 360px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-photo-card__media {
        transform: none;
    }

    .service-photo-card img {
        animation: none;
        transform: none;
    }
}

/* ═══════════════════════════════════════════
   ALTERNATING BACKGROUND HELPER
   ═══════════════════════════════════════════ */

.bg-alt {
    background: var(--gray-50);
}

/* ═══════════════════════════════════════════
   INFO-CARDS – DARK LIQUID GLASS VARIANT
   Add .info-cards-section--dark to the section
   ═══════════════════════════════════════════ */

.info-cards-section--dark {
    background: linear-gradient(135deg, #0d3b2e 0%, #0b2545 50%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative gradient blob */
.info-cards-section--dark::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(46, 139, 87, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.info-cards-section--dark::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(29, 53, 87, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.info-cards-section--dark h2 {
    color: var(--white) !important;
}

.info-cards-section--dark .info-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.info-cards-section--dark .info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.info-cards-section--dark .info-card-icon {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-cards-section--dark .info-card h3 {
    color: var(--white) !important;
}

.info-cards-section--dark .info-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ═══════════════════════════════════════════
   GLASSMORPHISM FAQ (dark variant)
   <section class="faq-section faq-section--glass full-bleed-section">
     <div class="container">
       <h2>FAQ</h2>
       <div class="faq-list">
         <details class="faq-item faq-item--glass">
           <summary class="faq-question">?</summary>
           <div class="faq-answer"><p>Answer</p></div>
         </details>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.faq-section--glass {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--navy) 100%);
    padding: var(--section-padding-y-compact) 0;
}

.faq-section--glass h2 {
    color: var(--white);
}

.faq-item--glass {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-4);
    padding: 0;
    overflow: hidden;
    transition: background var(--transition-base);
}

.faq-item--glass:hover {
    background: rgba(255, 255, 255, 0.12);
}

.faq-item--glass .faq-question {
    color: var(--white);
    padding: var(--space-5) var(--space-6);
}

.faq-item--glass .faq-question::after {
    color: rgba(255, 255, 255, 0.6);
}

.faq-item--glass[open] .faq-question::after {
    color: var(--white);
}

.faq-item--glass .faq-answer {
    color: rgba(255, 255, 255, 0.85);
    padding: 0 var(--space-6) var(--space-5);
}

.faq-item--glass .faq-answer p {
    color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════
   BRANDED CTA (Green with watermark)
   <section class="branded-cta">
     <div class="container container--branded-cta">
       <div class="branded-cta-content">
         <h2>Tytuł</h2>
         <p>Opis</p>
       </div>
       <div class="branded-cta-logo">
         <img src="/assets/images/general/logo-refizjo-white.png" alt="Refizjo" />
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.branded-cta {
    background: #005a39;
    padding: var(--section-padding-y-compact) 0;
    color: var(--white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.container--branded-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    position: relative;
    z-index: 2;
}

.branded-cta-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.branded-cta-content h2 a {
    color: var(--white) !important;
    text-decoration: none;
}

.branded-cta-content h2 a:hover,
.branded-cta-content h2 a:focus-visible {
    color: var(--white) !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.75);
    text-underline-offset: 0.14em;
}

.branded-cta-content p {
    font-size: var(--text-lg);
    line-height: 1.6;
    opacity: 0.9;
}

.branded-cta-logo {
    display: flex;
    justify-content: flex-end;
}

.branded-cta-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.4;
    filter: brightness(0) invert(1);
}

/* Decorative background shapes for extra branded feel */
.branded-cta::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 900px) {
    .container--branded-cta {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .branded-cta-logo {
        justify-content: center;
        order: -1;
    }

    .branded-cta-logo img {
        max-width: 180px;
    }
}

/* ═══════════════════════════════════════════
   CSS SCROLL-DRIVEN REVEAL ANIMATIONS
   Add class="reveal-on-scroll" to any element
   ═══════════════════════════════════════════ */

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reveal-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes reveal-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes reveal-scale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal-on-scroll {
    animation: reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
}

.reveal-on-scroll--left {
    animation: reveal-left linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
}

.reveal-on-scroll--right {
    animation: reveal-right linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
}

.reveal-on-scroll--scale {
    animation: reveal-scale linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
}

/* Staggered delays for grid children */
.reveal-stagger>*:nth-child(1) {
    animation-delay: 0ms;
}

.reveal-stagger>*:nth-child(2) {
    animation-delay: 60ms;
}

.reveal-stagger>*:nth-child(3) {
    animation-delay: 120ms;
}

.reveal-stagger>*:nth-child(4) {
    animation-delay: 180ms;
}

.reveal-stagger>*:nth-child(5) {
    animation-delay: 240ms;
}

.reveal-stagger>*:nth-child(6) {
    animation-delay: 300ms;
}

/* Graceful degradation for unsupported browsers */
@supports not (animation-timeline: view()) {

    .reveal-on-scroll,
    .reveal-on-scroll--left,
    .reveal-on-scroll--right,
    .reveal-on-scroll--scale {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Accessibility: respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .reveal-on-scroll,
    .reveal-on-scroll--left,
    .reveal-on-scroll--right,
    .reveal-on-scroll--scale {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ═══════════════════════════════════════════
   ANIMATED COUNTER STATS
   <section class="counter-stats-section">
     <div class="container">
       <div class="counter-stats">
         <div class="counter-stat">
           <span class="counter-value" data-target="200" data-suffix="+">0</span>
           <span class="counter-label">pacjentów</span>
         </div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.counter-stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--section-padding-y-compact) 0;
    color: var(--white);
}

.counter-stats-section--with-top-gap {
    margin-top: var(--section-padding-y);
}

.counter-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.counter-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-value {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-2);
}

.counter-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

@media (max-width: 768px) {
    .faq-section,
    .pricing-section,
    .zigzag,
    .info-cards-section,
    .info-list-section,
    .process-steps-section,
    .stats-section,
    .features-section,
    .service-tiles-section,
    .service-cta,
    .faq-section--glass,
    .branded-cta,
    .body-map-section,
    .problems-list-section,
    .contact-manager,
    .contact-hours,
    .counter-stats-section {
        padding: var(--space-12) 0;
    }

    .process-steps-section--in-flow {
        padding: 0;
    }

    .counter-stats-section--with-top-gap {
        margin-top: var(--space-14);
    }

    .process-steps {
        gap: 0;
        padding-left: 0;
    }

    .process-steps::before {
        left: 24px;
        top: 34px;
        bottom: 34px;
    }

    .process-step {
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: var(--space-5);
        padding: var(--space-5) 0;
    }

    .process-step-number {
        width: 48px;
        height: 48px;
    }

    .process-step h3 {
        font-size: var(--text-xl);
    }

    .process-step p {
        font-size: var(--text-base);
        line-height: 1.7;
    }

    .counter-stats {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .counter-stats:has(.counter-stat:nth-child(4)) {
        grid-template-columns: 1fr !important;
        gap: var(--space-6);
    }

    .counter-value {
        font-size: clamp(1.85rem, 9vw, 2.45rem);
        line-height: 1;
    }

    .counter-label {
        font-size: var(--text-sm);
        line-height: 1.35;
    }
}

@media (max-width: 400px) {
    .counter-stats {
        gap: var(--space-3);
    }
}

/* ═══════════════════════════════════════════
   INTERACTIVE SVG BODY MAP
   <section class="body-map-section">
     <div class="container">
       <div class="body-map-layout">
         <div class="body-map-text">...</div>
         <div class="body-map-svg">
           <svg>...</svg>
         </div>
         <div class="body-map-conditions">...</div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.body-map-section {
    padding: var(--section-padding-y-compact) 0;
    background: var(--gray-50);
}

.body-map-layout {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: var(--space-8);
    align-items: start;
}

.body-map-svg {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.body-map-svg svg {
    width: 100%;
    max-width: 240px;
    height: auto;
}

.body-map-hotspot {
    fill: var(--primary);
    opacity: 0.7;
    cursor: pointer;
    transition: all var(--transition-base);
}

.body-map-hotspot:hover {
    opacity: 1;
    fill: var(--primary-dark);
    transform-origin: center;
    r: 14;
}

.body-map-hotspot.active {
    opacity: 1;
    fill: var(--primary-dark);
}

.body-map-label {
    display: block;
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-2);
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-100);
    color: var(--navy);
    font-weight: 500;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.body-map-label:hover,
.body-map-label.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateX(4px);
}

.body-map-conditions h3 {
    font-size: var(--text-lg);
    color: var(--navy);
    margin-bottom: var(--space-4);
}

.body-map-text h2 {
    margin-bottom: var(--space-4);
}

.body-map-text p {
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .body-map-layout {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .body-map-svg {
        order: -1;
    }

    .body-map-svg svg {
        max-width: 180px;
    }

    .body-map-conditions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2);
    }
}

/* ═══════════════════════════════════════════
   TABBED CONTENT SWITCHER
   <div class="tabs-switcher">
     <div class="tabs-nav">
       <button class="tab-btn active">Tab 1</button>
     </div>
     <div class="tabs-panels">
       <div class="tab-panel active">content</div>
     </div>
   </div>
   ═══════════════════════════════════════════ */

.tabs-switcher {
    margin: var(--space-12) 0;
}

.tabs-nav {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: var(--space-8);
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    background: none;
    border: none;
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-400);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.tab-btn:hover {
    color: var(--primary-text);
    background: var(--gray-50);
}

.tab-btn.active {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-text);
    background: rgba(var(--primary-rgb, 46, 139, 87), 0.05);
}

.tab-panel {
    display: none;
    animation: tab-fade-in 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes tab-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.tab-panel-content img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .tab-panel-content {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        gap: var(--space-1);
    }

    .tab-btn {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }
}

/* ═══════════════════════════════════════════
   PRICING PACKAGES GRID – v2 (marketing)
   ═══════════════════════════════════════════ */

.packages-category-title {
    font-size: clamp(1.25rem, 2.1vw, 1.55rem);
    font-weight: 700;
    color: var(--navy);
    margin: var(--space-8) auto var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    max-width: 1320px;
}

.packages-category-title:first-child {
    margin-top: 0;
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1320px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 900px) {
    .pricing-packages {
        grid-template-columns: repeat(2, 1fr);
    }
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: clamp(var(--space-6), 2.4vw, var(--space-8));
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.package-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Featured (bestseller) variant */
.package-card--featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 4px 20px rgba(46, 139, 87, 0.12);
}

.package-card--featured:hover {
    box-shadow: 0 8px 30px rgba(46, 139, 87, 0.18);
}

/* Badge */
.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-5);
    width: fit-content;
}

.package-header {
    margin-bottom: var(--space-3);
}

.package-header h3 {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 2px;
    line-height: 1.2;
}

.package-tagline {
    font-size: var(--text-base);
    color: var(--gray-500);
    margin: 0 0 var(--space-5);
    line-height: 1.55;
}

/* Pricing block */
.package-pricing {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.package-price {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    font-weight: 700;
    color: var(--primary-text);
    white-space: nowrap;
    line-height: 1.05;
}

.package-original-price {
    font-size: var(--text-base);
    color: var(--gray-400);
    text-decoration: line-through;
    white-space: nowrap;
}

.package-savings {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #d97706;
    background: #fef3c7;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

/* Feature list */
.package-features {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 var(--space-8);
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-base);
    color: var(--gray-600);
    padding: 5px 0;
    line-height: 1.45;
}

.package-features li::before {
    content: '✓';
    color: var(--primary-text);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Per-card CTA */
.package-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--border-radius-base);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--primary);
    color: var(--primary-text);
    background: transparent;
    transition: all var(--transition-fast);
    margin-top: auto;
    text-align: center;
}

.package-cta:hover {
    background: var(--primary);
    color: var(--white);
}

.package-card--featured .package-cta {
    background: var(--primary);
    color: var(--white);
}

.package-card--featured .package-cta:hover {
    background: var(--primary-dark);
}

.package-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-top: var(--space-10);
}

/* Desc (kept for backward compat) */
.package-desc {
    font-size: var(--text-xs);
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 700px) {
    .pricing-section.full-bleed-section {
        padding-left: var(--space-5);
        padding-right: var(--space-5);
    }

    .pricing-packages {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .packages-category-title {
        max-width: none;
    }

    .package-card {
        padding: var(--space-6);
    }

    .package-actions {
        flex-direction: column;
        gap: var(--space-3);
        margin-top: var(--space-8);
    }

    .package-actions .btn {
        width: min(100%, 240px);
    }
}

/* ═══════════════════════════════════════════
   PRICING ITEM – LINK VARIANT
   <a href="..." class="pricing-item pricing-item--link">
   ═══════════════════════════════════════════ */

.pricing-item--link {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-base);
    margin: 0 calc(-1 * var(--space-2));
    padding: var(--space-3) var(--space-2);
}

.pricing-item--link:hover {
    background: var(--primary-light);
}

.pricing-item--link:hover .pricing-name {
    color: var(--primary-text);
}

.pricing-item--link .pricing-name::after {
    content: ' →';
    font-size: var(--text-sm);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.pricing-item--link:hover .pricing-name::after {
    opacity: 1;
}

/* ═══════════════════════════════════════════
   PROBLEMS LIST – Clean white-background checklist
   <section class="problems-list-section">
     <div class="container"><h2>Tytuł</h2>
       <ul class="problems-list">
         <li class="problems-list-item">
           <span class="problems-list-icon">✓</span>
           <div><strong>Tytuł</strong><span>Opis</span></div>
         </li>
       </ul>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.problems-list-section {
    padding: var(--section-padding-y-compact) 0;
}

.problems-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: var(--content-narrow);
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.problems-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition-fast);
}

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

.problems-list-item:hover {
    background: var(--gray-50);
}

.problems-list-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.12) 0%, rgba(42, 157, 143, 0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-text);
    font-weight: 700;
    font-size: var(--text-lg);
    border: 1px solid rgba(42, 157, 143, 0.1);
    transition: all var(--transition-fast);
}

.problems-list-item:hover .problems-list-icon {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.2) 0%, rgba(42, 157, 143, 0.08) 100%);
    border-color: rgba(42, 157, 143, 0.2);
}

.problems-list-item div strong {
    display: block;
    font-size: var(--text-base);
    color: var(--navy);
    margin-bottom: 2px;
}

.problems-list-item div span {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .problems-list-item {
        padding: var(--space-4);
        gap: var(--space-3);
    }

    .problems-list-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: var(--text-base);
    }
}

/* ═══════════════════════════════════════════
   TEAM GRID / TEAM CARD
   <section class="section">
     <div class="container">
       <div class="team-grid">
         <div class="team-card">
           <div class="team-card-photo-wrap">
             <img src="..." alt="..." />
           </div>
           <div class="team-card-info">
             <h3 class="team-card-name"><a href="...">Imię</a></h3>
             <p class="team-card-role">Rola</p>
             <a href="..." class="btn btn--sm btn--outline team-card-btn">Profil</a>
           </div>
         </div>
       </div>
     </div>
   </section>
   ═══════════════════════════════════════════ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    padding: var(--space-12) 0;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card-photo-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.team-card-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-photo-wrap img {
    transform: scale(1.05);
}

.team-card-info {
    padding: var(--space-6);
    text-align: center;
}

.team-card-name {
    font-size: var(--text-lg);
    margin-bottom: 2px;
    color: var(--navy);
}

.team-card-name a {
    color: inherit;
    text-decoration: none;
}

.team-card-name a:hover {
    color: var(--primary-text);
}

.team-card-role {
    color: var(--gray-500);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.team-card-btn {
    width: 100%;
}

.team-card-no-link {
    font-size: var(--text-xs);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ── Hero Stats (team page) ── */
.hero-stats {
    display: flex;
    gap: var(--space-8);
    justify-content: center;
    margin-top: var(--space-8);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-heading);
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-top: var(--space-1);
    display: block;
}

/* ── Team Features section ── */
.team-features-content {
    max-width: var(--content-narrow);
    margin: 0 auto;
    text-align: center;
}

.team-features-content ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.team-features-content li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-3);
    line-height: 1.7;
    font-size: var(--text-lg);
}

.team-features-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-text);
    font-weight: 700;
    font-size: var(--text-xl);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE MODULES
   ═══════════════════════════════════════════ */

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: start;
}

.contact-hero__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.contact-hero__info h1 {
    font-size: var(--text-5xl);
    color: var(--navy);
    margin-bottom: var(--space-10);
    font-family: var(--font-heading);
}

/* ── Contact Blocks ── */
.contact-block {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    margin-bottom: var(--space-8);
}

.contact-block__icon {
    flex-shrink: 0;
    color: var(--primary-text);
    margin-top: 2px;
}

.contact-block h3,
.contact-block__heading {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-1);
    line-height: 1.3;
}

.contact-block__phone {
    font-size: var(--text-3xl);
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-text);
    text-decoration: none;
    display: block;
    transition: color var(--transition-fast);
}

.contact-block__phone:hover {
    color: var(--primary-hover);
}

.contact-block__email {
    font-size: var(--text-lg);
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-block__email:hover {
    color: var(--primary-text);
}

.contact-block__text {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: 0;
}

.contact-block__note {
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin-top: var(--space-1);
    margin-bottom: 0;
}

/* ── Contact Booksy Button ── */
.contact-booksy-btn {
    margin-bottom: var(--space-10);
    padding: var(--space-3) var(--space-8);
    font-size: var(--text-base);
}

/* ── Google Maps ── */
.contact-map {
    width: 100%;
    line-height: normal;
    background: var(--gray-100);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.contact-map iframe[hidden] {
    display: none;
}

.consent-placeholder {
    min-height: 450px;
    display: grid;
    place-items: center;
    padding: var(--space-10) var(--space-4);
    background: linear-gradient(135deg, var(--primary-light), var(--gray-100));
    text-align: center;
}

.consent-placeholder[hidden] {
    display: none;
}

.consent-placeholder__inner {
    max-width: 520px;
}

.consent-placeholder h2 {
    margin-bottom: var(--space-3);
    color: var(--navy);
}

.consent-placeholder p {
    margin-bottom: var(--space-5);
    color: var(--gray-600);
}

.consent-placeholder__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

/* ── Manager Section ── */
.contact-manager {
    background: var(--white);
    padding: var(--section-padding-y-compact) 0;
}

.contact-manager__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.contact-manager__logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--navy);
}

.contact-manager__details {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.contact-manager__details h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.contact-manager__details .contact-block__text a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-manager__details .contact-block__text a:hover {
    color: var(--primary-text);
}

/* ── Hours Grid ── */
.contact-hours {
    background: var(--gray-50);
    padding: var(--section-padding-y-compact) 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.hours-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hours-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hours-icon {
    font-size: 2rem;
    margin-bottom: var(--space-4);
}

.hours-card h3 {
    font-size: var(--text-lg);
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.hours-time {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: var(--space-1);
}

.hours-note {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 0;
}

.hours-note a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 500;
}

.hours-note a:hover {
    text-decoration: underline;
}

/* ── Contact Responsive ── */
@media (max-width: 768px) {
    .contact-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .contact-hero__image {
        order: -1;
    }

    .contact-hero__info h1 {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-6);
    }

    .contact-block__phone {
        font-size: var(--text-2xl);
    }

    .contact-map iframe {
        height: 300px;
    }

    .contact-manager__inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }

    .contact-manager__details {
        flex-direction: column;
        align-items: center;
    }

    .contact-block__text .contact-sep {
        display: none !important;
    }

    .contact-address span,
    .contact-manager-links a {
        display: block !important;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}
