/* Reset & Base - Wrażenie Style (Light Mode) */
:root {
    --bg: #ffffff;
    --text: #1e293b; /* Slate 800 */
    --text-muted: #64748b; /* Slate 500 */
    --primary: oklch(.488 .243 264.376); /* Blue */
    --secondary: #8b5cf6; /* Violet 500 */
    --accent: #06b6d4; /* Cyan 500 */
    --btn: oklch(.488 .243 264.376);
    --btn-hover: oklch(.44 .243 264.376);
    --btn-glass: oklch(.488 .243 264.376 / 0.78);
    --btn-glass-hover: oklch(.44 .243 264.376 / 0.86);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-highlight: rgba(255, 255, 255, 0.8);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image:
        radial-gradient(circle at 20% 10%, oklch(.88 .06 260 / 1), transparent 32%),
        radial-gradient(circle at 80% 20%, oklch(.90 .08 250 / 0.95), transparent 38%),
        radial-gradient(circle at 55% 65%, oklch(.88 .07 235 / 0.85), transparent 42%);
}

/* Subtle animated tech gradient under header+hero */
.ambient-bg::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(1000px 700px at 15% 15%, oklch(.89 .08 255 / 0.92), transparent 56%),
        radial-gradient(900px 650px at 85% 20%, oklch(.91 .07 240 / 0.88), transparent 58%),
        radial-gradient(1100px 800px at 55% 55%, oklch(.93 .04 265 / 0.78), transparent 61%),
        radial-gradient(800px 520px at 40% 85%, oklch(.91 .05 230 / 0.7), transparent 56%);
    filter: blur(16px);
    opacity: 1;
    transform: translate3d(0,0,0);
    animation: techMist 18s var(--ease-out-expo) infinite;
    pointer-events: none;
}

@keyframes techMist {
    0%   { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
    33%  { transform: translate3d(1.8%, -0.6%, 0) scale(1.04); }
    66%  { transform: translate3d(-0.8%, 1.2%, 0) scale(1.03); }
    100% { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
    .ambient-bg::before { animation: none !important; }
}

/* Ambient Background */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    mix-blend-mode: multiply; /* Better for light mode */
    animation: float 15s infinite ease-in-out;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #fce7f3, transparent 60%);
    animation-delay: 0s;
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #ede9fe, transparent 60%);
    animation-delay: -7s;
}

.glow-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #cffafe, transparent 60%);
    opacity: 0.3;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Navigation */
.navbar {
    padding: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.nav-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0.85rem 1.35rem;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-radius: 999px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(24px) saturate(165%);
    -webkit-backdrop-filter: blur(24px) saturate(165%);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 12px;
    outline: none;
}

.brand-wordmark {
    font-family: "Funnel Display", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.04em;
    color: #0f172a;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    padding: 0.4rem 0.25rem;
    border-radius: 10px;
    transition: transform 0.35s var(--ease-out-expo), filter 0.35s var(--ease-out-expo);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
}

.brand-mark {
    font-weight: 700;
    font-size: 0.95em;
    color: var(--btn);
}

.brand:hover .brand-wordmark {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 14px 28px rgba(0,0,0,0.08));
}

.brand:focus-visible .brand-wordmark {
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.brand:focus-visible {
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.brand-logo {
    width: 168px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.35s var(--ease-out-expo), filter 0.35s var(--ease-out-expo);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
}

.brand:hover .brand-logo {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 14px 28px rgba(0,0,0,0.08));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: flex-end;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    color: rgba(15, 23, 42, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.35s var(--ease-out-expo);
    box-shadow: 0 14px 40px rgba(2, 8, 23, 0.10);
}

.nav-toggle { display: none; }

.nav-toggle:hover {
    transform: translateY(-1px) scale(1.02);
    border-color: rgba(255,255,255,0.75);
    box-shadow: 0 18px 55px rgba(2, 8, 23, 0.12);
}

.nav-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12), 0 14px 40px rgba(2, 8, 23, 0.10);
}

.mobile-nav {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0.75rem 1.5rem 1.25rem;
    display: none;
}

.mobile-nav[hidden] { display: none !important; }

.mobile-nav:not([hidden]) {
    display: grid;
    gap: 0.4rem;
}

.mobile-link {
    text-decoration: none;
    color: rgba(15, 23, 42, 0.85);
    font-weight: 650;
    padding: 0.9rem 1rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    box-shadow: 0 16px 46px rgba(2, 8, 23, 0.08);
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.35s var(--ease-out-expo);
    text-align: center;
}

.mobile-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.75);
    box-shadow: 0 20px 58px rgba(2, 8, 23, 0.10);
}

.nav-link {
    color: rgba(15, 23, 42, 0.78);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    background: rgba(0,0,0,0.03);
    color: rgba(15, 23, 42, 0.95);
    transform: translateY(-1px);
}

.nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.nav-cta {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    padding: 0.85rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);
    background: var(--btn);
    box-shadow: 0 18px 44px rgba(2, 8, 23, 0.14);
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.35s var(--ease-out-expo);
}

.nav-cta:hover {
    transform: translateY(-1px) scale(1.02);
    background: var(--btn-hover);
    border-color: rgba(0,0,0,0.10);
    box-shadow: 0 22px 60px rgba(2, 8, 23, 0.16);
}

.nav-cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12), 0 18px 40px rgba(236, 72, 153, 0.14);
}

.anchor {
    display: block;
    position: relative;
    top: -96px; /* offset for sticky header */
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand {
    margin-bottom: 1.75rem;
    display: none; /* hidden for now */
}

.hero-logo {
    width: min(160px, 35vw);
    height: auto;
    display: block;
    object-fit: contain;
    transform-origin: center;
    animation: logoBreathe 3.8s var(--ease-out-expo) infinite;
    filter: brightness(0) saturate(100%) drop-shadow(0 12px 24px rgba(0,0,0,0.06));
}

@keyframes logoBreathe {
    0%, 100% { transform: translateY(0) scale(1) rotate(45deg); opacity: 0.98; }
    50% { transform: translateY(-1px) scale(1.03) rotate(45deg); opacity: 1; }
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 800;
    font-family: "Funnel Display", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.06;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 26px;
    padding-bottom: 26px;
    letter-spacing: -0.045em;
    padding-bottom: calc(26px + 0.08em); /* prevent descenders cropping */
    overflow: visible;
    display: inline-block;
    background: linear-gradient(180deg, #1e293b 0%, rgba(30, 41, 59, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Removed text-shadow or made it very subtle */
    text-shadow: 0 0 60px rgba(0,0,0,0.05);
    word-break: normal;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    animation: heroReveal 700ms var(--ease-out-expo) 120ms forwards;
}

@keyframes heroReveal {
    to { opacity: 1; }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(10px);
    animation: heroReveal 700ms var(--ease-out-expo) 220ms forwards;
}

/* Shared section header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: "Funnel Display", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.section-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* How it works - NEW DESIGN */
.how-section {
    padding: 3rem 2rem 5rem;
}

.how-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    position: relative;
    margin-top: 3rem;
}

/* Line connecting steps on desktop */
@media (min-width: 1024px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 3.5rem;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(0,0,0,0.05) 10%, 
            rgba(0,0,0,0.05) 90%, 
            transparent 100%
        );
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-illustration {
    width: 140px;
    height: 140px;
    border-radius: 35px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 10px 30px -10px rgba(0,0,0,0.08),
        0 4px 12px -4px rgba(0,0,0,0.05),
        inset 0 2px 4px rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo);
}

.process-step:hover .step-illustration {
    transform: translateY(-5px) scale(1.03);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--btn);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.25rem 0.8rem;
    border-radius: 99px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-illustration svg {
    color: var(--primary);
    filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.1));
    opacity: 0.9;
    transition: all 0.4s ease;
}

.process-step:hover .step-illustration svg {
    transform: scale(1.1);
    color: var(--secondary);
}

.process-step:nth-child(2) .step-illustration svg { color: var(--secondary); }
.process-step:nth-child(2):hover .step-illustration svg { color: var(--accent); }

.process-step:nth-child(3) .step-illustration svg { color: var(--accent); }
.process-step:nth-child(3):hover .step-illustration svg { color: var(--primary); }

.process-step:nth-child(4) .step-illustration svg { color: var(--primary); }
.process-step:nth-child(4):hover .step-illustration svg { color: #10b981; } /* Emerald */


.step-content h3 {
    font-family: "Funnel Display", sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.step-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
    font-weight: 500;
}

/* What Section - Pricing Layout */
.what-section {
    padding: 5.5rem 2rem 2rem;
}

.what-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.what-glass-card {
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 30px;
    padding: 0;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    box-shadow: 0 30px 100px rgba(2, 8, 23, 0.09);
    width: 100%;
    max-width: none;
    backdrop-filter: blur(20px) saturate(155%);
    -webkit-backdrop-filter: blur(20px) saturate(155%);
}

.what-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148,163,184,0.45), transparent);
}

.what-hero-content {
    text-align: left;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 900px) {
    .what-hero-content {
        grid-template-columns: 0.4fr 1fr;
        text-align: left;
        gap: 4rem;
    }
}

.what-hero-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 100%;
}

.what-hero-title h2 {
    font-family: "Funnel Display", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
}

.price-prefix {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.what-hero-title .price-amount {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.5rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    line-height: 0.9;
    height: auto;
    vertical-align: baseline;
}

.what-hero-title .price-number {
    font-family: "Funnel Display", sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: baseline;
    height: auto;
}

.what-hero-title .price-currency {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: baseline;
}

.what-hero-title .price-netto-inline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0.1rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: left;
}

.what-hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.what-hero-features .included-item {
    padding: 1.5rem 1.5rem;
    min-height: auto;
}

.what-hero-features .item-icon {
    margin-bottom: 0.75rem;
}

.what-hero-features .item-icon svg {
    width: 32px;
    height: 32px;
}

.what-hero-features .item-content h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.what-hero-features .free-badge {
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.included-item-link {
    cursor: pointer;
    transition: all 0.3s ease;
}

.included-item-link:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.65);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.included-item-link .item-content h4 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.included-item-link:hover .item-content h4 a {
    color: var(--primary);
}

.what-hero-features .included-item {
    cursor: pointer;
}

.what-hero-features .included-item:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.65);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

#pricing-gotowa-strona .item-content h4 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

#pricing-gotowa-strona:hover .item-content h4 a {
    color: var(--primary);
}

.learn-more-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.pricing-cta-row {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .pricing-single-card {
        padding: 4rem 3.5rem;
    }
    
    .price-number {
        font-size: 5rem;
    }
}

/* Reveal-on-scroll for "Czym jest Humbak?" */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 650ms var(--ease-out-expo),
        transform 650ms var(--ease-out-expo);
    will-change: opacity, transform;
}

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

.reveal-delay-0 { transition-delay: 40ms; }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 140ms; }
.reveal-delay-3 { transition-delay: 190ms; }
.reveal-delay-4 { transition-delay: 240ms; }
.reveal-delay-5 { transition-delay: 290ms; }
.reveal-delay-6 { transition-delay: 340ms; }
.reveal-delay-7 { transition-delay: 390ms; }
.reveal-delay-8 { transition-delay: 440ms; }
.reveal-delay-9 { transition-delay: 490ms; }
.reveal-delay-10 { transition-delay: 540ms; }

@media (prefers-reduced-motion: reduce) {
    .glow,
    .hero-logo,
    .hero-title,
    .hero-subtitle {
        animation: none !important;
        transform: none !important;
    }
    .hero-title,
    .hero-subtitle {
        opacity: 1 !important;
    }
}

/* Extravagant Button */
.morph-trigger,
.main-cta {
    position: relative;
    padding: 0 3.5rem;
    height: 80px;
    background: var(--btn-glass);
    color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 9999px;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(22px) saturate(165%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);
    overflow: hidden;
}

.morph-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.morph-trigger:hover,
.main-cta:hover {
    transform: scale(1.03);
    border-color: rgba(15, 23, 42, 0.22);
    background: var(--btn-glass-hover);
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.20);
    color: #ffffff;
}

.morph-trigger:hover::before,
.main-cta:hover::before {
    opacity: 0.15;
}

.morph-trigger.btn-hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 2rem;
    position: relative;
}

.pricing-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.pricing-header {
    margin-bottom: 2rem;
}

.main-pricing-card {
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 30px;
    padding: clamp(2.75rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    margin: 0 auto 3rem auto;
    position: relative;
    overflow: visible;
    box-shadow: 0 30px 100px rgba(2, 8, 23, 0.09);
    width: 100%;
    max-width: none;
    backdrop-filter: blur(20px) saturate(155%);
    -webkit-backdrop-filter: blur(20px) saturate(155%);
}

.main-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148,163,184,0.45), transparent);
}

.price-hero {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
    border-bottom: none;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: nowrap;
}

.price-number {
    font-family: "Funnel Display", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1.12;
    padding-top: 10px;
    padding-bottom: 10px;
    background: linear-gradient(180deg, #1e293b 0%, rgba(30, 41, 59, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    display: inline-block;
}

.price-label {
    font-size: 1.1rem;
    color: rgba(15, 23, 42, 0.85);
    font-weight: 600;
}

.price-netto {
    font-size: 1.1rem;
    color: rgba(15, 23, 42, 0.85);
    font-weight: 600;
    margin-left: 0.35rem;
}

.price-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.65;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

@media (min-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.included-item {
    padding: 1.9rem 1.8rem;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 22px;
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 24px 70px rgba(2, 8, 23, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.included-item:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.65);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.highlight-item.is-open {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 36px 110px rgba(15, 23, 42, 0.18);
    border-color: rgba(148, 163, 184, 0.9);
}

.item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.item-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    filter: drop-shadow(0 4px 6px rgba(236, 72, 153, 0.2));
    transition: transform 0.3s ease;
}

.included-item:hover .item-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.included-item:nth-child(2n) .item-icon svg {
    color: var(--secondary);
    filter: drop-shadow(0 4px 6px rgba(139, 92, 246, 0.2));
}

.included-item:nth-child(3n) .item-icon svg {
    color: var(--accent);
    filter: drop-shadow(0 4px 6px rgba(6, 182, 212, 0.2));
}

.item-icon-phone {
    position: relative;
    cursor: pointer;
}

.phone-icon-pulse {
    animation: phoneRing 4s infinite ease-in-out;
    filter: drop-shadow(0 4px 6px rgba(236, 72, 153, 0.2));
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg) scale(1); }
    5%, 15% { transform: rotate(-10deg) scale(1.05); }
    10%, 20% { transform: rotate(10deg) scale(1.05); }
}

#pricing-wsparcie {
    cursor: pointer;
    transition: all 0.3s ease;
}

#pricing-wsparcie:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.65);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

#pricing-wsparcie:hover .phone-icon-pulse {
    animation-duration: 2s;
    filter: drop-shadow(0 6px 12px rgba(236, 72, 153, 0.4));
}

.item-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: #0f172a;
    font-family: "Funnel Display", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.included-desc {
    margin-top: 0.4rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.highlight-details {
    margin-top: 0.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    display: block;
}

.highlight-item.is-open .highlight-details {
    max-height: 220px;
    opacity: 1;
}

.free-badge {
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-item {
    background: #fff7fb;
    border-color: rgba(236, 72, 153, 0.1);
}

.main-cta {
    margin-top: 0;
}

.pricing-details-section {
    padding: 2rem 2rem 6rem;
}

.pricing-cta-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 3rem;
}

/* Premium Addon */
.premium-addon {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 30px;
    padding: 3.5rem;
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.addon-badge {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.addon-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.addon-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.addon-prefix {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.addon-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.addon-currency {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.addon-netto {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: -0.25rem;
}

.addon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.addon-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text);
    transition: all 0.3s ease;
}

.addon-feature:hover .feature-icon-wrapper {
    background: rgba(236, 72, 153, 0.1);
    color: var(--primary);
    transform: scale(1.05);
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.addon-cta {
    width: 100%;
    padding: 1.25rem 2rem;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.addon-cta:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--text);
    transform: translateY(-2px);
}

/* Morph Overlay */
.morph-overlay {
    position: fixed;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 9999px;
    z-index: 9999;
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.morph-overlay.expanded {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0,0,0,0.08);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Wizard Styling */
.wizard-wrapper {
    padding: 3rem;
    color: var(--text);
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.morph-overlay.expanded .wizard-wrapper {
    opacity: 1;
}

.wizard-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.05);
    border: none;
    color: var(--text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10000;
}
.wizard-close:hover {
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

.wizard-step {
    display: none;
    flex-direction: column;
    flex: 1;
    animation: fadeSlideUp 0.5s ease forwards;
    min-height: 0;
    overflow-y: auto;
}

.wizard-step.active {
    display: flex;
}

.wizard-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.wizard-success.active {
    display: flex;
}

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

.wizard-step h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #1e293b, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wizard-step p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* New Wizard Styles */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-option-card {
    padding: 1.9rem 1.8rem;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 22px;
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 24px 70px rgba(2, 8, 23, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    height: 100%;
}

.contact-option-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.65);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.contact-option-card .option-icon {
    margin-bottom: 0.5rem;
}

.contact-option-card .option-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.contact-option-card:hover .option-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.option-icon-img {
    width: 64px;
    height: auto;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.contact-option-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    font-family: "Funnel Display", sans-serif;
}

.contact-option-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Form Styles Override/Addition */
.wizard-form {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    flex: 1;
}

.wizard-form .form-group {
    margin-bottom: 1.25rem;
}

.wizard-form input, 
.wizard-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.8);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.wizard-form input:focus,
.wizard-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

/* Wizard Form Checkbox */
.wizard-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: left;
}

.wizard-form .form-checkbox input[type="checkbox"] {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font: inherit;
    color: var(--text);
    width: 1.15em;
    height: 1.15em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: grid;
    place-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.125em;
    transition: all 0.2s ease;
}

.wizard-form .form-checkbox input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--text);
    background-color: var(--text);
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.wizard-form .form-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.wizard-form .form-checkbox input[type="checkbox"]:checked::before {
    transform: scale(1);
    box-shadow: inset 1em 1em white;
    background-color: white;
}

.wizard-form .form-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
    border-color: var(--primary);
}

.wizard-form .form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(236, 72, 153, 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s;
}

.wizard-form .form-checkbox a:hover {
    color: var(--secondary);
    text-decoration-color: var(--secondary);
}

/* Wizard Form Message Box */
.wizard-form .form-message-box {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: none;
    padding: 0.75rem;
    border-radius: 8px;
}

.wizard-form .form-message-box.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.wizard-form .form-message-box.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Submit button loader */
.wizard-form .submit-btn {
    position: relative;
}

.wizard-form .submit-btn .loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
}

.wizard-form .submit-btn.loading .submit-text {
    opacity: 0.7;
}

.wizard-form .submit-btn.loading .loader {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
    .wizard-wrapper {
        padding: 2rem;
    }
}

/* Step Actions */
.step-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.next-btn, .submit-btn {
    background: var(--btn);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.next-btn:hover, .submit-btn:hover {
    background: var(--btn-hover);
    transform: translateY(-1px);
}

.submit-btn:disabled,
.submit-btn[disabled] {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.4);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.submit-btn:disabled:hover,
.submit-btn[disabled]:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: none;
}

.prev-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.prev-btn:hover {
    color: var(--text);
    border-color: var(--text);
}

/* Time Range Picker Styles */
.time-range-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0.5rem;
}

.select-wrapper {
    flex: 1;
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    background: transparent;
    border: none;
    padding: 0.5rem;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.select-wrapper select:hover {
    background: rgba(0,0,0,0.03);
}

.select-wrapper select:focus {
    outline: none;
    background: rgba(0,0,0,0.05);
}

.range-separator {
    color: var(--text-muted);
    font-weight: 500;
    padding: 0 0.25rem;
}

/* FAQ */
.faq-section {
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.01));
    padding: 6rem 2rem;
}

.faq-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.faq-item {
    border-bottom: none;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 24px 70px rgba(2, 8, 23, 0.06);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.25rem;
    padding: 1.6rem 1.75rem;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s;
}

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

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    margin: 0 1.75rem;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, margin 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 1.75rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    padding-right: 2rem;
}

/* Contact Info Section */
/* Portfolio Section */
.portfolio-section {
    padding: 6rem 2rem;
    background: transparent;
}

.portfolio-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
    box-shadow: 0 24px 60px rgba(2, 8, 23, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    aspect-ratio: 4 / 3;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(2, 8, 23, 0.12);
    border-color: rgba(255,255,255,0.8);
}

.portfolio-image {
    width: 100%;
    flex: 5;
    min-height: 0;
    overflow: hidden;
    background: var(--bg);
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1rem 1.5rem;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.portfolio-content h3 {
    font-family: "Funnel Display", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    color: #0f172a;
    line-height: 1.3;
    flex: 1;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    white-space: nowrap;
}

.portfolio-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

@media (max-width: 768px) {
    .portfolio-section {
        padding: 4rem 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .portfolio-item {
        aspect-ratio: 3 / 4;
    }
    
    .portfolio-content {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .portfolio-content h3 {
        font-size: 1rem;
    }
    
    .portfolio-link {
        font-size: 0.8rem;
        padding: 0.45rem 0.85rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: transparent;
}

.testimonials-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
    box-shadow: 0 24px 60px rgba(2, 8, 23, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(2, 8, 23, 0.12);
    border-color: rgba(255,255,255,0.8);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    letter-spacing: 2px;
    line-height: 1;
}

.testimonial-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-family: "Funnel Display", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: #0f172a;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.98rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
}

.contact-info-section {
    padding: 6rem 2rem;
}

.contact-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
    box-shadow: 0 24px 60px rgba(2, 8, 23, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(2, 8, 23, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--bg);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.contact-card h3 {
    font-family: "Funnel Display", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.footer-brand-logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.site-footer {
    margin-top: 6rem;
    padding: 4rem 2rem 2.5rem;
    background: radial-gradient(circle at top, rgba(15,23,42,0.96), rgba(15,23,42,1));
    color: #e5e7eb;
    border-top: 1px solid rgba(148,163,184,0.45);
}

.footer-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-brand-title {
    font-family: "Funnel Display", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.footer-brand-sub {
    color: rgba(148, 163, 184, 0.9);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 22rem;
}

.footer-brand-sub .inline-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    font-style: inherit;
    transition: none;
}

.footer-brand-sub .inline-link:hover {
    color: inherit;
    text-decoration: none;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 1);
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
    font-size: 0.92rem;
    color: rgba(209, 213, 219, 0.95);
}

.footer-link {
    color: inherit;
    text-decoration: none;
    opacity: 0.84;
    transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
    color: #f9fafb;
    transform: translateY(-1px);
}

.footer-meta {
    font-size: 0.82rem;
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.6;
}

.footer-social {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.1);
    color: rgba(209, 213, 219, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.social-icon:hover {
    background: rgba(148, 163, 184, 0.2);
    color: #f9fafb;
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(148, 163, 184, 0.9);
}

.footer-bottom a {
    color: rgba(209, 213, 219, 0.95);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-bottom a:hover {
    color: #f9fafb;
    border-bottom-color: rgba(209, 213, 219, 0.9);
}

.footer-preview {
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-end;
}

.footer-preview img {
    max-width: 260px;
    border-radius: 1.25rem;
    border: 1px solid rgba(148,163,184,0.5);
    box-shadow: 0 24px 60px rgba(15,23,42,0.6);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 2rem;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-inline: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-preview {
        justify-content: flex-start;
    }
    .social-icons {
        gap: 0.75rem;
    }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Utils */
.hidden { display: none !important; }
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
    display: none;
}
.submit-btn[disabled] .loader { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Glitch/Text Effects for "Wrażenie" */
.wrazenie-text {
    position: relative;
    display: inline-block;
}

.wrazenie-text .glyph {
    display: inline-block;
    will-change: opacity, filter, text-shadow, color;
    opacity: 0;
}

/* Keyframes for wwwwrażenie Animation (Adapted for light mode) */

/* 1. Flicker Init - Cyan/Blue-ish flash */
@keyframes flickerInit {
    0% {
        opacity: 0;
        color: rgb(6, 182, 212);
        text-shadow: 0 0 2px rgba(6, 182, 212, 0.5);
    }
    10% { opacity: 1; }
    20% { opacity: 0.1; }
    40% { opacity: 1; }
    100% { opacity: 1; color: #1e293b; text-shadow: none; }
}

/* 2. Red Glow (for www) */
@keyframes redGlow {
    0% {
        color: #1e293b;
        text-shadow: none;
    }
    50% {
        color: #ef4444; /* Red */
        text-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    }
    100% {
        color: #ef4444;
        text-shadow: 0 0 5px rgba(239, 68, 68, 0.2);
    }
}

/* 3. White/Normal Glow (for wrażenie) -> Dark text for light mode */
@keyframes whiteGlow {
    0% {
        color: #1e293b;
        text-shadow: none;
    }
    50% {
        color: #0f172a;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    100% {
        color: #0f172a;
        text-shadow: none;
    }
}

/* 4. Spot Appear (Pink) */
@keyframes spotAppear {
    0% {
        opacity: 0;
        transform: scale(0);
        color: var(--primary);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
        color: #ec4899; /* Pink */
        text-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        color: var(--primary);
        text-shadow: 0 0 5px rgba(236, 72, 153, 0.2);
    }
}

@media (max-width: 786px) {
    /* Przyciski - tekst w jednej linii z automatycznym zmniejszaniem fontu */
    .morph-trigger,
    .main-cta {
        white-space: nowrap;
        overflow: hidden;
        font-size: clamp(0.75rem, 2.5vw, 1.25rem);
        padding: 0 clamp(1.5rem, 4vw, 3.5rem);
        height: auto;
        min-height: 60px;
    }
    
    .btn-content {
        white-space: nowrap;
        overflow: hidden;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .btn-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: inherit;
    }
    
    .btn-icon {
        flex-shrink: 0;
    }
    
    .submit-btn,
    .next-btn,
    .prev-btn {
        white-space: nowrap;
        overflow: hidden;
        font-size: clamp(0.8rem, 2.8vw, 1rem);
        padding: 0.85rem clamp(1rem, 3vw, 2rem);
    }
    
    .nav-cta {
        white-space: nowrap;
        overflow: hidden;
        font-size: clamp(0.75rem, 2.5vw, 0.95rem);
        padding: 0.75rem clamp(0.85rem, 2.5vw, 1.05rem);
    }
    
    .mobile-cta {
        white-space: nowrap;
        overflow: hidden;
        font-size: clamp(0.75rem, 2.5vw, 0.95rem);
        padding: 0.75rem clamp(0.85rem, 2.5vw, 1.05rem);
    }
    
    .widget-submit {
        white-space: nowrap;
        overflow: hidden;
        font-size: clamp(0.8rem, 2.8vw, 1rem);
        padding: 0.85rem clamp(1rem, 3vw, 2rem);
    }
    
    .contact-option-card h3 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    
    .wizard-wrapper {
        padding: 20px 10px 10px 10px !important;
        height: auto !important; /* Changed from 100% to auto */
        min-height: 0;
        overflow-y: auto;
        border-radius: 30px !important;
    }

    .wizard-step h2 {
        font-size: 26px !important; /* Reduced font size */
    }

    .morph-overlay.expanded {
        width: auto !important;
        height: auto !important;
        top: 110px !important;
        left: 10px !important;
        right: 10px !important;
        bottom: auto !important; /* Changed from 10px to auto */
        max-height: calc(100vh - 120px) !important; /* Prevent going off screen */
        transform: none !important;
        border-radius: 30px !important;
        position: fixed !important;
        overflow-y: auto; /* Ensure overlay scrolls if needed */
    }
    
    .wizard-close {
        width: 54px;
        height: 54px;
        font-size: 1.8rem;
        top: auto !important;
        bottom: 1.5rem !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        z-index: 10000 !important;
        cursor: pointer;
        position: absolute !important;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border: 1px solid rgba(0,0,0,0.1);
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 1rem !important; /* Increased gap for better touch targets */
        margin-top: 0 !important;
        padding-bottom: 70px; /* Space for close button */
    }

    .contact-option-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 1.25rem;
        max-height: none; /* Allow height to adapt */
        min-height: 80px; /* Minimum height for touch target */
    }

    .option-icon-img {
        margin-bottom: 0;
        margin-right: 1rem;
        width: 48px;
        height: 48px;
    }

    .contact-option-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .contact-option-card p {
        font-size: 0.9rem;
    }

    /* Mobile Typography Optimizations */
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.1;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-lead {
        font-size: 1rem;
        line-height: 1.5;
    }

    .what-hero-content {
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }

    .what-hero-title {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .what-hero-title h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin: 0;
        line-height: 1.2;
        max-width: 100%;
    }

    .price-prefix {
        font-size: 0.875rem;
        margin: 0;
        font-weight: 500;
        color: var(--text-muted);
    }

    .what-hero-title .price-amount {
        justify-content: center;
        align-items: baseline;
        gap: 0.4rem;
        margin: 0 0 0 0;
        flex-wrap: nowrap;
        line-height: 1;
    }

    .what-hero-title .price-number {
        font-size: clamp(3rem, 12vw, 4.5rem);
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .what-hero-title .price-currency {
        font-size: clamp(1.1rem, 4.5vw, 1.6rem);
        line-height: 1;
    }

    .what-hero-title .price-netto-inline {
        font-size: 0.7rem;
        margin: 0.05rem 0 0 0;
        line-height: 1;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        font-weight: 600;
    }

    .what-hero-text {
        font-size: 17px;
        line-height: 1.6;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* HC Modal fix */
    .hc-modal.active {
        max-width: 100vw;
        max-height: 100vh;
        overflow: hidden;
    }
}

.mobile-cta {
    background: var(--btn);
    color: white;
    font-weight: 700;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 44px rgba(2, 8, 23, 0.14);
}

.mobile-cta:hover {
    background: var(--btn-hover);
    color: white;
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: var(--space-md, 1rem) var(--space-lg, 1.5rem);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-out-expo);
}

.cookie-consent.is-visible {
    transform: translateY(0);
}

.cookie-consent[hidden] {
    display: block !important;
    transform: translateY(100%);
    visibility: hidden;
}

.cookie-consent.is-visible[hidden] {
    visibility: visible;
}

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

.cookie-consent-text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.5;
    flex: 1;
    min-width: 260px;
}

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

.cookie-consent-text a:hover {
    color: var(--btn-hover);
}

.cookie-consent-btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 0 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: var(--btn);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.cookie-consent-btn:hover {
    background: var(--btn-hover);
}

.cookie-consent-btn:active {
    transform: scale(0.98);
}
