/* ═══════════════════════════════════════════════════════════════
   HYPNOTIC MADAM - Dark Luxury Glam Design System
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    /* Colors */
    --bg-dark: #0A0A0A;
    --bg-surface: #121212;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);

    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --gold-dark: #A68B4B;
    --rose: #B76E79;
    --rose-light: #D4919A;
    --teal: #7EA4A1;
    --teal-dark: #5C8380;

    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
    --text-muted: #6A6A6A;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-max: 1280px;
    --container-padding: clamp(20px, 4vw, 40px);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --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-glow: 0 0 60px rgba(201, 169, 110, 0.08);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 8px 50px rgba(0, 0, 0, 0.5);
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gold { color: var(--gold); }

/* ─── Animations (triggered by JS) ─── */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(-60px);
}

[data-animate="fade-left"] {
    transform: translateX(60px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════════ */
.top-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 40px;
    display: flex;
    align-items: center;
    transition: transform var(--transition-smooth);
}

.top-bar-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.top-bar-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.top-bar-item:hover {
    color: var(--gold);
}

/* ─── Top Bar Social Icons ─── */
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 4px;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    padding: 2px;
}

.top-bar-social a:hover {
    color: var(--gold);
    transform: scale(1.15);
}

.top-bar-social a svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: transform var(--transition-smooth);
    filter: brightness(1.1);
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a {
    padding: 7px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-smooth);
}

.nav-links li a:hover {
    color: var(--text-primary);
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--bg-dark) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-xl) !important;
    letter-spacing: 0.06em !important;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
    transition: all var(--transition-smooth) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    box-shadow: 0 4px 30px rgba(201, 169, 110, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

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

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

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

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 130px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.1);
    transition: transform 15s linear;
}

.hero:hover .hero-bg-img {
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.6) 30%,
        rgba(10, 10, 10, 0.85) 80%,
        rgba(10, 10, 10, 1) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-split {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--container-max);
    width: 100%;
    padding: 0 var(--container-padding);
}

.hero-content {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.15;
}

.hero-title-line {
    display: block;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    color: var(--text-primary);
}

.hero-title-accent {
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--rose-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* ─── Hero Logo (right side) ─── */
.hero-logo {
    flex: 0 0 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(201, 169, 110, 0.3));
    animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* Hero Scroll Indicator - now outside hero-split */
.hero > .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform var(--transition-smooth);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    box-shadow: 0 4px 25px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 35px rgba(201, 169, 110, 0.45);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    font-size: 1rem;
    padding: 18px 40px;
    box-shadow: 0 4px 30px rgba(201, 169, 110, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 8px 45px rgba(201, 169, 110, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.8rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    border-radius: var(--radius-xl);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
    padding: var(--section-padding) 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.services-grid .service-card {
    flex: 0 0 calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover), var(--shadow-glow);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.service-card:hover .service-card-content h3 {
    color: var(--gold);
}

.service-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.about-experience {
    position: absolute;
    bottom: 32px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 40px rgba(201, 169, 110, 0.3);
}

.about-experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.about-text strong {
    color: var(--gold);
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.about-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   VOUCHERS
   ═══════════════════════════════════════════════════════════════ */
.vouchers {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.vouchers-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 110, 0.08) 0%,
        rgba(183, 110, 121, 0.05) 50%,
        rgba(201, 169, 110, 0.03) 100%
    );
}

.vouchers-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ─── Voucher Image with Float & Glow ─── */
.vouchers-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.vouchers-image-wrapper {
    position: relative;
    transform: rotateY(-4deg) rotateX(2deg);
    animation: voucherFloat 5s ease-in-out infinite;
}

.vouchers-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 75%;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 169, 110, 0.25) 0%,
        rgba(201, 169, 110, 0.12) 35%,
        rgba(183, 110, 121, 0.06) 60%,
        transparent 80%
    );
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    animation: voucherGlow 4s ease-in-out infinite alternate;
}

.vouchers-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3))
            drop-shadow(0 4px 15px rgba(201, 169, 110, 0.15));
    transition: transform var(--transition-smooth);
}

.vouchers-image-wrapper:hover img {
    transform: scale(1.03);
}

@keyframes voucherFloat {
    0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
    50%      { transform: rotateY(-4deg) rotateX(2deg) translateY(-12px); }
}

@keyframes voucherGlow {
    0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* ─── Voucher Content ─── */
.vouchers-content {
    position: relative;
    text-align: left;
}

.vouchers-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    margin-bottom: 28px;
    color: var(--gold);
}

.vouchers .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.vouchers-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.testimonial-card > * {
    max-width: 700px;
    width: 100%;
}

.testimonial-stars {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.testimonial-service {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.testimonials-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.testimonials-btn:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.testimonials-dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
    transform: scale(1.2);
}

/* ═══════════════════════════════════════════════════════════════
   NEWS / BLOG
   ═══════════════════════════════════════════════════════════════ */
.news {
    padding: var(--section-padding) 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: var(--shadow-card-hover);
}

.news-card-image {
    display: block;
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.news-card:hover .news-card-image img {
    transform: scale(1.06);
}

.news-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.news-card-content {
    padding: 28px;
}

.news-card-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.news-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.news-card-content h3 a:hover {
    color: var(--gold);
}

.news-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.news-more {
    text-align: center;
    margin-top: 48px;
}

/* ─── Wide News Card (Depilacja) ─── */
.news-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.news-card--wide .news-card-image {
    height: 100%;
    min-height: 280px;
}

.news-card--wide .news-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px;
}

.news-card--wide .news-card-content h3 {
    font-size: 1.5rem;
}

.news-card--wide .news-card-content p {
    font-size: 0.95rem;
}

/* ─── Card Image Carousel ─── */
.news-card-carousel {
    overflow: hidden;
}

.news-card-carousel .carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    animation: newsCarousel 12s ease-in-out infinite;
}

.news-card-carousel .carousel-track img {
    width: calc(100% / 3);
    flex-shrink: 0;
    object-fit: cover;
    height: 100%;
}

@keyframes newsCarousel {
    0%, 28%  { transform: translateX(0); }
    33%, 61% { transform: translateX(-33.333%); }
    66%, 94% { transform: translateX(-66.666%); }
    100%     { transform: translateX(0); }
}

.news-card--wide:hover .carousel-track {
    animation-play-state: paused;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { text-align: left; margin-bottom: 20px; }

.contact-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
}

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

.contact-map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    border: 1px solid var(--glass-border);
}

.contact-map-frame iframe {
    filter: grayscale(0.8) brightness(0.7) contrast(1.1);
    transition: filter var(--transition-smooth);
}

.contact-map-frame:hover iframe {
    filter: grayscale(0.3) brightness(0.8) contrast(1);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    padding: 80px 0 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-smooth);
}

.footer-social a:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li,
.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-credit {
    background: var(--bg-dark);
    text-align: center;
    padding: 6px 0;
}

.footer-credit p {
    font-size: 0.65rem;
    color: #2e2e2e;
    letter-spacing: 0.04em;
}

.footer-credit a {
    color: #2e2e2e;
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 25px rgba(201, 169, 110, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 35px rgba(201, 169, 110, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid .service-card {
        flex: 0 0 calc((100% - 28px) / 2);
        max-width: calc((100% - 28px) / 2);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-experience {
        right: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .vouchers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vouchers-image-wrapper img {
        max-width: 420px;
    }

    .vouchers-content {
        text-align: center;
    }

    .vouchers .section-title {
        text-align: center;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card--wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Hide top-bar on mobile - save space */
    .top-bar {
        display: none;
    }

    /* Navbar: stick to very top since topbar is hidden */
    .navbar {
        top: 0 !important;
    }

    .hero {
        padding-top: 90px;
        min-height: 100svh;
    }

    .hero-split {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-logo {
        flex: 0 0 auto;
    }

    .hero-logo-img {
        max-width: 240px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: calc(100vh - 70px);
        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
        gap: 4px;
        transition: right var(--transition-smooth);
        border-left: 1px solid var(--glass-border);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1rem;
        padding: 14px 16px;
        width: 100%;
    }

    .nav-links li a::after {
        bottom: 8px;
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
        display: block !important;
        width: 100%;
    }

    /* Hero buttons: stack vertically */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 0;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-title-line {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-title-accent {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 32px;
    }

    /* Scroll indicator: push to very bottom on mobile */
    .hero > .hero-scroll-indicator {
        bottom: 6px;
    }

    .hero-scroll-indicator {
        gap: 4px;
        font-size: 0.6rem;
    }

    .hero-scroll-indicator span {
        display: none;
    }

    .scroll-mouse {
        width: 18px;
        height: 28px;
    }

    /* Services: single column */
    .services-grid .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* About section: center the CTA button and align content */
    .about-content {
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .btn {
        display: inline-flex;
        margin: 0 auto;
    }

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

    .news-card--wide {
        grid-template-columns: 1fr;
    }

    .news-card--wide .news-card-image {
        min-height: 220px;
        height: 220px;
    }

    .about-image-frame img {
        height: 350px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-map-frame {
        height: 350px;
    }

    .testimonial-card {
        padding: 0 16px;
    }

    /* Section headers */
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .section-desc {
        font-size: 0.9rem;
    }

    /* Popups: full width on mobile, slide from bottom */
    .popup-modal,
    .popup-modal.popup-mini,
    .popup-modal.popup-regulamin {
        width: 100vw !important;
        max-width: 100vw !important;
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(100%) !important;
    }

    .popup-modal.active {
        transform: translateY(0) !important;
    }

    .popup-header {
        padding: 18px 20px 14px;
    }

    .popup-body {
        padding: 20px;
    }

    .popup-footer {
        padding: 14px 20px;
        flex-wrap: wrap;
    }

    .popup-footer .btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .popup-title {
        font-size: 1.3rem;
    }

    .price-table {
        font-size: 0.82rem;
    }

    .price-table th,
    .price-table td {
        padding: 8px 6px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 18px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .hero-buttons .btn {
        max-width: 260px;
    }

    .nav-logo img {
        height: 40px;
    }

    .price-table {
        font-size: 0.75rem;
    }

    .price-table th,
    .price-table td {
        padding: 6px 4px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SPECIAL EFFECTS
   ═══════════════════════════════════════════════════════════════ */
/* Gold shimmer text */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-title-accent {
    background-size: 200% auto;
    animation: shimmer 4s ease-in-out infinite;
}

/* Subtle grain overlay for premium feel */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10000;
}

/* Selection color */
::selection {
    background: rgba(201, 169, 110, 0.3);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BADGES RIBBON
   ═══════════════════════════════════════════════════════════════ */
.trust-ribbon {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg-dark), rgba(201,169,110,0.04), var(--bg-dark));
    border-top: 1px solid rgba(201,169,110,0.06);
    border-bottom: 1px solid rgba(201,169,110,0.06);
}

.trust-ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.trust-badge:hover {
    border-color: rgba(201,169,110,0.3);
    transform: translateY(-2px);
}

.trust-badge-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-text strong {
    font-size: 0.82rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.trust-badge-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

@media (max-width: 768px) {
    .trust-ribbon-inner {
        gap: 10px;
        justify-content: center;
    }
    .trust-divider {
        display: none;
    }
    .trust-badge {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-width: 140px;
        justify-content: center;
        text-align: left;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════════════ */
.process {
    padding: 100px 0;
    background: var(--bg-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.9;
}

.process-step-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .process {
        padding: 60px 0;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark), rgba(201,169,110,0.02), var(--bg-dark));
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(201,169,110,0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
}

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

.faq-question svg {
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    .faq-question {
        font-size: 0.88rem;
        padding: 16px 18px;
    }
    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF TOAST
   ═══════════════════════════════════════════════════════════════ */
.social-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(22, 22, 22, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 900;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transform: translateX(-110%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 340px;
}

.social-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.social-toast-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.social-toast-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.social-toast-text strong {
    color: var(--gold);
}

.social-toast-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .social-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ICOONE SEO SECTION
   ═══════════════════════════════════════════════════════════════ */
.icoone-seo {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(201,169,110,0.03) 50%, var(--bg-dark) 100%);
}

.icoone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.icoone-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-smooth);
}

.icoone-card:hover {
    border-color: rgba(201,169,110,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.icoone-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.icoone-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.icoone-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.icoone-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.icoone-card ul li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.icoone-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.icoone-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .icoone-grid {
        grid-template-columns: 1fr;
    }
    .icoone-seo {
        padding: 60px 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CENNIK INFO BANNER
   ═══════════════════════════════════════════════════════════════ */
.cennik-info-banner {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.cennik-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
    min-width: 180px;
}

.cennik-info-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.cennik-info-item strong {
    color: var(--gold);
}

@media (max-width: 600px) {
    .cennik-info-banner {
        flex-direction: column;
        gap: 10px;
    }
    .cennik-info-item {
        min-width: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO LOGO + SHIMMER LINES
   ═══════════════════════════════════════════════════════════════ */
.hero-logo-wrap {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.hero-brand-logo {
    height: 110px;
    width: auto;
    mix-blend-mode: multiply;
    filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.15) drop-shadow(0 0 20px rgba(201,169,110,0.5));
}

.hero-shimmer-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-shimmer-lines::before,
.hero-shimmer-lines::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.25), transparent);
    animation: shimmerLine 8s linear infinite;
}

.hero-shimmer-lines::before { top: 30%; animation-delay: 0s; }
.hero-shimmer-lines::after  { top: 65%; animation-delay: 4s; }

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

/* Stronger particles */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 5s ease-in-out infinite;
}

.hero-particle.large  { width: 5px; height: 5px; background: var(--gold); }
.hero-particle.medium { width: 3px; height: 3px; background: var(--gold-light); }
.hero-particle.small  { width: 2px; height: 2px; background: var(--rose-light); }
.hero-particle.glow   {
    width: 6px; height: 6px;
    background: var(--gold);
    box-shadow: 0 0 12px 4px rgba(201,169,110,0.6);
}

@keyframes particleFloat {
    0%   { opacity: 0;   transform: translateY(100vh) scale(0) rotate(0deg); }
    15%  { opacity: 0.8; }
    85%  { opacity: 0.4; }
    100% { opacity: 0;   transform: translateY(-20vh) scale(1.2) rotate(180deg); }
}

/* Ghost-gold button */
.btn-ghost-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    backdrop-filter: blur(10px);
}
.btn-ghost-gold:hover {
    background: rgba(201,169,110,0.12);
    transform: translateY(-3px);
    box-shadow: 0 4px 25px rgba(201,169,110,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   POPUP MODALS
   ═══════════════════════════════════════════════════════════════ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.95);
    z-index: 2100;
    background: #161616;
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: var(--radius-lg);
    width: min(900px, 95vw);
    max-height: 85vh;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,169,110,0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.popup-modal.popup-mini  { width: min(640px, 95vw); }
.popup-modal.popup-regulamin { width: min(720px, 95vw); }

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px 20px;
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
}

.popup-close {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.popup-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    rotate: 90deg;
}

.popup-body {
    padding: 28px 32px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) transparent;
}

.popup-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* Service Description Popup Styles */
.service-desc-hero {
    width: 100%;
    max-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    position: relative;
}

.service-desc-hero img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-desc-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #161616);
}

.service-desc-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-desc-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    margin: 20px 0 10px;
}

.service-desc-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-desc-content ul li {
    position: relative;
    padding-left: 22px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.service-desc-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 3px;
}

.service-desc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.service-desc-meta span {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Ghost Gold Button — for "Czytaj więcej" links */
.btn-ghost-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-ghost-gold:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-1px);
}

/* Service card clickable hover enhancement */
.service-card[onclick] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card[onclick]:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.12);
}

/* Price table */
.price-category {
    margin-bottom: 36px;
}

.price-category h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.price-table thead tr {
    background: rgba(201,169,110,0.06);
}

.price-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(201,169,110,0.15);
}

.price-table td {
    padding: 10px 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color var(--transition-fast);
}

.price-table tr:hover td { color: var(--text-primary); }

.price-table td:last-child {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

/* Popup cta card */
.popup-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.popup-cta-card svg { color: var(--gold); }
.popup-cta-card p   { color: var(--text-secondary); max-width: 360px; }

.popup-info {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Regulamin */
.regulamin-intro {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
}

.regulamin-section {
    margin-bottom: 24px;
}

.regulamin-section h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.regulamin-section ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.regulamin-section ul li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.regulamin-section ul li strong { color: var(--text-primary); }

.regulamin-footer-note {
    margin-top: 28px;
    padding: 20px;
    background: rgba(201,169,110,0.06);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    text-align: center;
}

/* Responsive popup */
@media (max-width: 600px) {
    .popup-header { padding: 18px 20px 14px; }
    .popup-body   { padding: 20px; }
    .popup-footer { padding: 14px 20px; flex-wrap: wrap; }
    .popup-title  { font-size: 1.3rem; }
    .price-table  { font-size: 0.82rem; }
    .price-table th, .price-table td { padding: 8px 6px; }
}

/* ═══════════════════════════════════════════════════════════════
   ICOONE ARTICLE POPUP
   ═══════════════════════════════════════════════════════════════ */
.popup-modal.popup-article {
    width: min(960px, 95vw);
    max-height: 90vh;
}

/* Article Hero */
.article-hero {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
    transition: transform 8s ease;
}

.article-hero:hover img {
    transform: scale(1.05);
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.article-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201,169,110,0.2);
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.article-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Article Meta */
.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 36px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-meta-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Article Content */
.article-content {
    font-size: 0.95rem;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
    line-height: 1.8;
}

.article-intro strong {
    color: var(--gold-light);
}

.article-section {
    margin-bottom: 40px;
    position: relative;
}

.article-section-icon {
    width: 56px;
    height: 56px;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 16px;
}

.article-section h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-section > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 300;
}

.article-section > p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Benefits List */
.article-benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.article-benefits-list li {
    color: var(--text-secondary);
    font-size: 0.92rem;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.article-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

.article-benefits-list li strong {
    color: var(--text-primary);
}

/* Effects Grid */
.article-effects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.article-effect {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.article-effect:hover {
    border-color: rgba(201,169,110,0.25);
    transform: translateY(-2px);
}

.article-effect-icon {
    color: var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 8px;
}

.article-effect span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Article Highlight */
.article-highlight {
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(183,110,121,0.05));
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 20px;
}

.article-highlight strong {
    color: var(--gold-light);
    font-style: normal;
}

/* Gallery Title */
.article-gallery-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-gallery-title svg {
    color: var(--gold);
}

/* Photo Gallery */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.article-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.article-gallery-item:hover {
    border-color: rgba(201,169,110,0.35);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,169,110,0.15);
}

.article-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.article-gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-item-overlay svg {
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.article-gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Article Pricing */
.article-pricing {
    margin: 40px 0;
    padding: 28px;
    background: var(--glass);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-lg);
}

.article-pricing-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.article-pricing-header svg {
    color: var(--gold);
}

.article-pricing-header h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
}

.article-pricing-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(201,169,110,0.06);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.article-pricing-note svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Article CTA */
.article-cta {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(201,169,110,0.06), rgba(183,110,121,0.04));
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-lg);
    margin-top: 10px;
}

.article-cta h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.article-cta > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.article-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Article Steps (krok po kroku) ─── */
.article-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.article-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
    transition: all var(--transition-smooth);
}

.article-step:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateX(4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
    min-width: 36px;
    line-height: 1;
    padding-top: 2px;
}

.step-content strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* ─── Depilacja Effects Grid ─── */
.depilacja-effects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.effect-card {
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.effect-card:hover {
    border-color: rgba(201, 169, 110, 0.25);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.1);
    transform: translateY(-4px);
}

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

.effect-label {
    display: block;
    padding: 14px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.02em;
}

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

    .article-step {
        padding: 16px;
        gap: 14px;
    }

    .step-number {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(16px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 88vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 3001;
}

.lightbox-close:hover {
    background: rgba(201,169,110,0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    z-index: 3001;
}

.lightbox-nav:hover {
    background: rgba(201,169,110,0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   ARTICLE / GALLERY / LIGHTBOX RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .popup-modal.popup-article {
        width: 100vw !important;
        max-width: 100vw !important;
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(100%) !important;
    }

    .popup-modal.popup-article.active {
        transform: translateY(0) !important;
    }

    .article-hero {
        height: 200px;
        border-radius: var(--radius-sm);
    }

    .article-hero-overlay {
        padding: 20px;
    }

    .article-hero-title {
        font-size: 1.1rem;
    }

    .article-meta {
        gap: 12px;
        padding: 12px 16px;
    }

    .article-effects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .article-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .article-cta {
        padding: 28px 20px;
    }

    .article-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .article-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .article-effects-grid {
        grid-template-columns: 1fr;
    }

    .article-gallery {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════════ */

/* Content-visibility for off-screen sections */
.about,
.vouchers,
.testimonials,
.news,
.icoone-seo,
.process,
.faq,
.contact,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

/* Optimize layout on mobile */
@media (max-width: 768px) {
    /* Reduce voucherFloat animation on mobile for smoother scroll */
    .vouchers-image-wrapper {
        transform: none;
    }
}

/* Will-change hints for smooth animations */
.popup-modal {
    will-change: opacity, transform;
}

.lightbox-overlay {
    will-change: opacity;
}

.lightbox-img {
    will-change: transform;
}

.popup-overlay {
    will-change: opacity;
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED MOBILE RESPONSIVENESS
   ═══════════════════════════════════════════════════════════════ */

/* --- 768px: Tablet & Small Desktop --- */
@media (max-width: 768px) {
    /* Better section spacing on mobile */
    :root {
        --section-padding: 60px;
    }

    /* Services: better card image ratio */
    .service-card-image {
        height: 200px;
    }

    /* About image: better sizing */
    .about-experience {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        display: inline-block;
    }

    /* Footer social: center */
    .footer-brand {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Price table: horizontal scroll on small screens */
    .price-category {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Article section within popups */
    .article-section h3 {
        font-size: 1.1rem;
    }

    .article-intro {
        font-size: 0.92rem;
        padding-left: 16px;
    }

    .article-section-icon {
        width: 44px;
        height: 44px;
    }

    .article-pricing {
        padding: 20px;
    }

    .article-pricing-header h4 {
        font-size: 1rem;
    }

    /* PMU pricing table on mobile */
    .pmu-pricing-section .price-table {
        display: block;
        overflow-x: auto;
    }
}

/* --- 480px: Small Mobile --- */
@media (max-width: 480px) {
    /* Tighter section spacing */
    :root {
        --section-padding: 40px;
    }

    /* Hero: even smaller text */
    .hero-title-line {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .hero-title-accent {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    /* Hero logo smaller on tiny screens */
    .hero-logo-img {
        max-width: 160px;
    }

    /* Service cards: tighter */
    .service-card-image {
        height: 180px;
    }

    .service-card-content {
        padding: 16px;
    }

    .service-card-content h3 {
        font-size: 1rem;
    }

    .service-card-content p {
        font-size: 0.82rem;
    }

    /* News cards */
    .news-card-content {
        padding: 20px;
    }

    .news-card-content h3 {
        font-size: 1rem;
    }

    .news-card-image {
        height: 200px;
    }

    /* Contact */
    .contact-map-frame {
        height: 280px;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 1rem;
    }

    /* Voucher image */
    .vouchers-image-wrapper img {
        max-width: 280px;
    }

    /* Article content in popups */
    .article-hero {
        height: 160px;
    }

    .article-hero-overlay {
        padding: 16px;
    }

    .article-hero-title {
        font-size: 1rem;
    }

    .article-hero-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .article-section h3 {
        font-size: 1rem;
    }

    .article-section > p {
        font-size: 0.88rem;
    }

    .article-benefits-list li {
        font-size: 0.85rem;
        padding-left: 22px;
    }

    .article-steps .article-step {
        padding: 14px;
        gap: 12px;
    }

    .step-number {
        font-size: 1.2rem;
        min-width: 28px;
    }

    .step-content strong {
        font-size: 0.92rem;
    }

    .step-content p {
        font-size: 0.82rem;
    }

    .article-gallery-title {
        font-size: 1.1rem;
    }

    .article-cta h4 {
        font-size: 1.15rem;
    }

    .article-cta > p {
        font-size: 0.85rem;
    }

    /* Popup header/footer tighter */
    .popup-header {
        padding: 14px 16px 12px;
    }

    .popup-body {
        padding: 16px;
    }

    .popup-footer {
        padding: 12px 16px;
    }

    .popup-title {
        font-size: 1.15rem;
    }

    /* Cennik info banner */
    .cennik-info-item {
        font-size: 0.78rem;
    }

    /* Trust badges */
    .trust-badge {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- 360px: Very small phones --- */
@media (max-width: 360px) {
    .hero-title-line {
        font-size: 1.4rem;
    }

    .hero-title-accent {
        font-size: 1.2rem;
    }

    .hero-logo-img {
        max-width: 140px;
    }

    .hero-buttons .btn {
        max-width: 100%;
        font-size: 0.75rem;
        padding: 10px 16px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .popup-title {
        font-size: 1rem;
    }

    .nav-links {
        width: 100%;
        max-width: 100%;
    }

    .service-card-image {
        height: 160px;
    }

    .news-card-image {
        height: 180px;
    }
}

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

    .hero-particle {
        display: none;
    }

    .hero-shimmer-lines::before,
    .hero-shimmer-lines::after {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    padding: 18px 24px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
}

.cookie-text {
    flex: 1;
    min-width: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

.cookie-text a:hover {
    color: var(--gold-light);
}

.cookie-btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 140px;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-text {
        font-size: 0.8rem;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 280px;
    }
}
