/* ═══════════════════════════════════════════════════════════════════════════════
   BEAUTY SALON RADOM - V2 Production CSS
   Author: BENJI-CTO
   Date: 2026-02-05
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════════════════════ */
:root {
    /* Primary Colors */
    --gold: #C5A572;
    --gold-light: #D4BA8A;
    --gold-dark: #A88B5A;
    --gold-glow: rgba(197, 165, 114, 0.15);

    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAF8F5;
    --bg-muted: #F0EDE8;
    --bg-dark: #1A1A1A;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;

    /* Text Colors */
    --text-dark: #2A2520;
    --text-mid: #6B6560;
    --text-light: #9B958F;
    --text-on-dark: #F8F6F3;
    --white: #FFFFFF;

    /* Surface & Border */
    --surface: #D4CFC7;
    --border: #E8E4DF;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.95rem;
    --space-md: 1.85rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(197, 165, 114, 0.08);
    --shadow-medium: 0 8px 30px rgba(197, 165, 114, 0.12);
    --shadow-heavy: 0 20px 60px rgba(26, 26, 26, 0.1);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* iOS Safari inputs */
input, textarea, select {
    font-size: 16px !important;
    min-height: 48px !important;
    -webkit-appearance: none;
    font-family: var(--font-body);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background: var(--gold-glow);
    transform: translateY(-2px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Skip Link (WCAG 2.1 AA) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible (WCAG 2.1 AA) */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* Service card button reset (interactive cards) */
button.service-card {
    text-align: left;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   1. HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 228, 223, 0.5);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img,
.logo-icon svg {
    width: 38px;
    height: auto;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-desktop {
    display: none;
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition-fast);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.nav-desktop a:hover {
    color: var(--text-dark);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 100px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 100px;
    color: var(--text-mid);
    transition: var(--transition-fast);
}

.lang-btn.active {
    background: var(--bg-primary);
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-cta {
    display: none;
    font-size: 0.85rem;
    padding: 0.6rem 1.3rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: var(--space-lg) var(--space-md);
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.mobile-nav .mobile-nav-cta {
    margin-top: auto;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: 100px 60px 60px;
    max-width: 1440px;
    margin: 0 auto;
    min-height: auto;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero-label span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
}

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

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 440px;
    margin-bottom: 36px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-tags span {
    padding: 8px 20px;
    border: 1px solid #DDD9D4;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition-fast);
    cursor: default;
}

.hero-tags span:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 165, 114, 0.06);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-buttons .btn-primary {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 15px;
}

.hero-buttons .btn-secondary {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 15px;
    border-width: 1.5px;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
    display: none;
}

/* Hero Mosaic - 3 zdjecia salonu */
.hero-mosaic {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 60px rgba(42, 37, 32, 0.1);
}

.hero-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-mosaic img:hover {
    transform: scale(1.03);
}

.mosaic-main {
    grid-row: 1 / 3;
    border-radius: 20px 0 0 20px;
}

.mosaic-small:nth-of-type(2) {
    border-radius: 0 20px 0 0;
}

.mosaic-small:nth-of-type(3) {
    border-radius: 0 0 20px 0;
}

/* Badge - kompaktowa pilulka na dole glownego zdjecia */
.hero-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    z-index: 3;
    text-decoration: none;
    transition: var(--transition-fast);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.badge-stars {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.badge-rating {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.badge-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-light);
    opacity: 0.4;
    flex-shrink: 0;
}

.badge-reviews {
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SECTION DIVIDER
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-divider {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-divider hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #DDD9D4, transparent);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. SOCIAL PROOF TICKER
   ═══════════════════════════════════════════════════════════════════════════════ */
/* --- Proof Bar: 2-row layout (facts + reviews) --- */
.proof-bar {
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}

/* Row 1: Static facts */
.proof-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem 0;
    padding: 10px 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.proof-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 0.6rem;
}

.proof-stat svg {
    width: 13px;
    height: 13px;
    stroke: var(--gold);
    stroke-width: 2;
    flex-shrink: 0;
    opacity: 0.7;
}

.proof-stat strong {
    color: var(--gold);
    font-weight: 600;
}

.proof-stats-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.25;
    flex-shrink: 0;
}

/* Row 2: Scrolling reviews */
.proof-reviews-row {
    position: relative;
    padding: 8px 0;
}

.proof-reviews-row::before,
.proof-reviews-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.proof-reviews-row::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.proof-reviews-row::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.proof-ticker {
    overflow: hidden;
    position: relative;
}

.proof-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 55s linear infinite;
}

.proof-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0 1rem;
    font-size: 0.88rem;
    color: var(--text-on-dark);
}

.ticker-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
}

.ticker-author {
    color: rgba(197, 165, 114, 0.35);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 500;
    margin-left: 0.35rem;
}

.ticker-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.2;
    flex-shrink: 0;
    margin: 0 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. SOCIAL SLIDER SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.social-section {
    padding: 60px 0 70px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.social-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}

.social-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-header-left h2,
.social-header-left .social-section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.social-tabs {
    display: flex;
    gap: 4px;
    background: var(--cream-dark);
    border-radius: 10px;
    padding: 4px;
}

.social-tabs button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.social-tabs button.active {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.social-tabs button svg {
    width: 16px;
    height: 16px;
}

.social-follow-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition-fast);
}

.social-follow-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.social-follow-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.social-follow-btn:hover svg {
    transform: translateX(3px);
}

/* Social Feed Container */
.social-feed-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.social-feed {
    display: none;
    animation: fadeUp 0.4s ease-out;
}

.social-feed.active {
    display: block;
}

/* Instagram Grid - embedy */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
    overflow: hidden;
}

.instagram-grid .instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-radius: 16px !important;
    overflow: hidden;
}

/* Responsywność Instagram grid */
@media (max-width: 1200px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Slider Container */
.social-slider-wrapper {
    position: relative;
}

.social-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    cursor: grab;
}

.social-slider::-webkit-scrollbar {
    display: none;
}

.social-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.social-card:hover {
    transform: translateY(-4px);
}

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

.social-card:hover img {
    transform: scale(1.05);
}

.social-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 37, 32, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.social-card:hover .social-card-overlay {
    opacity: 1;
}

.social-card-overlay .ig-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #E8E4DF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.slider-arrow:hover svg path {
    stroke: white;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.slider-arrow svg path {
    stroke: var(--text-mid);
    transition: stroke 0.3s ease;
}

.slider-arrow.left {
    left: -22px;
}

.slider-arrow.right {
    right: -22px;
}

/* Gradient Fade Edges */
.social-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to left, var(--cream), transparent);
}

/* Placeholder for FB/TikTok */
.social-feed-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border-radius: 16px;
    text-align: center;
    padding: var(--space-lg);
    gap: 16px;
}

.social-feed-placeholder svg {
    color: var(--gold);
    opacity: 0.6;
}

.social-feed-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-mid);
    margin: 0;
}

.social-feed-placeholder .btn-secondary {
    margin-top: 8px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold-glow);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.services {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-secondary);
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 165, 114, 0.2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.service-card-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
}

/* 9. karta - Karta podarunkowa (zloty akcent) */
.service-card-gift {
    text-decoration: none;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.04) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card-gift::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.service-card-gift:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.18) 0%, rgba(201, 169, 98, 0.06) 100%);
}

.service-card-gift .service-card-icon svg {
    stroke: var(--gold);
    opacity: 1;
}

.service-card-gift .service-card-title {
    color: var(--gold);
}

.services-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. PRICING SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.pricing {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-secondary);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.pricing-tab {
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.55rem 1.15rem;
    border-radius: 100px;
    color: var(--text-mid);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.pricing-tab.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.pricing-tab:hover:not(.active) {
    border-color: var(--gold);
    color: var(--gold);
}

.pricing-panel {
    display: none;
}

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

.pricing-table {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: var(--gold-glow);
}

.pricing-service {
    font-size: 0.9rem;
    color: var(--text-dark);
    flex: 1;
}

.pricing-amount {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.pricing-booksy-note {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.88rem;
    color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   7. ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.about {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-content .about-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.about-value {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-value svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    stroke-width: 2;
    flex-shrink: 0;
}

.about-brands {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.about-brands-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.6rem;
}

.about-brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.about-brands-list span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--surface);
    letter-spacing: 0.03em;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-muted);
    position: relative;
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   8. TEAM SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.team {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-secondary);
}

.team-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.team-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.team-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    background: var(--bg-muted);
    position: relative;
    overflow: hidden;
}

.team-initial {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.6;
    transition: var(--transition-smooth);
    user-select: none;
}

.team-card:hover .team-initial {
    opacity: 1;
    transform: scale(1.05);
}

.team-info {
    padding: 1.15rem 1.25rem;
    text-align: center;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-bottom: 0.85rem;
}

.team-book {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition-fast);
}

.team-book:hover {
    gap: 0.6rem;
}

.team-book svg {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. METAMORFOZY (Before/After)
   ═══════════════════════════════════════════════════════════════════════════════ */
.metamorfozy {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-primary);
}

.metamorfozy-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.metamorfozy-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.metamorfozy-scroll::-webkit-scrollbar {
    display: none;
}

.metamorfoza-card {
    min-width: 300px;
    scroll-snap-align: start;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.metamorfoza-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 2/1.2;
}

.metamorfoza-single {
    display: block;
    grid-template-columns: none;
    aspect-ratio: 1/1;
}

.metamorfoza-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.metamorfoza-img {
    background: var(--bg-muted);
    position: relative;
    overflow: hidden;
}

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

.metamorfoza-img span {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

.metamorfoza-text {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    text-align: center;
}

/* Metamorfozy Slider Controls */
.slider-wrapper {
    position: relative;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-sm);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10. QUOTE SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.quote-section {
    padding: var(--space-xl) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(197, 165, 114, 0.06) 0%, transparent 70%);
}

.quote-block {
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 0.5;
    display: block;
    margin-bottom: var(--space-sm);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 500;
    font-style: italic;
    color: var(--text-on-dark);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11. REVIEWS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.reviews {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-primary);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.review-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold-glow);
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    stroke: var(--gold);
    stroke-width: 1;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.85rem;
    font-style: italic;
}

.review-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
}

.reviews-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   12. FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.faq {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-secondary);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.15rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-mid);
    stroke-width: 2;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding-bottom: 1.15rem;
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.faq-category {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gold);
    margin: 2rem 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    letter-spacing: 0.02em;
}

.faq-category:first-of-type {
    margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   13. CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.contact {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-primary);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    box-shadow: var(--shadow-soft);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.contact-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.2rem;
}

.contact-card-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-card-value a {
    color: var(--gold);
    transition: var(--transition-fast);
}

.contact-card-value a:hover {
    color: var(--gold-dark);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-muted);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   14. FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-on-dark);
}

.footer-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--gold);
    background: rgba(197, 165, 114, 0.1);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.6);
}

.footer-social a:hover svg {
    stroke: var(--gold);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   15. FLOATING CTA (Mobile)
   ═══════════════════════════════════════════════════════════════════════════════ */
.floating-cta {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 900;
    display: flex;
    gap: 0.5rem;
}

.floating-cta a {
    flex: 1;
    text-align: center;
    padding: 0.9rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.floating-cta .fcta-book {
    background: var(--gold);
    color: var(--white);
}

.floating-cta .fcta-call {
    background: var(--bg-primary);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICE MODAL
   ═══════════════════════════════════════════════════════════════════════════════ */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.service-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
}

.service-modal-overlay.open .service-modal {
    transform: translateY(0) scale(1);
}

.service-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.service-modal-close:hover {
    background: var(--gold);
}

.service-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-mid);
}

.service-modal-close:hover svg {
    stroke: var(--white);
}

.service-modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.service-modal-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.service-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.service-modal-tagline {
    font-size: 0.92rem;
    color: var(--text-mid);
    font-style: italic;
}

.service-modal-body {
    padding: 0 2rem 2rem;
}

.service-modal-section {
    margin-bottom: 1.5rem;
}

.service-modal-section:last-child {
    margin-bottom: 0;
}

.service-modal-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.service-modal-problem {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
}

.service-modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 0.3rem 0;
}

.service-modal-benefits li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.service-modal-prices {
    width: 100%;
    border-collapse: collapse;
}

.service-modal-prices tr {
    border-bottom: 1px solid var(--border);
}

.service-modal-prices tr:last-child {
    border-bottom: none;
}

.service-modal-prices td {
    padding: 0.55rem 0;
    font-size: 0.85rem;
}

.service-modal-prices td:first-child {
    color: var(--text-dark);
}

.service-modal-prices td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
    padding-left: 1rem;
}

.service-modal-usp {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    padding: 1rem;
    background: var(--gold-glow);
    border-radius: var(--radius-md);
    text-align: center;
    font-style: italic;
}

.service-modal-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    margin-top: 1.5rem;
}

.service-modal-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.how-it-works {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-primary);
}

.how-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto var(--space-lg);
}

.how-step {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition-smooth);
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 165, 114, 0.2);
}

.how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.how-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.how-step p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.how-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA MICROCOPY
   ═══════════════════════════════════════════════════════════════════════════════ */
.cta-micro {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GUARANTEE SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.guarantee {
    padding: var(--space-lg) 0;
    background: var(--gold-glow);
}

.guarantee-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-md);
}

.guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.guarantee-icon svg {
    stroke: var(--gold);
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   REVIEW SERVICE TAG
   ═══════════════════════════════════════════════════════════════════════════════ */
.review-service {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT UA MINI-SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.about-ua {
    margin-top: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, rgba(0, 91, 187, 0.06), rgba(255, 213, 0, 0.06));
    border-radius: var(--radius-md);
    border-left: 3px solid #005BBB;
}

.about-ua-label {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.about-ua-text {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (min-width: 550px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .contact-info-cards { grid-template-columns: 1fr 1fr; }
    .how-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .floating-cta { display: none; }
    .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; max-width: 100%; }
    .faq-category { grid-column: 1 / -1; }

    /* Hero 2-column on tablet+ */
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .hero-image {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hamburger { display: none; }
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    .header-cta {
        display: inline-flex;
    }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(4, 1fr); }

    /* Social slider adjustments */
    .social-header,
    .social-feed-container {
        padding: 0 60px;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        padding: 100px 30px 50px;
    }
    .social-section {
        padding: 40px 0;
    }
    .social-header,
    .social-feed-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 90px 20px 30px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .social-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .social-card {
        flex: 0 0 160px;
    }
    .footer { padding-bottom: 5rem; }

    /* Modal mobile */
    .service-modal {
        max-height: 90vh;
        border-radius: var(--radius-lg);
    }
    .service-modal-header { padding: 1.5rem 1.25rem 0.75rem; }
    .service-modal-body { padding: 0 1.25rem 1.5rem; }

    /* Slider arrows smaller on mobile */
    .slider-arrow { width: 36px; height: 36px; }
    .slider-arrow svg { width: 14px; height: 14px; }
    .slider-prev { left: 5px; }
    .slider-next { right: 5px; }

    /* Proof stats row: scroll horizontally on mobile */
    .proof-stats-row {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 8px 1rem;
    }
    .proof-stats-row::-webkit-scrollbar { display: none; }
    .proof-stat { font-size: 0.65rem; padding: 0 0.4rem; }
    .proof-stat svg { width: 11px; height: 11px; }
    .ticker-quote { font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION (WCAG 2.1 AA)
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .proof-ticker-track {
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GOOGLE TRANSLATE (ukryty widget, tylko PL/UA toggle widoczny)
   ═══════════════════════════════════════════════════════════════════════════════ */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

body { top: 0 !important; }

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

.skiptranslate {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--bg-dark);
    border-top: 1px solid rgba(197, 165, 114, 0.15);
    padding: 1rem 1.25rem;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-btn {
    flex-shrink: 0;
    background: var(--gold);
    color: var(--white);
    padding: 0.55rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
}

.cookie-banner-btn:hover {
    background: var(--gold-dark);
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}
