:root {
    --color-primary: #e8465a;
    /* Classic Flamingo Pink */
    --color-primary-dark: #c73348;
    --color-accent: #ff6b8b;
    /* Dusty Rose flavor of pink */
    --color-bg: #fffcfd;
    --color-bg-alt: #fff5f7;
    --color-text: #1a1a1a;
    --color-text-muted: #666666;
    --color-border: #f3e8eb;
    --color-star: #fbbf24;
    --color-primary-light: #fde8eb;
    --color-primary-pale: #fff0f2;
    --color-primary-hover: #ffdce1;
    --color-bg-guarantee: #FFF5F6;
    --color-success: #f0fdf4;
    --color-success-border: #86efac;

    --gradient-primary: linear-gradient(135deg, #ff6b8b, #e8465a);
    --gradient-dark: linear-gradient(135deg, #2d2a2b, #1a1a1a);

    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-heading: 'Outfit', system-ui, sans-serif;

    --font-size-base: clamp(15px, 1.6vw, 17px);
    --font-size-h1: clamp(32px, 4.5vw, 56px);
    /* Zmniejszone z 64px, jak w nowym */
    --font-size-h2: clamp(24px, 3.5vw, 36px);
    /* Zmniejszone z 42px, jak w nowym */

    --text-xs: 0.8rem;
    --text-sm: 0.9rem;
    --text-base: 1rem;
    --text-lg: 1.1rem;
    --text-xl: 1.25rem;
    --text-display: 3rem;

    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 1.25rem;
    --space-section: 4rem;
    --space-md: 2.5rem;
    --space-lg: 8rem;
    --space-xl: 12rem;

    --radius: 8px;
    /* Sharper corners = more expensive */
    --radius-sm: 4px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Faint elegant shadow */
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    color: #9c3f53;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-lg) 0;
}

.section--alt {
    background: var(--color-bg-alt);
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 252, 253, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-sm) 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-right: auto;
    text-decoration: none;
}

.nav__logo-img {
    height: 3rem;
    width: auto;
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav__links a {
    font-weight: 500;
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--color-primary);
}

.nav__burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Lang switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
}

.lang-btn {
    padding: 4px 10px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: none;
    color: var(--color-text);
    cursor: pointer;
    font-size: var(--text-xs);
    font-weight: 600;
    transition: all 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Phone button in nav */
.nav__phone-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.nav__phone-btn:hover {
    background: var(--color-primary-dark, #d63a4a);
    transform: translateY(-1px);
}
.nav__phone-btn .nav__phone-icon {
    width: 15px;
    height: 15px;
    stroke: white;
    flex-shrink: 0;
}

/* Floating phone button (mobile only) */
.floating-phone-btn {
    display: none;
    position: fixed;
    right: 1.25rem;
    bottom: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(232, 70, 90, 0.4);
    z-index: 200;
    transition: transform 0.2s, box-shadow 0.2s;
}
.floating-phone-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(232, 70, 90, 0.5);
}
.floating-phone-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* Mobile */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        padding: var(--space-sm);
        border-bottom: 1px solid var(--color-border);
    }

    .nav__links.open {
        display: flex;
    }

    .nav__burger {
        display: block;
    }
    .nav__phone-btn {
        display: none;
    }
    .floating-phone-btn {
        display: flex;
    }
}

/* HERO */
.hero {
    padding: 6rem 0 var(--space-lg);
    background: var(--color-bg);
    color: var(--color-text);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero__title {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

.hero__title span[data-i18n="hero_subtitle"] {
    color: var(--color-primary);
}

.hero__stat {
    color: var(--color-text);
    /* Zmieniono z żółtego na czarny */
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.hero__ctas {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    /* Sharper borders */
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    /* default */
    text-align: center;
    text-transform: uppercase;
}

.btn--primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 20px -6px rgba(232, 70, 90, 0.4);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(232, 70, 90, 0.5);
}

.btn--outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.hero__photo {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius);
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        gap: var(--space-sm);
    }

    .hero__image {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Calculator */
.calculator {
    max-width: 640px;
    margin: 0 auto;
}

.calculator__title {
    font-size: var(--font-size-h2);
    margin-bottom: var(--space-md);
    text-align: center;
}

.calculator__type {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.type-btn {
    flex: 1;
    padding: 14px 12px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.type-btn.active,
.type-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-pale);
}

.calculator__counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

/* Two-column calculator body */
.calculator__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    margin: 0.75rem 0;
}

.calculator__col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calculator__col .calculator__extras,
.calculator__col .calculator__chemicals {
    margin: 0;
}

@media (max-width: 520px) {
    .calculator__body {
        grid-template-columns: 1fr;
    }
}

.counter {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.counter__head {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.counter__icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.extra-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--color-text-muted);
    vertical-align: middle;
    display: inline-block;
}

.calc-type-icon {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    display: inline-block;
}

.counter label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.counter__controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 4px 6px;
    justify-content: space-between;
}

.counter__btn {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    background: white;
    font-size: 1.15rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    line-height: 1;
}

.counter__btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-pale);
}

.counter__value {
    font-size: 1.15rem;
    font-weight: 600;
    min-width: 2ch;
    text-align: center;
    font-family: var(--font-heading);
}

.calculator__extras {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.extra-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
}

.extra-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.calculator__frequency {
    margin-bottom: 1.25rem;
}

.calculator__reno-toggle,
.calculator__first-visit {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Frequency slider */
.freq-slider {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    user-select: none;
}

.freq-slider__track {
    position: relative;
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    cursor: pointer;
    margin: 0 12px;
    /* half of thumb width so thumb doesn't overhang */
}

.freq-slider__fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--color-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.2s ease;
    pointer-events: none;
}

.freq-slider__thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2.5px solid var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    cursor: grab;
    transition: left 0.15s ease;
    z-index: 2;
}

.freq-slider__thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.15);
}

.freq-slider__labels {
    display: flex;
    justify-content: space-between;
    padding: 0 0px;
}

.freq-slider__label {
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-text-muted, #888);
    cursor: pointer;
    transition: color 0.15s, font-weight 0.15s;
    flex: 1;
    text-align: center;
}

.freq-slider__label:first-child {
    text-align: left;
}

.freq-slider__label:last-child {
    text-align: right;
}

.freq-slider__label.active {
    color: var(--color-primary);
    font-weight: 600;
}

.freq-btn,
.reno-btn,
.visit-btn {
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    background: var(--color-bg);
    cursor: pointer;
    font-size: var(--text-sm, 0.9rem);
    transition: all 0.2s;
}

.freq-btn.active,
.reno-btn.active,
.visit-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.calculator__chemicals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.calc__generalne-note {
    background: var(--color-primary-pale, #fff0f2);
    border: 1px solid var(--color-primary-light, #fde8eb);
    border-radius: var(--radius, 8px);
    padding: 0.75rem 1rem;
    font-size: var(--text-sm, 0.9rem);
    color: var(--color-text);
    margin: 0.75rem 0;
}

.calc__first-visit-note {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius, 8px);
    padding: 0.75rem 1rem;
    font-size: var(--text-sm, 0.9rem);
    color: var(--color-text);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.5;
}

/* Info callout — used on service pages */
.info-callout {
    background: var(--color-primary-pale, #fff0f2);
    border: 1px solid var(--color-primary-light, #fde8eb);
    border-radius: var(--radius, 8px);
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    color: var(--color-text);
}

.info-callout a {
    color: var(--color-primary);
    text-decoration: underline;
}

.info-callout--neutral {
    background: var(--color-bg-alt, #f9f9f9);
    border-color: var(--color-border);
}

/* Price hint — example prices before booking form */
.price-hint {
    background: var(--color-bg-alt, #f9f9f9);
    border: 1px solid var(--color-border, #e0e0e0);
    border-left: 3px solid var(--color-primary, #e8225a);
    border-radius: var(--radius, 8px);
    padding: 0.9rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.price-hint__label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text, #1a1a2e);
}

.price-hint__rows {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-hint__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.price-hint__desc {
    color: var(--color-text-muted, #555);
}

.price-hint__price {
    white-space: nowrap;
    font-size: 0.88rem;
}

.price-hint__price s {
    color: #aaa;
    font-size: 0.82em;
}

.price-hint__price strong {
    color: var(--color-primary, #e8225a);
}

@media (max-width: 520px) {
    .price-hint__row {
        flex-direction: column;
        gap: 0;
    }
}

/* Hero service minimum price note */
.hero-service__min {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.calculator__result {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-align: center;
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.result__price {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text-muted);
}

.result__price strong {
    color: var(--color-primary);
    font-size: var(--text-display);
    display: block;
    margin-top: 4px;
    font-family: var(--font-heading);
    font-weight: 500;
    /* Adjusted for better visibility */
    letter-spacing: -0.02em;
}

.result__note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

/* Services */
.section__title {
    font-size: var(--font-size-h2);
    margin-bottom: var(--space-md);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.service-card {
    position: relative;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-card--featured {
    border: 2px solid var(--color-primary);
}

.service-card__badge {
    position: absolute;
    top: -14px;
    left: var(--space-md);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(232, 70, 90, 0.3);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background: var(--color-bg-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    flex: 1;
}

.service-card__price {
    font-weight: 700;
    color: var(--color-primary) !important;
}

.service-card__link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-top: auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Guarantees */
.guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.guarantee-item {
    text-align: center;
    padding: var(--space-md);
}

.guarantee-item__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guarantee-item h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
}

.guarantee-item p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guarantees {
        grid-template-columns: 1fr;
    }
}

/* Reviews Carousel */
.reviews-carousel {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: var(--space-sm);
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 calc(33.33% - var(--space-sm));
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.review-card__stars {
    color: var(--color-star);
    font-size: var(--text-lg);
    letter-spacing: 2px;
}

.review-card__text {
    font-style: italic;
    line-height: 1.6;
    flex: 1;
}

.review-card__author {
    font-weight: 600;
    font-size: 0.85rem;
}

.review-card__author span {
    color: var(--color-text-muted);
    font-weight: 400;
}

.carousel-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: var(--space-sm);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
    background: var(--color-primary);
    transform: scale(1.25);
}

.reviews-controls {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
    margin-top: var(--space-sm);
}

.reviews-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.reviews-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.reviews-footer {
    text-align: center;
    margin-top: var(--space-md);
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 85%;
    }
}

/* Before/After slider */
.before-after {
    max-width: 700px;
    margin: 0 auto;
}

.before-after__container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    user-select: none;
}

.before-after__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after__img--after {
    clip-path: inset(0 50% 0 0);
}

.before-after__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.before-after__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.before-after__labels {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-xs);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.before-after__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.ba-nav__btn {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}

.ba-nav__btn:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
}

.ba-nav__dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.ba-dot--active {
    background: var(--color-primary);
    transform: scale(1.3);
}

/* Coverage & FAQ */
.coverage {
    text-align: center;
}

.coverage__subtitle {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.coverage__districts {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.coverage__districts span {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: var(--text-sm);
}

.coverage__extra {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: var(--color-primary-hover);
}

.faq-item summary {
    padding: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--color-primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 var(--space-md) var(--space-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Booking Form */
.booking-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-hint {
    font-size: 0.78rem;
    color: var(--color-text-muted, #888);
    margin: 0;
    transition: color 0.2s;
}

.form-group label {
    font-weight: 600;
    font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--color-bg-alt);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(232, 70, 90, 0.1);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.booking-form__success {
    background: var(--color-success);
    border: 1px solid var(--color-success-border);
    border-radius: var(--radius);
    padding: var(--space-sm);
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .booking-form__row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--color-text);
    color: white;
    padding: var(--space-lg) 0 var(--space-sm);
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer__logo {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer__logo-img {
    height: 3rem;
    width: auto;
}

.footer__mission {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 4px;
}

.footer__contact,
.footer__social {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__col-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.25rem;
}

.footer a {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 1;
}

.footer .lang-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.footer .lang-btn.active,
.footer .lang-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-sm);
    text-align: center;
    opacity: 0.6;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* FAQ / Details */
.faq-item summary::after {
    color: var(--color-accent);
}

/* Hero Unity line (UK only — hidden when empty in PL/EN) */
.hero__unity {
    font-size: 1rem;
    color: var(--color-primary);
    font-style: italic;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.hero__unity:empty {
    display: none;
}

/* Section subtitle — shown below section titles */
.section__subtitle {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: calc(-1 * var(--space-sm));
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* Before/After caption below slider */
.before-after__caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

/* ── Julia Story Block (homepage, inside #portfolio) ── */
.story-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-md);
    align-items: center;
    background: #f0fdf4;
    /* Very light success green */
    border: 1px solid #dcfce7;
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-top: var(--space-md);
}

/* Success color vars if not already defined, using values from plan or best guess */
:root {
    --color-success: #f0fdf4;
    --color-success-border: #dcfce7;
}

.story-block__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: var(--space-xs);
}

.story-block__heading {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.story-block__body {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.story-block__stats {
    background: #fff;
    border: 1px solid #dcfce7;
    border-radius: var(--radius);
    padding: var(--space-sm);
    text-align: center;
    min-width: 140px;
}

.story-block__stats-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 2px;
}

.story-block__stats-before {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #bbb;
    text-decoration: line-through;
    display: block;
}

.story-block__stats-after {
    font-size: 2.25rem;
    /* Approximation of text-display */
    font-family: var(--font-heading);
    font-weight: 800;
    color: #16a34a;
    display: block;
    line-height: 1;
    margin: var(--space-xs) 0 2px;
}

.story-block__stats-delta {
    font-size: var(--text-xs);
    color: #16a34a;
    font-weight: 600;
}

@media (max-width: 640px) {
    .story-block {
        grid-template-columns: 1fr;
    }

    .story-block__stats {
        order: -1;
        min-width: unset;
    }
}

/* ── Julia Story Narrative (generalne-sprzatanie.html) ── */
.story-narrative {
    max-width: 680px;
    margin: 0 auto;
}

.story-narrative__quote {
    border-left: 4px solid var(--color-primary);
    margin: 0 0 var(--space-sm);
    padding: var(--space-sm) var(--space-sm) var(--space-sm) var(--space-md);
    background: #fff5f5;
    /* Approximation of primary-pale */
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
}

.story-narrative__cite {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    font-style: normal;
    margin-bottom: var(--space-sm);
}

.story-narrative__closing {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-top: var(--space-md);
}

/* =====================
   About Us Page
   ===================== */

.about-story__content {
    max-width: 720px;
}

.about-story__date {
    display: inline-block;
    margin-top: var(--space-sm);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.about-mission__box {
    max-width: 680px;
}

/* Team grid */
.about-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.about-team__grid--single {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

.team-card__image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--color-primary);
}

.team-card__image i {
    width: 28px;
    height: 28px;
}

.team-card__image--photo {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: none;
    border: 1px solid var(--color-border);
}

.team-card__image--photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team split layout */
.team-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    align-items: start;
}

.team-gallery__main {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--space-sm);
    background: var(--color-bg-alt);
    aspect-ratio: 4/3;
}

.team-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.team-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.team-thumb {
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.7;
}

.team-thumb:hover {
    opacity: 1;
}

.team-thumb--active {
    border-color: var(--color-primary);
    opacity: 1;
}

.team-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.team-facts {
    padding-top: var(--space-xs);
}

.team-facts__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.team-facts__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.team-fact-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.55;
}

.team-fact-item i {
    flex-shrink: 0;
    color: var(--color-primary);
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .team-split {
        grid-template-columns: 1fr;
    }

    .team-gallery__thumbs {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Standards checklist */
.about-standards__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.standard-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 1rem;
    line-height: 1.6;
}

.standard-item i {
    flex-shrink: 0;
    color: var(--color-primary);
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

/* Guarantee box */
.about-guarantee {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    padding: var(--space-md);
}

.about-guarantee__signature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.about-guarantee__contact {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.about-guarantee__contact:hover {
    text-decoration: underline;
}

/* Responsive: about page */
@media (max-width: 768px) {
    .about-team__grid {
        grid-template-columns: 1fr;
    }
}

/* --- About Page Specific Styles --- */

.about-hero .hero__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.about-story__content {
    max-width: 700px;
    margin: 0 auto;
}

.about-story__text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text);
}

.about-story__text p {
    margin-bottom: 1.4rem;
}

.about-story__date {
    display: block;
    font-weight: 700;
    margin-top: var(--space-md);
    font-size: 1.2rem;
    color: var(--color-primary);
}

.about-page .section {
    padding: var(--space-section) 0;
}

.about-mission__box {
    background: var(--color-bg-alt);
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.team-card {
    background: var(--color-bg);
    padding: var(--space-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.team-card__name {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.team-card__quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.about-standards__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.standard-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.standard-item i {
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-guarantee {
    background: var(--color-bg-guarantee);
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 2px dashed var(--color-primary);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-guarantee__signature {
    margin-top: var(--space-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.about-guarantee__contact {
    display: block;
    margin-top: var(--space-xs);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-hero .hero__inner {
        flex-direction: column-reverse;
        /* Put photo above text on mobile for personal feel */
    }
}

/* Dropdown Navigation */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Icon + description layout */
.nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    transition: background 0.2s, color 0.2s;
    color: var(--color-text);
    text-decoration: none;
}

.nav__dropdown-link:hover {
    background: var(--color-bg-alt);
}

.nav__dropdown-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    opacity: 0.85;
}

.nav__dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav__dropdown-text strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color 0.2s;
}

.nav__dropdown-link:hover .nav__dropdown-text strong {
    color: var(--color-primary);
}

.nav__dropdown-text small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.nav__dropdown-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.4rem 1.25rem;
}

/* 2-column wide dropdown */
.nav__dropdown-menu--wide {
    min-width: 560px;
    display: flex;
    padding: 0;
}

.nav__dropdown-col {
    flex: 1;
    padding: 0.5rem 0;
}

.nav__dropdown-col+.nav__dropdown-col {
    border-left: 1px solid var(--color-border);
}

.nav__col-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.75rem 1.25rem 0.3rem;
    margin: 0;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .nav__inner {
        justify-content: space-between;
    }

    .nav__dropdown-menu--wide {
        flex-direction: column;
        min-width: 100%;
    }

    .nav__dropdown-col+.nav__dropdown-col {
        border-left: none;
        border-top: 1px solid var(--color-border);
    }

    .nav__col-label {
        padding-top: 0.6rem;
    }

    .nav__dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 0.5rem;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        background: transparent;
    }

    .nav__dropdown.open .nav__dropdown-menu {
        display: block;
    }

    .nav__dropdown-text small {
        display: none;
    }
}

/* Additional Services Section */
.section--addons {
    background: var(--color-bg);
    padding-top: 0;
    /* Tighten space after main services */
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--space-md);
}

.service-addon {
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-alt);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.service-addon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

.service-addon__icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-addon:hover .service-addon__icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(232, 70, 90, 0.15);
}

.service-addon h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.service-addon p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-addon__price {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0.5rem 0 1.5rem !important;
}

@media (max-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Page Common Styles */
.hero-service {
    padding: 6rem 0 4rem;
    background: var(--color-bg-alt);
    text-align: center;
}

.hero-service__title {
    font-size: var(--font-size-h2);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-service__subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.hero-service__meta {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-service__price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.75rem;
    font-family: var(--font-heading);
}

.hero-service__stats {
    font-size: 0.95rem;
    color: var(--color-text);
    /* Zmieniono globalnie na czarny */
    font-weight: 600;
}

.hero-service__ctas {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.checklist-item {
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card__num {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(232, 70, 90, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Type B: Price Factors */
.factors-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.factor-item::before {
    content: "•";
    color: var(--color-primary);
    font-size: 1.5rem;
}

@media (max-width: 768px) {

    .checklist-grid,
    .steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   DESIGN UPGRADE — Refined Feminine Edition
   ========================================================== */

/* ENTRANCE ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    33% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    66% {
        border-radius: 50% 50% 30% 70% / 60% 40% 70% 40%;
    }
}

@keyframes shimmer {
    from {
        left: -100%;
    }

    to {
        left: 160%;
    }
}

/* BUTTON SHIMMER */
.btn--primary {
    position: relative;
    overflow: hidden;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    pointer-events: none;
    transition: none;
}

.btn--primary:hover::after {
    animation: shimmer 0.6s ease forwards;
}

/* HERO SERVICE — SPLIT LAYOUT */
.hero-service {
    padding: 5rem 0 4rem;
    background: linear-gradient(145deg, #fff7f4 0%, var(--color-bg-alt) 100%);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero-service::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(232, 70, 90, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-service__inner {
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 3rem;
    align-items: center;
}

.hero-service__content {
    text-align: left;
}

.hero-service__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(232, 70, 90, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    animation: fadeInUp 0.4s ease both;
}

.hero-service__badge i {
    width: 13px;
    height: 13px;
}

.hero-service__title {
    animation: fadeInUp 0.5s ease 0.1s both;
}

.hero-service__brand {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin: -0.5rem 0 1rem;
    animation: fadeInUp 0.5s ease 0.15s both;
}

.hero-service--dark .hero-service__brand {
    color: rgba(255, 255, 255, 0.8);
}

.steps-closer {
    margin-top: var(--space-md, 1.5rem);
    padding: 0.9rem 1.5rem;
    background: #fff0f3;
    border-left: 4px solid var(--color-primary, #e8225a);
    border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
    font-size: var(--text-sm, 0.9rem);
    font-weight: 600;
    color: var(--color-primary, #e8225a);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.steps-closer::before {
    content: '🦩';
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-service__subtitle {
    margin: 0 0 2.5rem;
    animation: fadeInUp 0.5s ease 0.2s both;
}

.hero-service__meta {
    animation: fadeInUp 0.5s ease 0.3s both;
}

.hero-service__inner .hero-service__ctas {
    justify-content: flex-start;
    animation: fadeInUp 0.5s ease 0.4s both;
}

/* Dark hero variant (B2B page) */
.hero-service--dark .hero-service__badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fb7185;
}

.hero-service--dark .hero-service__icon-wrap {
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.hero-service__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.7s ease 0.25s both;
}

.hero-service__icon-wrap {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 35% 35%, var(--color-primary-light), var(--color-primary-pale));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.2rem;
    line-height: 1;
    animation: morphBlob 9s ease-in-out infinite;
    box-shadow: 0 16px 50px rgba(232, 70, 90, 0.14);
}

@media (max-width: 768px) {
    .hero-service {
        text-align: center;
    }

    .hero-service__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-service__visual {
        display: none;
    }

    .hero-service__content {
        text-align: center;
    }

    .hero-service__ctas {
        justify-content: center;
    }

    .hero-service__badge {
        margin: 0 auto 1.5rem;
        display: flex;
        width: fit-content;
    }
}

/* CHECKLIST ITEM — ACCENT LEFT BORDER */
.checklist-item {
    padding: 1.1rem 1.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-left-color 0.22s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.checklist-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(232, 70, 90, 0.09);
    border-left-color: var(--color-primary-dark);
}

/* FACTORS LIST — NUMBERED CIRCLES */
.factors-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    counter-reset: factor-counter;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 500;
    padding: 1.1rem 1.5rem;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    counter-increment: factor-counter;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.factor-item::before {
    content: counter(factor-counter);
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(232, 70, 90, 0.25);
    font-family: var(--font-heading);
}

.factor-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(232, 70, 90, 0.08);
}

/* ==========================================================
   LEGAL PAGES
   ========================================================== */

.legal-hero {
    padding: 4rem 0 3rem;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.legal-hero h1 {
    font-size: var(--font-size-h2);
    margin-bottom: 0.5rem;
}

.legal-hero p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--color-text);
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content p {
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 0.875rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Footer legal links */
.footer__legal-links {
    margin-top: 0.5rem;
    font-size: var(--text-xs);
    opacity: 0.7;
}

.footer__legal-links a {
    color: inherit;
    transition: opacity 0.2s;
}

.footer__legal-links a:hover {
    opacity: 1;
}

/* ==========================================================
   COOKIE BANNER
   ========================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1c1c1e;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-wrap: wrap;
    border-top: 2px solid var(--color-primary);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__text {
    flex: 1;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
    min-width: 200px;
    margin: 0;
}

.cookie-banner__text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.875rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* === Discount / Price Display === */
.result__price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.result__price-main {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.result__price-numbers {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.result__price-orig {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.result__discount-badge {
    background: var(--color-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    white-space: nowrap;
    align-self: center;
}

.result__per-day {
    font-size: var(--text-sm, 0.9rem);
    color: var(--color-text-muted);
    margin: 0 0 0.75rem;
}

/* Inline price display on service cards */
.price-orig-small {
    color: var(--color-text-muted);
    font-size: 0.85em;
    font-weight: 400;
}

.price-discounted {
    color: var(--color-primary);
    font-weight: 600;
}

/* KLARO COOKIE BANNER OVERRIDES */
.klaro .cookie-notice {
    left: 20px !important;
    right: auto !important;
    background: var(--color-bg) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 4px 24px rgba(232, 70, 90, 0.12) !important;
    font-family: var(--font-body) !important;
    color: var(--color-text) !important;
    max-width: 360px !important;
}
/* Description text in the small notice only (not the modal) */
.klaro .cookie-notice .cn-body,
.klaro .cookie-notice .cn-body p {
    color: var(--color-primary) !important;
}
.klaro .cookie-notice .cn-learn-more {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
}
.klaro .cookie-notice .cn-buttons .cm-btn-success,
.klaro .cookie-modal .cm-footer-buttons .cm-btn-success {
    background-color: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-heading) !important;
    font-weight: 500 !important;
}
.klaro .cookie-notice .cn-buttons .cm-btn-success:hover,
.klaro .cookie-modal .cm-footer-buttons .cm-btn-success:hover {
    background-color: var(--color-primary-dark) !important;
}
.klaro .cookie-modal .cm-footer-buttons .cm-btn,
.klaro .cookie-notice .cn-buttons .cm-btn-info {
    background-color: transparent !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-heading) !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}
.klaro .cookie-modal .cm-footer-buttons .cm-btn:hover,
.klaro .cookie-notice .cn-buttons .cm-btn-info:hover {
    background-color: var(--color-primary) !important;
    color: white !important;
}
.klaro .cookie-modal .cm-app .cm-app-input:checked + .slider {
    background-color: var(--color-primary) !important;
}
.klaro a { color: var(--color-primary) !important; }
.klaro .cookie-modal .cm-bg { background: rgba(0,0,0,0.5) !important; }