:root {
    /* Colors - Premium Dark Mode Theme */
    --bg-color: #050505;
    --bg-card: rgba(25, 25, 25, 0.6);
    --bg-card-hover: rgba(40, 40, 40, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;

    --accent-1: #FF3366;
    --accent-2: #7C3AED;
    --accent-3: #3B82F6;

    --gradient-primary: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.4) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(59, 130, 246, 0.4) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(255, 51, 102, 0.4) 0px, transparent 50%);
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 8rem;
    --space-2xl: 16rem;
    --space-3xl: 24rem;

    /* Fonts */
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 20px;
    --border-radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 400;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--space-3xl) 0;
}

.section-title {
    background: linear-gradient(to right, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(124, 58, 237, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.btn-text {
    background: transparent;
    color: var(--text-primary);
    padding: 0.875rem 1rem;
}

.btn-text:hover {
    color: var(--accent-1);
}

.btn-block {
    display: flex;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(124, 58, 237, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.2);
    margin-bottom: 2rem;
}

/* Navbar - Floating Island */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 100;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    background: rgba(12, 12, 12, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.navbar .logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.04em;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Modern Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 3px;
    margin-left: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-sans);
    letter-spacing: 0.03em;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Navbar CTA */
.navbar .btn-nav-cta {
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.navbar .btn-nav-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 22px rgba(124, 58, 237, 0.6);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-image: var(--gradient-mesh);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite alternate;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(80px);
    animation: floatGlow 12s ease-in-out infinite;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 650px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin: 0 0 2.5rem 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 4vw;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    font-family: monospace;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    z-index: 20;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: default;
}

.hero-scroll-indicator svg {
    width: 28px;
    height: 28px;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    color: var(--accent-1);
}

.hero-visual-col {
    position: absolute;
    top: 0;
    right: 0;
    width: 65vw;
    height: 100%;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 25%), 
                linear-gradient(to top, transparent 0%, black 15%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%), 
                        linear-gradient(to top, transparent 0%, black 15%);
    -webkit-mask-composite: source-in;
}

#hero-particle-canvas {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: auto;
}

@media (max-width: 992px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 6rem;
        --space-3xl: 8rem;
    }
    .navbar {
        width: calc(100% - 2rem);
        padding: 0.75rem 1.25rem;
    }
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 1000;
        gap: 3rem;
    }
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }
    .nav-links a {
        font-size: 1.75rem;
    }
    .lang-switch {
        margin-left: 0;
        transform: scale(1.2);
    }
    .container {
        padding: 0 6vw;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        margin-top: 3rem;
        gap: 2rem;
    }
    .hero-text-col {
        align-items: center;
        text-align: center;
        max-width: 100%;
        z-index: 10;
        padding: 0;
    }
    h1.hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .hero-cta .btn {
        width: auto;
        text-align: center;
        justify-content: center;
        padding: 1rem 2rem;
    }
    .hero-visual-col {
        width: 100%;
        right: 0;
        opacity: 0.25;
        mask-image: radial-gradient(circle at 100% 100%, black 10%, transparent 100%);
        -webkit-mask-image: radial-gradient(circle at 100% 100%, black 10%, transparent 100%);
        pointer-events: none;
    }
    .hero-scroll-indicator {
        bottom: 2rem;
        right: 6vw;
        font-size: 0.85rem;
    }
    .hero-scroll-indicator span {
        display: none;
    }
}

/* Animations */
@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    50% { transform: translate(-50px, 30px) scale(1.1); opacity: 0.3; }
}

@keyframes rotateGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0.3;
    }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

/* Services Section (Minimal Grid) */
.services-layout {
    padding-top: var(--space-xl);
}

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0;
}

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

.service-item {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.service-item h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: inherit;
}

.service-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    padding: var(--space-xl) 0;
}

.comparison-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.comparison-text {
    position: sticky;
    top: 100px;
}

.comparison-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.comparison-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.comp-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #111111;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    min-width: unset;
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    border-bottom: 1px solid var(--border-color);
}

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

.comp-header {
    background: rgba(0, 0, 0, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-secondary);
}

.comp-cell {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comp-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--text-primary);
}

.comp-cell.highlight {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-weight: 500;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.comp-cell.highlight .dot {
    margin-right: 0.5rem;
    display: inline-block;
}

/* Pricing Subscription */
.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.pricing {
    position: relative;
}

.pricing-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Karta promocyjna po lewej (w stylu mrocznym + glow/akcent) */
.pricing-promo-card {
    background: #09090b;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 520px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-promo-card:hover {
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 40px rgba(124, 58, 237, 0.2);
}

.pricing-promo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.promo-visual-container {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    pointer-events: none;
}

.virtual-card {
    width: 280px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: rotateX(15deg) rotateY(-15deg) rotateZ(5deg);
    box-shadow: 
        30px 30px 60px rgba(0,0,0,0.8), 
        inset 1px 1px 2px rgba(255,255,255,0.2),
        inset -1px -1px 2px rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    position: relative;
    animation: floatingVirtualCard 8s ease-in-out infinite alternate;
}

.virtual-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

@keyframes floatingVirtualCard {
    0% { transform: translateY(0) rotateX(15deg) rotateY(-15deg) rotateZ(5deg); }
    100% { transform: translateY(-20px) rotateX(20deg) rotateY(-10deg) rotateZ(3deg); }
}

.virtual-card .vc-icon {
    font-size: 2.8rem;
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    color: var(--accent-1);
    filter: drop-shadow(0 0 10px var(--accent-1));
}

.virtual-card .vc-text {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vc-glow-1 {
    position: absolute;
    top: -30%; right: -20%;
    width: 200px; height: 200px;
    background: var(--accent-1);
    filter: blur(70px);
    border-radius: 50%;
    opacity: 0.35;
    z-index: -1;
    transition: all 0.5s ease;
}

.vc-glow-2 {
    position: absolute;
    bottom: -30%; left: -20%;
    width: 180px; height: 180px;
    background: var(--accent-2);
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.25;
    z-index: -1;
    transition: all 0.5s ease;
}

.pricing-promo-card:hover .vc-glow-1 {
    opacity: 0.5;
    filter: blur(80px);
    transform: scale(1.1);
}

.pricing-promo-card:hover .vc-glow-2 {
    opacity: 0.4;
    filter: blur(70px);
    transform: scale(1.1);
}

.promo-text-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: auto;
}

.promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981; /* Zielony (sukces/dostępność) */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.promo-main-heading {
    font-size: 3.2rem;
    line-height: 1.05;
    margin: 0;
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: -0.04em;
    display: flex;
    flex-direction: column;
}

.promo-main-heading .gradient-text {
    background: linear-gradient(135deg, var(--accent-1) 0%, #ff8a7a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main-tier-card .pricing-content {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-badge-outline {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Wewnętrzny ciemny boks z funkcjami */
.pricing-inset-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
    flex: 1;
}

.features-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.pricing-bottom-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.smiley-logo {
    width: 64px;
    height: 64px;
    opacity: 0.8;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.pricing-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    filter: blur(60px);
    opacity: 0.15;
    border-radius: var(--border-radius);
    z-index: 0;
    transition: opacity 0.3s;
    animation: rotateGlow 15s linear infinite;
}

.pricing-card:hover .pricing-card-glow {
    opacity: 0.3;
}

.pricing-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}



.pricing-bottom {
    display: flex;
    flex-direction: column;
}

.pricing-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--text-primary);
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.03em;
}

.plan-price .period {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-benefits {
    margin-top: 2rem;
}

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

.benefits-list.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

@media (max-width: 600px) {
    .benefits-list.two-columns {
        grid-template-columns: 1fr;
    }
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.benefits-list li strong {
    color: white;
}

.check {
    color: var(--accent-1);
    margin-right: 0.75rem;
    font-weight: bold;
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.accordion-header:hover {
    color: var(--accent-2);
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
    color: var(--accent-1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* Booking Calendar */
.booking {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.05) 100%);
    border-top: 1px solid var(--border-color);
}

.calendar-wrapper {
    margin-top: 3rem;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#my-cal-inline-15min,
#my-cal-inline-15min iframe {
    width: 100%;
    min-height: 750px;
    /* Blokada okna w poziomie i pionie pod kątem suwaków */
    overflow-x: hidden;
    overflow-y: hidden;
    /* Ukrycie suwaków dla starych renderów */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

#my-cal-inline-15min::-webkit-scrollbar,
#my-cal-inline-15min iframe::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Footer (Minimal Split Style) */
.footer {
    padding: 6rem 0 6rem;
    background: var(--bg-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-template-rows: 1fr auto;
    gap: 4rem 2rem;
    min-height: 450px;
}

.footer-tl {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.footer-location {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 400;
}

.footer-tr {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-tr a {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s;
    font-weight: 400;
}

.footer-tr a:hover {
    opacity: 0.7;
}

.footer-bl {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-mail {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
}

.footer-mail:hover {
    opacity: 0.7;
}

.footer-br {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 2rem;
}

.social-icon {
    color: var(--text-primary);
    transition: transform 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
    /* Jeśli domyślnie są czarne, a tło ciemne, opcjonalnie doliczy to filtr:
    filter: invert(1); */
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-main-title {
        font-size: 2.5rem;
    }



    .comparison-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-width: 0;
    }
    .comparison-text {
        position: static;
    }
    .comparison-table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
    }
    .comp-table {
        display: flex;
        flex-direction: column;
        background: transparent;
        border: none;
        min-width: 0;
    }
    .comp-header {
        display: none;
    }
    .comp-row {
        display: flex;
        flex-direction: column;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    .comp-cell.comp-label {
        font-size: 1.05rem;
        color: var(--accent-1);
        padding: 0 0 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0.75rem;
    }
    .comp-cell.comp-label {
        border-right: none;
        border-left: none;
    }
    .comp-cell {
        padding: 0.35rem 0;
        font-size: 0.95rem;
        border: none;
        display: block;
    }
    .comp-cell:nth-child(2)::before {
        content: "Tradycyjna Agencja: ";
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-secondary);
        display: block;
        margin-bottom: 0.2rem;
    }
    .comp-cell:nth-child(3)::before {
        content: "Freelancer: ";
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-secondary);
        display: block;
        margin-bottom: 0.2rem;
    }
    .comp-cell.highlight {
        background: transparent;
        border: none;
        border-top: 1px dashed rgba(255, 51, 102, 0.4);
        margin-top: 0.75rem;
        padding-top: 1rem;
    }
    .comp-cell.highlight::before {
        content: "My (kwartał): ";
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--accent-1);
        display: block;
        margin-bottom: 0.3rem;
        font-weight: 700;
    }
    .comp-cell.highlight .dot {
        margin-right: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 3rem;
    }
    
    .footer-tl {
        grid-column: 1;
        grid-row: 1;
    }
    
    .footer-tr {
        grid-column: 1;
        grid-row: 2;
        align-items: flex-start;
    }
    
    .footer-bl {
        grid-column: 1;
        grid-row: 4;
        margin-top: 2rem;
    }
    
    .footer-br {
        grid-column: 1;
        grid-row: 3;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .glass-body {
        height: 200px;
    }
}

iframe {
    overflow: hidden;
}