/* --- GLOBALNE ZMIENNE --- */
:root {
    --bg-deep-black: #0D0D0D;
    --accent-rose: #E8A5B8;
    --text-white: #FFFFFF;
    --text-silver: #B8B8B8;
    --text-black: #0D0D0D;
    --radius-main: 12px;
    --section-spacing: 120px;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    width: 100%;
    /* REMOVED: overflow-x: hidden breaks position: sticky globally! */
}

body {
    background-color: var(--bg-deep-black);
    color: var(--text-white);
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    max-width: 100vw;
    /* REMOVED: overflow-x: hidden breaks position: sticky! Use on individual sections instead */
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* --- GLOBALNY STYL BADGE (PASTYLKI) --- */
.global-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(232, 165, 184, 0.15);
    border: 1px solid rgba(232, 165, 184, 0.4);
    border-radius: 12px;
    color: #E8A5B8;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(232, 165, 184, 0.2);
    cursor: default;
    text-transform: none;
}

/* --- GLOBALNE STYLE DLA NAGŁÓWKÓW SEKCJI --- */
.section-title {
    font-family: 'Lora', serif !important;
    font-size: 52px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-sub {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 18px;
    color: #B8B8B8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive dla globalnych nagłówków */
@media (max-width: 1024px) {
    .section-title { font-size: 44px; }
}
@media (max-width: 768px) {
    .section-title { font-size: 36px; }
    .section-sub { font-size: 16px; }
}
@media (max-width: 480px) {
    .section-title { font-size: 28px; }
    .section-sub { font-size: 15px; }
}

/* =========================================
   1. HERO SECTION & NAVIGATION
   ========================================= */

.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* DESKTOP: Rozstrzelone góra/dół (Navbar na górze, Ticker na dole) */
    justify-content: space-between;
    background: var(--bg-deep-black);
    padding-top: 70px;
    padding-bottom: 40px;
    overflow: hidden;
}

/* --- NAVBAR (DESKTOP DEFAULT) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 60px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    margin: 0; 
}

.logo img, 
.brand-logo-img {
    display: block;
    height: 70px; /* Desktop height */
    width: auto;
    object-fit: contain;
}

/* NAV LINKS */
.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}

.nav-link {
    text-decoration: none;
    color: #B8B8B8;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover { color: #FFFFFF; }

/* NAV BUTTON */
.btn-nav {
    background-color: #E8A5B8;
    color: #0D0D0D;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}
.btn-nav:hover { background-color: #ffc2d4; box-shadow: 0 0 20px rgba(232, 165, 184, 0.3); }

/* HAMBURGER (DESKTOP HIDDEN) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    width: 30px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* MOBILE MENU (DESKTOP HIDDEN) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* --- HERO CONTENT --- */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 60px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1.hero-h1 {
    font-family: 'Lora', serif;
    font-size: 92px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 32px;
    letter-spacing: -0.04em;
}

h2.sub-hero {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-silver);
    max-width: 680px;
    margin: 0 auto 56px auto;
}

.cta-group {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 20;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background-color: var(--accent-rose);
    color: var(--text-black);
    padding: 18px 42px;
    border-radius: var(--radius-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(232, 165, 184, 0.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(232, 165, 184, 0.3); }

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    padding: 18px 42px;
    border-radius: var(--radius-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}
.btn-secondary:hover { border-color: var(--text-white); background-color: rgba(255, 255, 255, 0.05); }

.hero-glow {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 500px;
    background: radial-gradient(
        50% 50% at 50% 50%, 
        rgba(232, 165, 184, 0.22) 0%, 
        rgba(13, 13, 13, 0) 70%
    );
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

/* --- HERO LOGO TICKER --- */
.logo-ticker-container {
    width: 100%;
    padding: 60px 0 20px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.logo-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 40s linear infinite; 
}

.brand-logo {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-white);
    opacity: 0.4;
    cursor: default;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.logo-ticker-container:hover .brand-logo { opacity: 0.4; }
.logo-ticker-container:hover .brand-logo:hover {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

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

.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    margin-top: 40px;
    position: relative;
    z-index: 10;
    display: none; /* Ukryj separator - wygląda źle między ticker a manifesto */
}

/* --- RESPONSIVE HERO --- */
@media (max-width: 1024px) {
    .navbar { padding: 0 40px; }
    h1.hero-h1 { font-size: 72px; }
    h2.sub-hero { font-size: 18px; max-width: 600px; }
}

/* =========================================
   2. MANIFESTO SECTION
   ========================================= */
.manifesto-container {
    background-color: #0D0D0D !important;
    width: 100%;
    max-width: 100vw; /* FIX: Prevent overflow */
    padding: 140px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-x: hidden; /* FIX: Prevent horizontal scroll */
    overflow-y: visible;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reveal-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    line-height: 1.25;
    font-weight: 400;
    max-width: 1000px;
    letter-spacing: -0.02em;
    margin: 0;
    color: #333333; 
    transition: color 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-text.active { color: #FFFFFF; }
.reveal-text span { display: block; margin-top: 10px; }
.sub-reveal { transition: color 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; color: #333333; }
.reveal-text.active .sub-reveal { color: #B8B8B8; }

/* --- RESPONSIVE MANIFESTO & HERO TICKER --- */
@media (max-width: 768px) {
    .logo-ticker-container {
        padding: 40px 0 15px 0;
    }

    .manifesto-container {
        padding: 80px 24px; /* FIX: Zwiększone z 15px do 24px dla lepszych marginesów */
    }

    .reveal-text {
        font-size: 32px;
        max-width: 100%; /* FIX: Zmienione z 90% - pozwól paddingowi container kontrolować szerokość */
        padding: 0; /* FIX: Usunięte - padding jest już w container */
    }
}

@media (max-width: 480px) {
    .logo-ticker-container {
        padding: 30px 0 10px 0;
    }

    .brand-logo {
        font-size: 18px;
    }

    .manifesto-container {
        padding: 60px 20px; /* FIX: Zwiększone z 10px do 20px - więcej przestrzeni na małych ekranach */
    }

    .reveal-text {
        font-size: 26px;
        max-width: 100%; /* FIX: Zmienione z 95% */
        padding: 0; /* FIX: Usunięte - padding jest już w container */
        line-height: 1.3;
    }
}

/* =========================================
   3. SHOWCASE (STREAM) SECTION
   ========================================= */
.stream-section {
    position: relative;
    background-color: #0D0D0D;
    width: 100%;
    max-width: 100vw; /* FIX: Prevent overflow */
    padding: 120px 0;
    overflow-x: hidden; /* FIX: Prevent horizontal scroll */
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'DM Sans', sans-serif;
}
.glow-ambient {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 140%; height: 100%;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.25) 0%, rgba(13, 13, 13, 0) 80%);
    filter: blur(100px); pointer-events: none; z-index: 0;
}
.glow-core {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 500px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(232, 165, 184, 0.55) 0%, rgba(232, 165, 184, 0.1) 50%, rgba(13, 13, 13, 0) 100%);
    filter: blur(80px); pointer-events: none; z-index: 1; mix-blend-mode: screen;
}
.stream-header { text-align: center; margin-bottom: 60px; padding: 0 20px; position: relative; z-index: 10; max-width: 800px; }

.stream-headline {
    font-family: 'Lora', serif; font-size: 64px; color: #FFFFFF; margin-bottom: 16px;
    letter-spacing: -0.03em; font-weight: 400; text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.stream-sub { font-family: 'DM Sans', sans-serif; font-size: 20px; color: #E5E5E5; max-width: 600px; margin: 0 auto; line-height: 1.5; font-weight: 400; }

.marquee-wrapper {
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    gap: 24px; 
    position: relative; 
    z-index: 5;
    transform: rotate(-2deg) scale(1.05); 
    margin-top: 20px;
    align-items: center;
}

.marquee-track { 
    display: flex; 
    gap: 24px; 
    width: max-content; 
    will-change: transform; 
}

.track-left { animation: scrollLeft 60s linear infinite; }
.track-right { animation: scrollRight 65s linear infinite; }

.stream-card {
    width: 260px; height: 400px; border-radius: 16px; overflow: hidden; position: relative; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1); background: #1a1a1a; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.stream-card:hover { border-color: #E8A5B8; transform: scale(1.05); box-shadow: 0 0 50px rgba(232, 165, 184, 0.4); z-index: 20; }
.stream-card img { width: 100%; height: 100%; object-fit: cover; }
.card-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); pointer-events: none; }
.screen-fade { position: absolute; top: 0; bottom: 0; width: 200px; z-index: 15; pointer-events: none; }
.fade-l { left: 0; background: linear-gradient(to right, #0D0D0D, transparent); }
.fade-r { right: 0; background: linear-gradient(to left, #0D0D0D, transparent); }

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

/* Mobile Fix for Stream Section - Prevent Horizontal Scroll */
@media (max-width: 768px) {
    /* REMOVED: Global overflow breaks sticky! Each section handles its own overflow */

    .stream-section {
        overflow-x: hidden; /* FIX: Prevent horizontal scroll on parent */
    }

    .stream-headline {
        font-size: 36px; /* FIX: Match .section-title size on mobile */
    }

    .marquee-wrapper {
        transform: none; /* Remove rotate and scale on mobile */
        margin-top: 20px;
        overflow: hidden; /* Ensure no overflow */
        max-width: 100vw; /* FIX: Don't exceed viewport */
    }

    .stream-card {
        width: 200px; /* Smaller cards on mobile */
        height: 320px;
    }

    .screen-fade {
        width: 100px; /* Narrower fade zones */
    }

    .stream-header {
        padding: 0 24px; /* FIX: Match manifesto padding */
    }

    /* REMOVED: Global section overflow breaks sticky positioning */
}

@media (max-width: 480px) {
    .stream-headline {
        font-size: 28px; /* FIX: Match .section-title size on small mobile */
    }

    .stream-card {
        width: 180px; /* Even smaller cards on small mobile */
        height: 280px;
    }

    .stream-header {
        padding: 0 20px; /* FIX: Match small screen padding */
    }
}

/* =========================================
   4. COMPARISON SECTION
   ========================================= */
.compare-section {
    position: relative; background-color: #0D0D0D; width: 100%; max-width: 100vw; padding: 120px 20px; display: flex; flex-direction: column;
    align-items: center; font-family: 'DM Sans', sans-serif !important; border-top: 1px solid rgba(255, 255, 255, 0.05); overflow-x: hidden; overflow-y: visible;
}
.compare-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 100%;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.15) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(120px); pointer-events: none; z-index: 0;
}
.compare-header { text-align: center; max-width: 800px; margin-bottom: 60px; position: relative; z-index: 2; }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; width: 100%; max-width: 1100px; position: relative; z-index: 2; }
.compare-card { padding: 48px 40px; border-radius: 16px; position: relative; overflow: hidden; display: flex; flex-direction: column; backdrop-filter: blur(10px); }
.card-old { background: rgba(20, 20, 20, 0.6); border: 1px solid rgba(255, 255, 255, 0.08); }
.card-title-old { font-family: 'Lora', serif !important; font-size: 32px; color: #888; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 24px; font-weight: 400; }
.card-new { background: rgba(232, 165, 184, 0.05); border: 1px solid rgba(232, 165, 184, 0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.card-title-new {
    font-family: 'Lora', serif !important; font-size: 32px; color: #FFFFFF; margin-bottom: 40px;
    border-bottom: 1px solid rgba(232, 165, 184, 0.2); padding-bottom: 24px; display: flex;
    justify-content: space-between; align-items: center; font-weight: 400;
}
.logo-mini { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: #E8A5B8; letter-spacing: 0.1em; text-transform: uppercase; }
.feature-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.feature-row:last-child { margin-bottom: 0; }
.icon-box { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 14px; font-family: sans-serif; font-weight: bold; }
.icon-bad { background: rgba(255, 255, 255, 0.05); color: #666; }
.icon-good { background: #E8A5B8; color: #0D0D0D; box-shadow: 0 0 15px rgba(232, 165, 184, 0.4); }
.feature-content { display: flex; flex-direction: column; gap: 4px; }
.feature-label { font-family: 'DM Sans', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: #888; font-weight: 700; }
.label-pink { color: #E8A5B8; }
.text-muted-value { font-family: 'DM Sans', sans-serif; color: #666; font-size: 18px; font-weight: 500; }
.text-bright-value { font-family: 'DM Sans', sans-serif; color: #FFFFFF; font-size: 18px; font-weight: 500; }
.highlight-pink { color: #E8A5B8; font-weight: 700; }


/* =========================================
   5. PROCESS SECTION
   ========================================= */
.process-section-stack {
    position: relative; background-color: #0D0D0D; width: 100%; max-width: 100vw; padding: 140px 20px;
    font-family: 'DM Sans', sans-serif !important; border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* NO overflow-x here - would break sticky positioning! */
}
.glow-beam-1 {
    position: absolute; top: 10%; right: 0; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.3) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(80px); pointer-events: none; z-index: 0; mix-blend-mode: screen;
}
.glow-beam-2 {
    position: absolute; bottom: 10%; left: 0; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.25) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(100px); pointer-events: none; z-index: 0;
}
.sticky-wrapper { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; gap: 80px; position: relative; z-index: 2; align-items: flex-start; overflow-x: visible; /* Allow sticky to work */ }
.sticky-left {
    width: 45%;
    position: -webkit-sticky;
    position: sticky;
    top: 120px; /* Increased from 60px to avoid navbar overlap */
    height: fit-content;
    max-height: calc(100vh - 140px); /* Adjust for navbar + padding */
    display: flex;
    flex-direction: column;
    align-self: flex-start; /* Important for sticky to work in flexbox */
    z-index: 1; /* Lower than scrolling-right so cards don't overlap */
}
.sticky-text-content { margin-bottom: 40px; }
.sticky-left .section-title { font-size: 52px; }
.sticky-left .section-sub { max-width: 450px; }
.visual-stack { position: relative; width: 100%; max-width: 450px; height: 450px; margin-top: auto; z-index: 1; }
.stack-card {
    position: absolute; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6); background: #1a1a1a; transition: transform 0.3s ease;
}
.stack-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; display: block; }
.card-1 { width: 160px; height: 180px; top: 0; left: 20px; z-index: 1; transform: rotate(-6deg); animation: float-1 7s ease-in-out infinite; }
.card-2 { width: 220px; height: 160px; top: 30px; right: 20px; z-index: 2; transform: rotate(4deg); border-color: rgba(232, 165, 184, 0.2); animation: float-2 8s ease-in-out infinite 1s; }
.card-3 { width: 240px; height: 280px; bottom: 20px; left: 0; z-index: 3; transform: rotate(-3deg); animation: float-1 9s ease-in-out infinite 0.5s; }
.card-4 {
    width: 150px; height: 260px; bottom: 0; right: 30px; z-index: 4; transform: rotate(5deg);
    border: 1px solid #E8A5B8; box-shadow: 0 20px 60px rgba(232, 165, 184, 0.15); animation: float-2 7s ease-in-out infinite 2s;
}
.play-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
}
.play-icon::after { content: ''; width: 0; height: 0; border-left: 12px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 4px; }
@keyframes float-1 { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-12px) rotate(-6deg); } }
@keyframes float-2 { 0%, 100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(-15px) rotate(4deg); } }
.scrolling-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 20px;
    padding-bottom: 60px; /* Add bottom padding instead of min-height */
    position: relative;
    z-index: 5; /* Higher than sticky-left so it's always on top */
}
.ui-card {
    position: relative; border-radius: 24px; background: #121212; border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 50px rgba(232, 165, 184, 0.02); padding: 40px; min-height: 380px; display: flex; flex-direction: column;
    justify-content: space-between; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ui-card:hover {
    border-color: rgba(232, 165, 184, 0.5); transform: translateY(-8px); background: #161616;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 0 30px rgba(232, 165, 184, 0.05);
}
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.icon-square {
    width: 52px; height: 52px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center; color: #E8A5B8; font-size: 22px; font-weight: 700; font-family: 'Lora', serif;
}
.step-badge {
    background: rgba(232, 165, 184, 0.05); border: 1px solid rgba(232, 165, 184, 0.2); padding: 6px 14px; border-radius: 100px;
    font-size: 12px; color: #E8A5B8; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.card-body { margin-bottom: auto; }
.card-title-process { font-family: 'Lora', serif !important; font-size: 30px; color: #FFFFFF; margin-bottom: 16px; font-weight: 400; }
.card-text-process { font-family: 'DM Sans', sans-serif !important; font-size: 16px; color: #999; line-height: 1.6; }
.card-tags { display: flex; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.ui-tag { padding: 6px 14px; border-radius: 100px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); color: #ccc; font-size: 12px; font-weight: 500; transition: 0.3s; }
.ui-card:hover .ui-tag { border-color: rgba(232, 165, 184, 0.3); color: #E8A5B8; }

/* --- RESPONSIVE COMPARE SECTION --- */
@media (max-width: 1024px) {
    .compare-grid {
        gap: 30px;
    }
    .compare-card {
        padding: 40px 32px;
    }
    .card-title-old,
    .card-title-new {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .compare-section {
        padding: 80px 20px;
    }
    .compare-header {
        margin-bottom: 40px;
    }
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
        margin: 0 auto;
    }
    .compare-card {
        padding: 32px 24px;
    }
    .card-title-old,
    .card-title-new {
        font-size: 24px;
        margin-bottom: 28px;
        padding-bottom: 20px;
    }
    .logo-mini {
        font-size: 11px;
    }
    .feature-row {
        gap: 12px;
        margin-bottom: 24px;
    }
    .icon-box {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    .feature-label {
        font-size: 11px;
    }
    .text-muted-value,
    .text-bright-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .compare-card {
        padding: 28px 20px;
    }
    .card-title-old,
    .card-title-new {
        font-size: 20px;
    }
    .text-muted-value,
    .text-bright-value {
        font-size: 14px;
    }
}

/* --- RESPONSIVE PROCESS SECTION --- */
@media (max-width: 1024px) {
    .sticky-wrapper {
        gap: 60px;
    }
    .visual-stack {
        max-width: 400px;
        height: 400px;
    }
}

@media (max-width: 900px) {
    .process-section-stack {
        padding: 80px 20px;
        overflow-x: hidden; /* FIX: Safe to add here - sticky disabled on mobile */
    }
    .sticky-wrapper {
        flex-direction: column;
        gap: 60px;
        max-width: 100%; /* FIX: Prevent overflow */
    }
    .sticky-left {
        width: 100%;
        position: relative;
        top: 0;
        text-align: center;
    }
    .sticky-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    .sticky-left .section-title {
        text-align: center;
        font-size: 36px; /* FIX: Match global .section-title mobile size */
    }
    .sticky-left .section-title br {
        display: none;
    }
    .sticky-left .section-sub {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    .visual-stack {
        display: none;
    }
    .scrolling-right {
        width: 100%;
        gap: 40px;
        padding-top: 0;
    }
    .ui-card {
        padding: 32px 28px;
        min-height: auto;
    }
    .card-title-process {
        font-size: 26px;
    }
    .card-text-process {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sticky-left .section-title {
        font-size: 28px; /* FIX: Match global .section-title small mobile size */
    }

    .ui-card {
        padding: 28px 20px;
    }
    .icon-square {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .step-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    .card-title-process {
        font-size: 22px;
    }
    .card-text-process {
        font-size: 14px;
    }
    .card-tags {
        margin-top: 24px;
    }
    .ui-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
}


/* =========================================
   6. TRANSFORMATION SECTION
   ========================================= */
.gallery-section {
    position: relative; background-color: #0D0D0D; width: 100%; max-width: 100vw; padding: 120px 20px;
    font-family: 'DM Sans', sans-serif !important; border-top: 1px solid rgba(255, 255, 255, 0.05); overflow-x: hidden; overflow-y: visible;
}
.gallery-header { text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.vertical-card {
    position: relative; width: 100%; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1); cursor: pointer; background: #1a1a1a;
}
.img-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; /* FIX: Changed from background-size for <img> tags */
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.layer-after { z-index: 1; }
.layer-before { z-index: 2; opacity: 1; }
.vertical-card:hover .layer-before, .vertical-card.active .layer-before { opacity: 0; }
.card-label {
    position: absolute; top: 20px; padding: 6px 12px; border-radius: 100px; font-size: 11px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; backdrop-filter: blur(8px);
    pointer-events: none; transition: all 0.4s ease;
}
.label-packshot { left: 20px; background: rgba(0, 0, 0, 0.6); color: #B8B8B8; border: 1px solid rgba(255, 255, 255, 0.1); z-index: 5; }
.label-editorial { right: 20px; background: rgba(232, 165, 184, 0.9); color: #0D0D0D; z-index: 4; opacity: 0; transform: translateY(10px); }
.vertical-card:hover .label-editorial, .vertical-card.active .label-editorial { opacity: 1; transform: translateY(0); z-index: 6; }
.vertical-card:hover .label-packshot, .vertical-card.active .label-packshot { opacity: 0; }
.mobile-hint {
    position: absolute; bottom: 20px; right: 20px; width: 36px; height: 36px; background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    z-index: 10; opacity: 0; pointer-events: none;
}
.hint-icon { font-size: 16px; }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 40px; }
    .mobile-hint { opacity: 1; animation: pulseHint 2s infinite; }
}
@keyframes pulseHint {
    0% { transform: scale(1); border-color: rgba(255,255,255,0.2); }
    50% { transform: scale(1.1); border-color: #E8A5B8; }
    100% { transform: scale(1); border-color: rgba(255,255,255,0.2); }
}


/* =========================================
   7. OFFER SECTION
   ========================================= */
.services-section-pl {
    position: relative; background-color: #0D0D0D; width: 100%; max-width: 100vw; padding: 120px 20px;
    font-family: 'DM Sans', sans-serif !important; border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: hidden; overflow-y: visible; display: flex; flex-direction: column; align-items: center;
}
.service-beam {
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 1000px; height: 800px;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.12) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(100px); pointer-events: none; z-index: 0; mix-blend-mode: screen;
}
.services-header { text-align: center; max-width: 800px; margin-bottom: 80px; position: relative; z-index: 2; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px;
    width: 100%; margin-bottom: 100px; position: relative; z-index: 2;
}
.service-card {
    background: #121212; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; overflow: hidden;
    padding: 32px; display: flex; flex-direction: column; min-height: 500px; position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.01);
}
.service-card:hover {
    border-color: rgba(232, 165, 184, 0.4); transform: translateY(-8px); background: #151515;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(232, 165, 184, 0.05);
}
.card-top-row { margin-bottom: 24px; }
.service-icon-box {
    width: 48px; height: 48px; border-radius: 12px; background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.service-icon-svg { width: 24px; height: 24px; fill: none; stroke: #E8A5B8; stroke-width: 1.5; }
.service-card:hover .service-icon-box {
    background: rgba(232, 165, 184, 0.1); border-color: rgba(232, 165, 184, 0.3);
    box-shadow: 0 0 15px rgba(232, 165, 184, 0.15);
}
.service-content { margin-bottom: 32px; flex-grow: 1; }
.service-title { font-family: 'Lora', serif !important; font-size: 26px; color: #FFFFFF; margin-bottom: 8px; font-weight: 400; }
.service-category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: #666; margin-bottom: 16px; display: block; font-weight: 700; }
.service-desc { font-size: 15px; color: #999; line-height: 1.6; }
.service-img-container {
    width: 100%; height: 220px; border-radius: 16px; overflow: hidden; position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.service-img-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.5s ease; }
.img-glass-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.1) 100%); pointer-events: none;
}
.service-card:hover .service-img-container img { opacity: 1; transform: scale(1.05); }
.service-card:hover .service-img-container { border-color: rgba(232, 165, 184, 0.3); }
.tags-section { width: 100%; max-width: 1000px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; position: relative; z-index: 2; }
.tag-pill {
    display: flex; align-items: center; gap: 10px; padding: 12px 24px; background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 100px; color: #B8B8B8;
    font-family: 'DM Sans', sans-serif !important; font-size: 14px; font-weight: 500; cursor: default;
}
.tag-icon { width: 16px; height: 16px; fill: currentColor; color: #666; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } .tags-section { gap: 10px; } .tag-pill { padding: 10px 16px; font-size: 12px; } }


/* =========================================
   8. PRICING SECTION
   ========================================= */
.pricing-section-fixed {
    position: relative; background-color: #0D0D0D; width: 100%; max-width: 100vw; padding: 120px 20px; font-family: 'DM Sans', sans-serif !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; align-items: center; overflow-x: hidden; overflow-y: visible;
}
.pricing-beam {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(232, 165, 184, 0.08) 0%, transparent 60%); pointer-events: none; z-index: 0;
}
.pricing-header { text-align: center; max-width: 800px; margin-bottom: 60px; position: relative; z-index: 2; }
.pricing-grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; width: 100%;
    margin-bottom: 30px; position: relative; z-index: 2; align-items: stretch;
}
.pricing-card {
    background: #121212; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 40px 32px;
    display: flex; flex-direction: column; position: relative; transition: transform 0.3s ease;
}
.pricing-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); }
.card-popular {
    background: rgba(232, 165, 184, 0.03); border: 2px solid rgba(232, 165, 184, 0.4);
    box-shadow: 0 0 50px rgba(232, 165, 184, 0.1); z-index: 5; transform: scale(1.05);
}
.card-popular:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 0 70px rgba(232, 165, 184, 0.15); }
.popular-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: #E8A5B8; color: #0D0D0D;
    padding: 6px 20px; border-radius: 100px; font-family: 'DM Sans', sans-serif !important; font-size: 12px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; box-shadow: 0 4px 15px rgba(232, 165, 184, 0.4); white-space: nowrap;
}
.plan-name {
    font-family: 'DM Sans', sans-serif !important; font-size: 14px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: #888; margin-bottom: 16px; display: block;
}
.card-popular .plan-name { color: #E8A5B8; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.price-val { font-family: 'Lora', serif !important; font-size: 48px; color: #FFF; font-weight: 400; line-height: 1; }
.price-curr { font-family: 'DM Sans', sans-serif !important; font-size: 18px; color: #888; font-weight: 500; }
.plan-desc { font-family: 'DM Sans', sans-serif !important; font-size: 15px; color: #999; line-height: 1.5; margin-bottom: 30px; min-height: 45px; }
.plan-divider { height: 1px; width: 100%; background: rgba(255,255,255,0.1); margin-bottom: 30px; }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; flex-grow: 1; }
.feature-li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #DDD; font-weight: 500; line-height: 1.4; font-family: 'DM Sans', sans-serif !important; }
.feat-icon {
    width: 18px; height: 18px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: #fff; font-size: 10px; flex-shrink: 0; margin-top: 2px;
}
.card-popular .feat-icon { background: #E8A5B8; color: #000; }
.bold-pink { color: #E8A5B8; font-weight: 700; }
.bold-white { color: #FFF; font-weight: 700; }
.delivery-time {
    display: flex; align-items: center; gap: 8px; font-size: 13px; color: #888; margin-top: auto; margin-bottom: 24px;
    padding-top: 20px; border-top: 1px dashed rgba(255,255,255,0.1); width: 100%; font-family: 'DM Sans', sans-serif !important;
}
.time-svg { width: 16px; height: 16px; fill: currentColor; }
.btn-plan {
    width: 100%; padding: 16px; border-radius: 12px; background: transparent; border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF; font-size: 14px; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; transition: 0.3s;
    font-family: 'DM Sans', sans-serif !important;
}
.btn-plan:hover { border-color: #FFF; background: rgba(255,255,255,0.05); }
.btn-popular {
    background: #E8A5B8; color: #0D0D0D; border: none; box-shadow: 0 0 20px rgba(232, 165, 184, 0.3); animation: pulse-btn 2s infinite;
}
.btn-popular:hover { background: #f0bcca; transform: translateY(-2px); }
@keyframes pulse-btn { 0% { box-shadow: 0 0 0 0 rgba(232, 165, 184, 0.6); } 70% { box-shadow: 0 0 0 10px rgba(232, 165, 184, 0); } 100% { box-shadow: 0 0 0 0 rgba(232, 165, 184, 0); } }
.custom-row-wrapper { width: 100%; max-width: 1200px; position: relative; z-index: 2; margin-top: 60px; margin-left: auto; margin-right: auto; }
.custom-row {
    width: 100%; background: linear-gradient(90deg, #1A1A1A 0%, #111 100%); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px; padding: 40px; display: flex; justify-content: space-between; align-items: center; transition: transform 0.3s ease;
}
.custom-row:hover { border-color: rgba(255,255,255,0.2); }
.custom-info { flex: 1; margin-right: 40px; }
.custom-title { font-family: 'Lora', serif !important; font-size: 28px; color: #FFF; margin-bottom: 12px; font-weight: 400; }
.custom-desc { font-family: 'DM Sans', sans-serif !important; color: #999; font-size: 16px; line-height: 1.5; margin-bottom: 24px; max-width: 800px; }
.custom-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.c-tag {
    font-family: 'DM Sans', sans-serif !important; font-size: 13px; color: #DDD; background: rgba(255,255,255,0.05);
    padding: 8px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05);
}
.btn-custom {
    flex: 0 0 auto; padding: 16px 40px; background: #FFF; color: #000; border-radius: 12px;
    font-weight: 700; text-decoration: none; transition: 0.3s; white-space: nowrap; font-family: 'DM Sans', sans-serif !important;
}
.btn-custom:hover { background: #E8A5B8; }
@media (max-width: 1024px) {
    .pricing-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
    .card-popular { grid-column: span 2; transform: scale(1); margin-bottom: 20px; }
    .custom-row { flex-direction: column; text-align: center; gap: 30px; }
    .custom-info { margin-right: 0; }
    .custom-tags { justify-content: center; }
    .btn-custom { width: 100%; }
}
@media (max-width: 768px) { .pricing-grid-3 { grid-template-columns: 1fr; } .card-popular { grid-column: span 1; } }


/* =========================================
   9. FAQ SECTION
   ========================================= */
.faq-section {
    position: relative; background-color: #0D0D0D; padding: 140px 20px;
    font-family: 'DM Sans', sans-serif !important; border-top: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden;
}
.faq-glow {
    position: absolute; top: 20%; left: -10%; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.08) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(100px); pointer-events: none; z-index: 0;
}
.faq-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 80px; position: relative; z-index: 2; }
.faq-header { width: 35%; position: sticky; top: 100px; /* Same as page-o-nas.php */ }
.faq-list { width: 60%; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #121212; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(232, 165, 184, 0.3); background: #161616; }
.faq-question { padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; width: 100%; background: none; border: none; text-align: left; }
.q-text { font-family: 'DM Sans', sans-serif !important; font-size: 18px; color: #FFF; font-weight: 500; }
.faq-icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background-color: #E8A5B8; border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all 0.3s ease; }
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-icon::after { height: 0; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease-out; padding: 0 32px; }
.answer-inner { overflow: hidden; font-family: 'DM Sans', sans-serif !important; font-size: 16px; color: #999; line-height: 1.6; opacity: 0; transform: translateY(-10px); transition: all 0.4s ease; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; padding-bottom: 32px; }
.faq-item.active .answer-inner { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
    .faq-container { flex-direction: column; gap: 40px; }
    .faq-header { width: 100%; position: relative; top: 0; text-align: center; }
    .faq-list { width: 100%; }
}

/* =========================================
   10. FOOTER SECTION
   ========================================= */
.final-wrapper { background-color: #0D0D0D; width: 100%; max-width: 100vw; font-family: 'DM Sans', sans-serif !important; position: relative; overflow-x: hidden; overflow-y: visible; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.cta-section { padding: 120px 20px; display: flex; justify-content: center; position: relative; }
.cta-card {
    width: 100%; max-width: 1000px; background: #121212; border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px; padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.cta-beam {
    position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.35) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(80px); pointer-events: none; mix-blend-mode: screen; z-index: 1;
}
.founder-avatar {
    width: 120px; height: 120px; border-radius: 50%; border: 3px solid rgba(232, 165, 184, 0.3); padding: 5px;
    margin-bottom: 30px; position: relative; z-index: 2; background: #121212; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.founder-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.cta-title { font-family: 'Lora', serif !important; font-size: 48px; color: #FFFFFF; margin-bottom: 20px; line-height: 1.1; position: relative; z-index: 2; }
.cta-sub { font-family: 'DM Sans', sans-serif !important; color: #B8B8B8; font-size: 18px; line-height: 1.6; max-width: 650px; margin: 0 auto 40px auto; position: relative; z-index: 2; }
.btn-cta {
    padding: 18px 48px; background: #E8A5B8; color: #0D0D0D; border-radius: 12px; font-weight: 700; font-size: 16px;
    text-decoration: none; transition: 0.3s; position: relative; z-index: 2; box-shadow: 0 0 30px rgba(232, 165, 184, 0.2);
}
.btn-cta:hover { background: #f0bcca; transform: translateY(-2px); box-shadow: 0 0 50px rgba(232, 165, 184, 0.4); }
.main-footer { max-width: 1200px; margin: 0 auto; padding: 80px 20px 40px 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.footer-brand h3 { font-family: 'DM Sans', sans-serif !important; font-size: 22px; font-weight: 700; color: #FFF; margin-bottom: 20px; letter-spacing: 0.05em; }
.footer-desc { color: #888; font-size: 15px; line-height: 1.6; max-width: 350px; margin-bottom: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-link-contact { color: #E8A5B8; font-weight: 600; text-decoration: none; font-size: 15px; transition: 0.3s; display: inline-block; width: fit-content; }
.footer-link-contact:hover { color: #FFF; }
.footer-col h4 { color: #FFF; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 24px; font-family: 'DM Sans', sans-serif !important; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #666; font-size: 14px; text-decoration: none; transition: 0.3s; display: inline-block; }
.footer-links a:hover { color: #E8A5B8; transform: translateX(5px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); color: #444; font-size: 13px; }
.footer-copyright { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.credits { font-weight: 500; color: #555; }
.mpj-link { color: #666; text-decoration: none; transition: 0.3s; }
.mpj-link:hover { color: #E8A5B8; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: #555; text-decoration: none; transition: 0.3s; }
.footer-legal a:hover { color: #888; }
.footer-socials { display: flex; gap: 16px; }
.social-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #888; transition: 0.3s; }
.social-icon:hover { background: #E8A5B8; color: #000; }
.social-svg { width: 16px; height: 16px; fill: currentColor; }

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 900px) {
    .cta-section {
        padding: 80px 20px;
    }

    .cta-card {
        padding: 60px 32px;
    }

    .cta-title {
        font-size: 36px;
    }

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

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

    .footer-copyright {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 20px 30px 20px;
    }

    .footer-grid {
        gap: 50px;
        margin-bottom: 60px;
    }

    /* Wyśrodkowanie sekcji Brand */
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .footer-desc {
        text-align: center;
        max-width: 100%;
    }

    .contact-info {
        align-items: center;
    }

    /* Sekcje Menu i Oferta w 2 kolumny */
    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-links li {
        text-align: left;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom {
        padding-top: 24px;
    }

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

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

@media (max-width: 480px) {
    .cta-card {
        padding: 50px 24px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-sub {
        font-size: 15px;
    }

    .cta-sub br {
        display: none;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 32px;
    }

    .main-footer {
        padding: 50px 20px 24px 20px;
    }

    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-links {
        gap: 10px 16px;
        font-size: 13px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

/* =========================================
   RESPONSIVE (MOBILE) - FINAL FIX
   (Duże logo, zwarte Hero, działający X)
   ========================================= */
@media (max-width: 992px) {
    
    /* 1. NAVBAR - MUSI BYĆ NA WIERZCHU */
    .navbar {
        justify-content: space-between !important; 
        padding: 16px 24px !important;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(10px);
    }

    /* 2. LOGO - ZWIĘKSZONE DO 55px (ZAMIAST 32px) */
    .logo {
        margin: 0; 
        display: flex;
        align-items: center;
        z-index: 1002;
    }

    .brand-logo-img {
        height: 55px !important; /* TO NAPRAWIA NIEWIDOCZNE LOGO */
        width: auto !important;
        display: block;
    }

    /* 3. UKRYWAMY DESKTOP */
    .nav-links, 
    .navbar .btn-nav.desktop-cta {
        display: none !important;
    }

    /* 4. HAMBURGER */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1002;
        width: 30px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    .hamburger span {
        width: 28px;
        height: 2px;
        background-color: #FFFFFF;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* ANIMACJA X (Zachowana z dobrej wersji) */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px); 
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* 5. MOBILE MENU */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0D0D0D; 
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); 
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding-top: 0;
    }

    .mobile-menu.active {
        right: 0;
    }

    /* Linki w menu */
    .mobile-menu .nav-link {
        font-family: 'DM Sans', sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #FFFFFF;
        text-decoration: none;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .mobile-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .mobile-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .mobile-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }

    /* CTA w menu mobilnym */
    .mobile-cta-container {
        margin-top: 20px;
    }
    
    .mobile-menu .btn-nav.mobile-cta {
        display: inline-block !important;
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        padding: 16px 40px;
        opacity: 0;
        transform: translateY(20px);
    }

    .mobile-menu.active .btn-nav.mobile-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    /* 6. HERO LAYOUT FIX (NAPRAWIA ROZCIĄGNIĘCIE) */
    .hero-wrapper {
        padding-top: 100px; /* Mniejszy padding */
        padding-bottom: 60px;
        min-height: auto; /* Wyłącza wymuszoną wysokość */
        height: auto;     /* Pozwala treści się naturalnie ułożyć */
        justify-content: flex-start; /* Układa od góry, zamiast rozciągać */
        gap: 40px; /* Naturalny odstęp między elementami */
    }

    h1.hero-h1 {
        font-size: 42px; /* Lekko mniejszy font dla lepszego układu */
        line-height: 1.1;
    }
}

/* =========================================
   11. LEGAL PAGES STYLES (Polityka & Regulamin)
   ========================================= */

.legal-page-wrapper {
    position: relative;
    padding-top: 140px; /* Miejsce na fixed navbar */
    padding-bottom: 80px;
    background-color: var(--bg-deep-black);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Tło ambientowe */
.legal-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: radial-gradient(circle at 50% 0%, rgba(232, 165, 184, 0.15) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.legal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Nagłówek dokumentu */
.legal-header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.legal-title {
    font-family: 'Lora', serif;
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 16px;
    font-weight: 400;
}

.legal-subtitle {
    font-family: 'DM Sans', sans-serif;
    color: var(--accent-rose);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* Treść dokumentu */
.legal-content {
    font-family: 'DM Sans', sans-serif;
    color: #C0C0C0; /* Lekko szary dla czytelności na czarnym */
    font-size: 16px;
    line-height: 1.7;
}

.legal-content h2 {
    font-family: 'Lora', serif;
    color: var(--text-white);
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(232, 165, 184, 0.2);
    font-weight: 400;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    position: relative;
}

.legal-content li::marker {
    color: var(--accent-rose);
}

.legal-content strong {
    color: var(--text-white);
    font-weight: 600;
}

.legal-content a {
    color: var(--accent-rose);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Tabele (Glassmorphism style) */
.table-responsive {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: var(--radius-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Wymusza scroll na mobile */
    background: rgba(255, 255, 255, 0.02);
}

.legal-table th {
    background: rgba(232, 165, 184, 0.1);
    color: var(--accent-rose);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(232, 165, 184, 0.2);
}

.legal-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #D0D0D0;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Responsive dla podstron */
@media (max-width: 768px) {
    .legal-title {
        font-size: 32px;
    }
    .legal-page-wrapper {
        padding-top: 100px;
    }
}

/* =========================================
   12. CASE STUDY SPECIFIC STYLES
   ========================================= */

/* --- Hero Case Study --- */
.case-hero {
    position: relative;
    padding: 140px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: var(--bg-deep-black);
}

.case-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.03);
    padding: 24px 40px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.meta-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.meta-label { font-family: 'DM Sans', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #666; font-weight: 700; }
.meta-value { font-family: 'DM Sans', sans-serif; font-size: 15px; color: #FFF; font-weight: 500; }
.highlight-rose { color: var(--accent-rose); font-weight: 600; }
.highlight-white { color: var(--text-white); font-weight: 600; }

/* Badge specyficzny dla Case Study (mały pill) */
.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(232, 165, 184, 0.1);
    border: 1px solid rgba(232, 165, 184, 0.3);
    border-radius: 100px;
    color: var(--accent-rose);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

/* --- Content Layout (Sticky Text + Visual) --- */
.content-section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 120px;
}

.text-sticky {
    position: sticky;
    top: 120px; /* Dostosowane pod navbar */
}

.block-title {
    font-family: 'Lora', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFF;
    line-height: 1.2;
}

.text-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--text-silver);
    margin-bottom: 32px;
    line-height: 1.7;
}

.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-item { display: flex; gap: 16px; align-items: flex-start; }
.bullet-icon {
    flex-shrink: 0; width: 24px; height: 24px;
    background: rgba(232, 165, 184, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-rose); font-size: 14px; margin-top: 2px;
}

/* --- Input Grid Wrapper (Obracające się kafelki) --- */
.input-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.input-tile {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    background: #1a1a1a;
    transition: transform 0.3s ease;
}

.input-tile img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.input-tile:nth-child(1) { transform: rotate(-2deg) translateY(10px); z-index: 2; }
.input-tile:nth-child(2) { transform: rotate(1deg); z-index: 1; }
.input-tile:nth-child(3) { transform: rotate(1deg) translateY(-10px); z-index: 1; }
.input-tile:nth-child(4) { transform: rotate(-2deg); z-index: 2; }
.input-tile:hover { transform: scale(1.05); z-index: 10; border-color: rgba(255,255,255,0.3); opacity: 1; }
.input-tile:hover img { opacity: 1; }

.raw-label {
    position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
    font-family: 'DM Sans', sans-serif; font-size: 13px; color: #666; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}

/* --- Visual Card (Pojedyncze zdjęcie) --- */
.visual-card {
    background: #121212;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}
.img-container { width: 100%; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; position: relative; }
.img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.visual-card:hover img { transform: scale(1.05); }
/* .card-label removed - used only in transformacja section on front-page (lines 857-865) */

/* --- Results Grid & Stats --- */
.results-section {
    background: #0A0A0A;
    padding: 120px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.results-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 1200px; margin: 60px auto 60px auto;
}

.result-img-box {
    position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.result-img-box img { width: 100%; height: 100%; object-fit: cover; }

.img-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--accent-rose); color: #000;
    font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}

.impact-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    max-width: 1000px; margin: 0 auto; text-align: left;
}
.stat-box { padding: 24px; border-left: 1px solid rgba(255,255,255,0.1); }
.stat-header { color: var(--accent-rose); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.05em; }
.stat-value { color: #FFF; font-family: 'Lora', serif; font-size: 24px; margin-bottom: 8px; font-weight: 400; }
.stat-desc { color: #888; font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.5; }

/* --- Comparison Table --- */
.comparison-wrapper {
    padding: 120px 20px; max-width: 1000px; margin: 0 auto; position: relative;
}
.table-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 80%;
    background: radial-gradient(ellipse, rgba(232, 165, 184, 0.08) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}
.styled-table { width: 100%; border-collapse: separate; border-spacing: 0 16px; position: relative; z-index: 2; }
.styled-table th { text-align: left; font-family: 'DM Sans', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: #666; padding: 0 24px 16px 24px; }
.styled-table td { background: rgba(255,255,255,0.02); padding: 24px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; font-family: 'DM Sans', sans-serif; color: var(--text-silver); font-size: 15px;}
.styled-table td:first-child { border-radius: 12px 0 0 12px; font-weight: 700; color: var(--text-white); border-right: none; width: 25%; }
.styled-table td:nth-child(2) { border-left: none; border-right: none; width: 35%; }
.styled-table td:last-child {
    border-radius: 0 12px 12px 0; background: rgba(232, 165, 184, 0.05);
    border: 1px solid rgba(232, 165, 184, 0.3); color: #FFF; font-weight: 500; width: 40%;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.table-row:hover td { background: rgba(255,255,255,0.05); }
.table-row:hover td:last-child { background: rgba(232, 165, 184, 0.1); box-shadow: 0 0 30px rgba(232, 165, 184, 0.15); }

/* --- Responsive Case Study --- */
@media (max-width: 900px) {
    .grid-2-col { grid-template-columns: 1fr; gap: 60px; }
    .case-meta-grid { grid-template-columns: 1fr; gap: 20px; width: 100%; padding: 20px; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .impact-stats { grid-template-columns: 1fr; gap: 24px; border-left: 2px solid rgba(255,255,255,0.1); padding-left: 20px; }
    .stat-box { border: none; padding: 0; }

    /* FIX: Center badge-pill on mobile */
    .text-sticky .badge-pill {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    /* FIX: Input tiles mobile - no rotation, no overlapping text */
    .input-tile {
        transform: none !important; /* Remove all rotations */
        margin-bottom: 16px; /* Add spacing */
    }
    .input-tile:hover {
        transform: scale(1.02) !important; /* Subtle hover only */
    }
    .input-grid-wrapper {
        max-width: 100%; /* Full width on mobile */
        padding-bottom: 0; /* Remove bottom padding */
    }
    .text-sticky {
        position: relative; /* Disable sticky on mobile */
        top: auto;
    }

    .styled-table, .styled-table tbody, .styled-table tr, .styled-table td, .styled-table th { display: block; width: 100%; }
    .styled-table thead { display: none; }
    .table-row { margin-bottom: 30px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; }
    .styled-table td:first-child { border-radius: 0; background: #1A1A1A; width: 100%; }
    .styled-table td:nth-child(2) { width: 100%; padding-bottom: 10px; border: none; }
    .styled-table td:last-child { width: 100%; border-radius: 0; border: none; border-top: 1px solid rgba(232,165,184,0.3); }
}

/* =========================================
   MONOROSE BLOG SYSTEM
   ========================================= */

/* --- ZMIENNE LOKALNE DLA BLOGA --- */
:root {
    --blog-sidebar-width: 260px;
    --blog-gap: 60px;
}

/* --- BLOG WRAPPER & CONTAINER --- */
.blog-wrapper {
    padding-top: 140px;
    padding-bottom: 100px;
    background: #0D0D0D;
    min-height: 100vh;
}

.blog-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    margin-bottom: 60px;
}

.blog-title {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 24px;
}

.blog-subtitle {
    max-width: 600px;
    color: var(--text-silver, #B8B8B8);
    font-size: 18px;
    line-height: 1.6;
}

/* --- GRID WPISÓW (home.php) --- */
.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    width: 100%;
}

.post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-6px);
    border-color: #E8A5B8;
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #1a1a1a;
}

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

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

.card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
    color: #888;
}

.cat-tag {
    color: #E8A5B8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 11px;
    border: 1px solid rgba(232, 165, 184, 0.3);
    padding: 4px 10px;
    border-radius: 100px;
}

.post-card h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #FFF;
}

.excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #B8B8B8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.author-pill-small {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-pill-small img {
    border-radius: 50%;
}

.author-pill-small .author-name {
    font-size: 13px;
    color: #FFF;
}

/* --- PAGINACJA BLOGA --- */
.blog-pagination,
.blog-wrapper .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
    grid-column: 1 / -1;
}

.blog-pagination .page-numbers,
.blog-wrapper .nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #B8B8B8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover,
.blog-wrapper .nav-links .page-numbers:hover {
    background: rgba(232, 165, 184, 0.1);
    border-color: #E8A5B8;
    color: #FFF;
}

.blog-pagination .page-numbers.current,
.blog-wrapper .nav-links .page-numbers.current {
    background: #E8A5B8;
    border-color: #E8A5B8;
    color: #000;
    font-weight: 600;
}

.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 18px;
}

/* --- SINGLE POST (single.php) --- */
.article-wrapper-pro {
    padding-top: 140px;
    padding-bottom: 80px;
    background: #0D0D0D;
}

.article-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: var(--blog-sidebar-width, 260px) 1fr;
    gap: var(--blog-gap, 60px);
    align-items: start;
}

/* Sidebar */
.article-sidebar {
    /* Visible on desktop */
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
}

.sidebar-block {
    margin-bottom: 0;
}

.sidebar-share {
    margin-top: 40px;
}

.sidebar-heading {
    color: #FFF;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-box img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.author-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.4;
}

.author-text strong {
    color: #FFF;
}

.author-text .role {
    color: #888;
    font-size: 12px;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #FFF;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: #E8A5B8;
    border-color: #E8A5B8;
    color: #000;
}

/* Main Article Content */
.article-main {
    min-width: 0;
}

.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-family: 'Lora', serif;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    color: #FFF;
    margin-top: 20px;
}

.featured-image-container {
    margin-bottom: 50px;
}

.featured-img-main {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* TYPOGRAPHY DLA GUTENBERGA */
.article-content-body {
    max-width: 800px;
}

.article-content-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #D1D1D1;
    margin-bottom: 28px;
}

.article-content-body h2 {
    font-family: 'Lora', serif;
    font-size: 32px;
    color: #FFF;
    margin-top: 60px;
    margin-bottom: 24px;
}

.article-content-body h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    color: #FFF;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.article-content-body h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: #FFF;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.article-content-body ul,
.article-content-body ol {
    margin-bottom: 28px;
    padding-left: 20px;
    color: #D1D1D1;
    font-size: 18px;
}

.article-content-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content-body blockquote {
    border-left: 3px solid #E8A5B8;
    padding-left: 30px;
    margin: 40px 0;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 24px;
    color: #FFF;
}

.article-content-body strong {
    color: #FFF;
    font-weight: 700;
}

.article-content-body a {
    color: #E8A5B8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.article-content-body a:hover {
    color: #f5c6d4;
}

.article-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.article-content-body pre,
.article-content-body code {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
}

.article-content-body pre {
    padding: 20px;
    overflow-x: auto;
    margin: 24px 0;
}

.article-content-body code {
    padding: 2px 6px;
}

/* =========================================
   TABELE W ARTYKUŁACH (Gutenberg)
   Styl identyczny z .legal-table z Polityki Prywatności
   ========================================= */

/* Reset stylów Gutenberga - usuń wszystkie domyślne ramki i style */
.article-content-body .wp-block-table,
.article-content-body .wp-block-table.is-style-stripes,
.article-content-body .wp-block-table.is-style-regular,
.article-content-body figure.wp-block-table {
    margin: 32px 0;
    padding: 0;
    border: none !important;
    background: transparent;
}

/* Wrapper z scrollem i ramką */
.article-content-body .wp-block-table {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.02);
}

/* Sama tabela */
.article-content-body table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 500px;
    margin: 0;
    border: none;
    background: transparent;
}

/* Reset Gutenberg stripes i innych wariantów */
.article-content-body .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background: transparent;
}

.article-content-body .wp-block-table.is-style-stripes table,
.article-content-body .wp-block-table.is-style-stripes th,
.article-content-body .wp-block-table.is-style-stripes td {
    border: none;
}

/* Nagłówki tabeli (th) */
.article-content-body table th,
.article-content-body table thead td {
    background: rgba(232, 165, 184, 0.1);
    color: #E8A5B8;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 16px 20px;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(232, 165, 184, 0.2);
}

/* Komórki tabeli (td) */
.article-content-body table td {
    padding: 16px 20px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #D0D0D0;
    line-height: 1.6;
    background: transparent;
}

/* Usuń podwójne pogrubienie z <strong> w komórkach */
.article-content-body table td strong,
.article-content-body table th strong {
    font-weight: 600;
    color: #FFF;
}

/* Ostatni wiersz bez dolnej ramki */
.article-content-body table tbody tr:last-child td {
    border-bottom: none;
}

/* Hover na wierszach */
.article-content-body table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Tabela bez thead - pierwszy wiersz jako nagłówek */
.article-content-body table:not(:has(thead)) tbody tr:first-child td {
    background: rgba(232, 165, 184, 0.1);
    color: #E8A5B8;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(232, 165, 184, 0.2);
}

/* Figcaption pod tabelą */
.article-content-body .wp-block-table figcaption {
    margin-top: 12px;
    font-size: 13px;
    color: #888;
    text-align: center;
    font-style: italic;
}

/* Responsywność tabel */
@media (max-width: 768px) {
    .article-content-body .wp-block-table {
        border-radius: 8px;
    }

    .article-content-body table {
        min-width: 400px;
    }

    .article-content-body table th,
    .article-content-body table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* =========================================
   FAQ ACCORDION W ARTYKUŁACH
   Automatycznie konwertowane z sekcji FAQ
   ========================================= */

/* Sekcja FAQ w artykule - styl jak na stronie głównej */
.article-content-body .article-faq-section {
    margin: 60px 0;
    padding: 0;
}

.article-content-body .article-faq-section .faq-section-title {
    font-family: 'Lora', serif;
    font-size: 28px;
    color: #FFF;
    margin-bottom: 32px;
    margin-top: 0;
}

/* Lista FAQ */
.article-content-body .article-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Pojedynczy item FAQ */
.article-content-body .article-faq-item {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-content-body .article-faq-item:hover {
    border-color: rgba(232, 165, 184, 0.3);
    background: #161616;
}

/* Pytanie (button) */
.article-content-body .article-faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    gap: 20px;
}

.article-content-body .article-faq-question .q-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #FFF;
    font-weight: 500;
    line-height: 1.4;
}

/* Ikona +/- */
.article-content-body .article-faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.article-content-body .article-faq-icon::before,
.article-content-body .article-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #E8A5B8;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.article-content-body .article-faq-icon::before {
    width: 14px;
    height: 2px;
}

.article-content-body .article-faq-icon::after {
    width: 2px;
    height: 14px;
}

/* Stan aktywny */
.article-content-body .article-faq-item.active .article-faq-icon {
    transform: rotate(180deg);
}

.article-content-body .article-faq-item.active .article-faq-icon::after {
    height: 0;
}

/* Odpowiedź (rozwijana) */
.article-content-body .article-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
    padding: 0 32px;
}

.article-content-body .article-faq-answer-inner {
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #999;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.article-content-body .article-faq-item.active .article-faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 28px;
}

.article-content-body .article-faq-item.active .article-faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Responsywność FAQ */
@media (max-width: 768px) {
    .article-content-body .article-faq-question {
        padding: 20px 24px;
    }

    .article-content-body .article-faq-question .q-text {
        font-size: 16px;
    }

    .article-content-body .article-faq-answer {
        padding: 0 24px;
    }

    .article-content-body .article-faq-item.active .article-faq-answer {
        padding-bottom: 24px;
    }
}

/* Footer CTA & Nav */
.article-cta-footer {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.cta-card-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.cta-card-box h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFF;
}

.cta-card-box p {
    color: #B8B8B8;
    font-size: 15px;
    margin-bottom: 0;
}

.btn-primary-sm {
    display: inline-block;
    padding: 12px 24px;
    background: #E8A5B8;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.2s ease;
}

.btn-primary-sm:hover {
    background: #f5c6d4;
    transform: translateY(-2px);
}

.btn-outline-sm {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFF;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.2s ease;
}

.btn-outline-sm:hover {
    border-color: #E8A5B8;
    color: #E8A5B8;
}

/* Post Navigation */
.post-navigation-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 60px;
}

.nav-prev,
.nav-next {
    max-width: 45%;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: #FFF;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.nav-prev a,
.nav-next a {
    text-decoration: none;
    display: block;
}

.nav-prev a:hover .nav-title,
.nav-next a:hover .nav-title {
    border-bottom-color: #E8A5B8;
}

/* =========================================
   BLOG RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .article-container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: none;
    }

    .blog-grid-container {
        grid-template-columns: 1fr;
    }

    .dual-cta-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation-footer {
        flex-direction: column;
        gap: 30px;
    }

    .nav-prev,
    .nav-next {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .blog-wrapper {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .article-wrapper-pro {
        padding-top: 100px;
    }

    .blog-header {
        margin-bottom: 40px;
    }

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

    .card-content {
        padding: 20px;
    }

    .post-card h3 {
        font-size: 20px;
    }

    .cta-card-box {
        padding: 30px 20px;
    }

    .article-content-body p {
        font-size: 16px;
    }

    .article-content-body h2 {
        font-size: 26px;
    }

    .article-content-body blockquote {
        font-size: 20px;
        padding-left: 20px;
    }
}

/* =========================================
   SPIS TREŚCI (TOC) - Sidebar
   ========================================= */
.sidebar-toc {
    margin-top: 40px;
}

.toc-nav {
    /* container */
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.toc-item {
    margin-bottom: 8px;
}

.toc-item-h3 {
    padding-left: 12px;
}

.toc-link {
    display: block;
    padding: 6px 0 6px 20px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    border-left: 2px solid transparent;
    margin-left: -1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.toc-link:hover {
    color: #E8A5B8;
    border-left-color: #E8A5B8;
}

.toc-item-h3 .toc-link {
    font-size: 13px;
    color: #666;
}

.toc-item-h3 .toc-link:hover {
    color: #E8A5B8;
}

/* =========================================
   AUTOR MOBILE
   ========================================= */
.author-box-mobile {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-box-mobile img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.author-box-mobile .author-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.4;
}

.author-box-mobile .author-text strong {
    color: #FFF;
}

.author-box-mobile .author-text .role {
    color: #888;
    font-size: 12px;
}

@media (max-width: 992px) {
    .author-box-mobile {
        display: flex;
    }
}

/* =========================================
   SINGLE CTA BOX (pakiety)
   ========================================= */
.single-cta-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    margin-bottom: 60px;
}

.single-cta-box h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFF;
}

.single-cta-box p {
    color: #B8B8B8;
    font-size: 15px;
    margin-bottom: 0;
}

/* =========================================
   CTA SECTION BLOG (baner Porozmawiajmy)
   ========================================= */
.cta-section-blog {
    margin-top: 0;
    padding: 0;
}

.cta-section-blog .cta-card {
    max-width: 100%;
}

@media (max-width: 480px) {
    .single-cta-box {
        padding: 30px 20px;
    }
}

/* =========================================
   SIDEBAR CTA (mini baner w sidebarze)
   ========================================= */
.sidebar-cta {
    margin-top: 40px;
}

.sidebar-cta-box {
    background: rgba(232, 165, 184, 0.08);
    border: 1px solid rgba(232, 165, 184, 0.2);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}

.sidebar-cta-box h4 {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #FFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sidebar-cta-box p {
    font-size: 13px;
    color: #B8B8B8;
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-sidebar-cta {
    display: inline-block;
    width: 100%;
    padding: 10px 16px;
    background: #E8A5B8;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-sidebar-cta:hover {
    background: #f5c6d4;
    transform: translateY(-1px);
}

/* Single CTA box bottom (pod banerem Porozmawiajmy) */
.single-cta-box-bottom {
    margin-top: 60px;
    margin-bottom: 0;
}

.error-404-wrapper {
    position: relative;
    background-color: #0D0D0D;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 20px 80px;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
}

.error-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.15) 0%, rgba(13, 13, 13, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.error-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.big-404 {
    font-family: 'Lora', serif;
    font-size: 120px;
    line-height: 1;
    font-weight: 400;
    background: linear-gradient(135deg, #FFFFFF 0%, #B8B8B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    margin-bottom: -40px;
    position: relative;
    z-index: 0;
    user-select: none;
}

.error-title {
    font-family: 'Lora', serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.error-text {
    font-size: 18px;
    line-height: 1.6;
    color: #B8B8B8;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-404 {
    display: inline-block;
    padding: 16px 42px;
    background-color: #E8A5B8;
    color: #0D0D0D;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(232, 165, 184, 0.15);
    position: relative;
    z-index: 2;
}

.btn-404:hover {
    background-color: #f0bcca;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(232, 165, 184, 0.3);
}

@media (max-width: 768px) {
    .big-404 {
        font-size: 80px;
        margin-bottom: -20px;
    }

    .error-title {
        font-size: 32px;
    }

    .error-text {
        font-size: 16px;
    }

    .error-content {
        padding: 40px 24px;
    }
}