@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    /* Color Palette - Lidl Meets Premium B2B */
    --color-primary: #00509D; /* Lidl Premium Blue */
    --color-yellow: #FFD000; /* Lidl Vibrant Yellow */
    --color-red: #D61C2C; /* Lidl High-Conversion Red */
    --color-navy-dark: #0A192F; /* Deep Business Navy */
    --color-navy-light: #172A45; /* Dark glass base */
    --color-bg-light: #F8FAFC; /* Premium light backdrop for Lidl product grid */
    --color-white: #FFFFFF;
    --color-text-dark: #0F172A;
    --color-text-gray: #475569;
    --color-text-light: #F1F5F9;
    --color-accent-cyan: #00E5FF;
    
    /* Font stacks */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-luxury: 'Playfair Display', serif; /* Gucci/Zara Premium Feel for specific accents */
    
    /* Layout & Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0, 80, 157, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 25px rgba(0, 229, 255, 0.4);
    --shadow-yellow-glow: 0 0 25px rgba(255, 208, 0, 0.5);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color: var(--color-text-dark);
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-gray);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-yellow);
}

/* Top Banner (Lidl style promotional yellow bar) */
.promo-top-bar {
    background-color: var(--color-yellow);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    animation: slideDown 0.5s ease;
}

.promo-top-bar span {
    animation: pulseText 1.5s infinite alternate;
}

/* Navigation Header */
.main-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 80, 157, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BRAND NEW LUXURY LOGO (Apple/Zara style) */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-white);
}

.logo-icon-svg {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 208, 0, 0.25));
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon-svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 208, 0, 0.45));
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--color-white);
    text-transform: uppercase;
}

.logo-brand-name span {
    color: var(--color-yellow);
}

.logo-brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-accent-cyan);
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-badge {
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
}

/* Menu links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-smooth);
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-yellow);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-yellow);
}

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

.nav-link.active {
    color: var(--color-yellow);
}
.nav-link.active::after {
    width: 100%;
}

/* Sleek Language Switcher */
.lang-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    transition: var(--transition-smooth);
}

.lang-selector-wrapper:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--color-yellow);
}

.lang-globe {
    font-size: 0.9rem;
}

.lang-select {
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
}

.lang-select option {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
}

/* CTA buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
    text-transform: uppercase;
}

.btn-yellow {
    background-color: var(--color-yellow);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.3);
}

.btn-yellow:hover {
    background-color: #e5bb00;
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow-glow);
}

.btn-red {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(214, 28, 44, 0.3);
}

.btn-red:hover {
    background-color: #b81422;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 28, 44, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-cyan {
    background-color: var(--color-accent-cyan);
    color: var(--color-navy-dark);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-cyan:hover {
    background-color: #00b8cc;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Lidl-Style Circular Category Bar (Icons at the Top) */
.category-strip {
    background-color: var(--color-white);
    padding: 30px 0 20px;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid #E2E8F0;
    overflow-x: auto;
}

.category-strip-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    min-width: max-content;
    padding: 0 24px;
}

.category-circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    width: 105px;
    text-align: center;
}

.category-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    border: 3px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.category-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,208,0,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-circle-wrapper:hover .category-circle {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 8px 20px rgba(0, 80, 157, 0.15);
}

.category-circle-wrapper:hover .category-circle::before {
    opacity: 1;
}

.category-circle-wrapper.active .category-circle {
    border-color: var(--color-yellow);
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(0, 80, 157, 0.3);
}

/* Category icons colors */
.cat-akademia .category-circle { border-color: #D61C2C; color: #D61C2C; }
.cat-logistyka .category-circle { border-color: #E2B276; color: #E2B276; }
.cat-zakupy .category-circle { border-color: #A3A3A3; color: #A3A3A3; }
.cat-magazyn .category-circle { border-color: #1B8E5A; color: #1B8E5A; }
.cat-lean .category-circle { border-color: #E65C00; color: #E65C00; }
.cat-bdm .category-circle { border-color: #0088CC; color: #0088CC; }
.cat-marketing .category-circle { border-color: #AA33CC; color: #AA33CC; }
.cat-ai .category-circle { border-color: #00E5FF; color: #00E5FF; }

.cat-akademia:hover .category-circle { border-color: #D61C2C; background-color: rgba(214,28,44,0.05); }
.cat-logistyka:hover .category-circle { border-color: #E2B276; background-color: rgba(226,178,118,0.05); }
.cat-zakupy:hover .category-circle { border-color: #A3A3A3; background-color: rgba(163,163,163,0.05); }
.cat-magazyn:hover .category-circle { border-color: #1B8E5A; background-color: rgba(27,142,90,0.05); }
.cat-lean:hover .category-circle { border-color: #E65C00; background-color: rgba(230,92,0,0.05); }
.cat-bdm:hover .category-circle { border-color: #0088CC; background-color: rgba(0,136,204,0.05); }
.cat-marketing:hover .category-circle { border-color: #AA33CC; background-color: rgba(170,51,204,0.05); }
.cat-ai:hover .category-circle { border-color: #00E5FF; background-color: rgba(0,229,255,0.05); }

.category-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
    transition: var(--transition-smooth);
}

.category-circle-wrapper:hover .category-title {
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    background-color: var(--color-navy-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 80, 157, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 229, 255, 0.15) 0px, transparent 50%),
        linear-gradient(180deg, var(--color-navy-dark) 0%, #030A16 100%);
    color: var(--color-white);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-badge {
    background-color: rgba(255, 208, 0, 0.1);
    color: var(--color-yellow);
    border: 1px solid var(--color-yellow);
    display: inline-flex;
    padding: 8px 16px;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 950px;
    margin: 0 auto 24px;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--color-yellow);
    text-shadow: 0 0 20px rgba(255, 208, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 780px;
    margin: 0 auto 40px;
    color: #94A3B8;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* DJ VINYL MECHANICAL CAROUSEL */
.product-slider-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y;
    overflow: hidden;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.product-marquee {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    width: max-content;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

/* Product Card */
.product-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    width: 280px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-drag: none;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    z-index: 5;
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background-color: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-tag.blue-tag {
    background-color: var(--color-primary);
}

.product-tag.yellow-tag {
    background-color: var(--color-yellow);
    color: #000;
}

/* EMBEDDED NON-CLIPPED ILLUSTRATIONS */
.product-image-container {
    height: 180px;
    background-color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: visible;
}

.product-image-svg {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: visible;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image-svg {
    transform: scale(1.08) rotate(2deg);
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    user-select: none;
}

.product-manufacturer {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 16px;
}

.product-price-box {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border: 1px dashed #CBD5E1;
}

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    font-weight: 600;
}

.price-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-red);
}

.price-value span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-gray);
    margin-left: 2px;
}

.product-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    text-transform: uppercase;
}

.product-btn:hover {
    background-color: var(--color-yellow);
    color: #000;
    box-shadow: 0 4px 10px rgba(255, 208, 0, 0.2);
}

/* ==========================================
 * HIGH-TECH ANIMATED DOPAMINE ICONS
 * ========================================== */
.dopamine-icon-container {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: visible; /* Prevents any clipping of the glow */
}

.dopamine-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* ==========================================
 * 1. HIGH-TECH GEAR ENGINE STYLING & ANIMATIONS
 * ========================================== */
.gear-large {
    transform-origin: 24px 38px;
    animation: spinGear 12s linear infinite;
    transition: animation-duration 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gear-medium {
    transform-origin: 44px 26px;
    animation: spinGearRev 8s linear infinite;
    transition: animation-duration 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gear-small {
    transform-origin: 20px 16px;
    animation: spinGear 5s linear infinite;
    transition: animation-duration 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Interactive Gear Engine Overdrive on Hover */
.dopamine-card:hover .gear-large {
    animation-duration: 3s;
}

.dopamine-card:hover .gear-medium {
    animation-duration: 1.8s;
}

.dopamine-card:hover .gear-small {
    animation-duration: 1s;
}

/* Cybernetic process connecting laser */
.gear-laser {
    stroke-dasharray: 8 4;
    animation: laserRun 1.5s linear infinite, laserColorPulse 3s ease-in-out infinite alternate;
}

.dopamine-card:hover .gear-laser {
    animation-duration: 0.5s, 1s;
}

/* Pulsing vertices in gear network */
.data-node {
    animation: nodeBlink 1.2s ease-in-out infinite alternate;
}

.data-node:nth-child(even) {
    animation-delay: 0.6s;
}

/* ==========================================
 * 2. LUXURY GOLD BAG & COIN FLOTATION STYLING
 * ========================================== */
.wealth-bag {
    transform-origin: 32px 36px;
    animation: bagBreath 4s ease-in-out infinite;
    transition: filter 0.4s ease;
}

.dopamine-card:hover .wealth-bag {
    filter: drop-shadow(0 0 12px rgba(255, 208, 0, 0.8)) brightness(1.1);
}

/* Growing Arrow path drawing */
.wealth-line {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawArrow 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wealth-line-bg {
    opacity: 0.15;
}

/* Staggered flowing gold coins out of the bag */
.coin-float {
    opacity: 0;
    transform-origin: center;
}

.coin-float.coin-1 {
    animation: floatCoin1 4s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

.coin-float.coin-2 {
    animation: floatCoin2 4s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
    animation-delay: 1.3s;
}

.coin-float.coin-3 {
    animation: floatCoin3 4s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
    animation-delay: 2.6s;
}

/* Faster coin flotation jackpot on hover */
.dopamine-card:hover .coin-float.coin-1 {
    animation-duration: 1.8s;
}

.dopamine-card:hover .coin-float.coin-2 {
    animation-duration: 1.8s;
    animation-delay: 0.6s;
}

.dopamine-card:hover .coin-float.coin-3 {
    animation-duration: 1.8s;
    animation-delay: 1.2s;
}

/* ==========================================
 * 3. SECURITY SHIELD & RADAR ACTIVE SCANNING
 * ========================================== */
.shield-core {
    transform-origin: 32px 34px;
    animation: shieldBreath 4s ease-in-out infinite;
    transition: filter 0.4s ease;
}

.dopamine-card:hover .shield-core {
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.7));
}

.shield-ring-1 {
    transform-origin: 32px 34px;
    animation: spinGear 24s linear infinite;
    transition: animation-duration 0.4s ease;
}

.shield-ring-2 {
    transform-origin: 32px 34px;
    animation: spinGearRev 14s linear infinite;
    transition: animation-duration 0.4s ease;
}

/* Scanner line sliding vertically inside the shield */
.shield-scanner {
    animation: shieldScan 3.5s ease-in-out infinite;
}

/* Security radar overdrive on hover */
.dopamine-card:hover .shield-ring-1 {
    animation-duration: 6s;
}

.dopamine-card:hover .shield-ring-2 {
    animation-duration: 3.5s;
}

/* ==========================================
 * KEYFRAMES FOR ADVANCED DOPAMINE ANIMATIONS
 * ========================================== */
@keyframes spinGear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinGearRev {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes laserRun {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -24; }
}

@keyframes laserColorPulse {
    0% { stroke: #00509D; }
    100% { stroke: #00E5FF; }
}

@keyframes nodeBlink {
    0% { r: 1.5; fill: #00509D; opacity: 0.4; }
    100% { r: 3; fill: #00E5FF; opacity: 1; filter: drop-shadow(0 0 4px #00E5FF); }
}

@keyframes bagBreath {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.04) translateY(-1px); }
}

@keyframes drawArrow {
    to { stroke-dashoffset: 0; }
}

@keyframes floatCoin1 {
    0% {
        transform: translate(0, 0) scale(0.4) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translate(-14px, -32px) scale(1.1) rotate(240deg);
        opacity: 0;
    }
}

@keyframes floatCoin2 {
    0% {
        transform: translate(0, 0) scale(0.4) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 0.9;
    }
    100% {
        transform: translate(12px, -36px) scale(1.1) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes floatCoin3 {
    0% {
        transform: translate(0, 0) scale(0.4) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        transform: translate(-2px, -42px) scale(1.1) rotate(120deg);
        opacity: 0;
    }
}

@keyframes shieldBreath {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(0, 80, 157, 0.2));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
    }
}

@keyframes shieldScan {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.2;
    }
    50% {
        transform: translateY(22px);
        opacity: 0.95;
    }
}

/* Emocjonalne punkty dopaminowe */
.section-title-wrapper {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.dopamine-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    border: 1px solid #E2E8F0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.dopamine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.dopamine-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.dopamine-card:hover::before {
    transform: scaleX(1);
}

.dopamine-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

/* Infinite Scrolling Reviews Marquee */
.testimonials-section {
    background-color: var(--color-white);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    overflow: hidden;
}

.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.reviews-marquee-container::before,
.reviews-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-light) 0%, rgba(248, 250, 252, 0) 100%);
}

.reviews-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-light) 0%, rgba(248, 250, 252, 0) 100%);
}

.reviews-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeReviews 45s linear infinite;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: var(--color-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius-md);
    width: 320px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.review-flag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    background: #EFF6FF;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid #DBEAFE;
}

.review-service-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--color-text-gray);
    border-bottom: 1px dashed #E2E8F0;
    padding-bottom: 8px;
}

.review-stars {
    color: #FFD000;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 12px;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-text-gray);
    font-weight: 600;
}

.review-role {
    color: var(--color-primary);
    font-weight: 700;
}

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

/* Three Pillars Section */
.pillars-section {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 80, 157, 0.25) 0%, transparent 60%);
}

.pillars-section h2 {
    color: var(--color-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background-color: var(--color-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 208, 0, 0.2);
    line-height: 1;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-num {
    color: var(--color-yellow);
    text-shadow: 0 0 15px rgba(255, 208, 0, 0.4);
}

.pillar-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--color-white);
}

.pillar-subtitle {
    font-size: 0.9rem;
    color: var(--color-yellow);
    font-weight: 600;
    margin-bottom: 24px;
    font-style: italic;
}

.pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.pillar-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.pillar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pillar-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pillar-item-title::before {
    content: '⚡';
    color: var(--color-yellow);
    font-size: 0.8rem;
}

.pillar-item-desc {
    font-size: 0.85rem;
    color: #94A3B8;
    padding-left: 20px;
}

/* Risk-Free Model Section (0 zł Callout Box) */
.model-section {
    background-color: var(--color-white);
}

.callout-box {
    background-color: var(--color-navy-dark);
    background-image: radial-gradient(circle at 100% 100%, rgba(255, 208, 0, 0.15) 0%, transparent 60%);
    border-radius: var(--border-radius-md);
    padding: 60px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.callout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.callout-content h2 {
    color: var(--color-white);
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.callout-content p {
    color: #CBD5E1;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.callout-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.callout-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-check {
    background-color: var(--color-yellow);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.benefit-text strong {
    color: var(--color-white);
    display: block;
    font-size: 1rem;
}

.benefit-text span {
    font-size: 0.85rem;
    color: #94A3B8;
}

.callout-badge-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-navy-light);
    border: 2px dashed var(--color-yellow);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    position: relative;
    animation: floatingGently 4s ease-in-out infinite;
}

.giant-price {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    font-weight: 800;
    color: var(--color-yellow);
    line-height: 1;
    text-shadow: var(--shadow-yellow-glow);
}

.giant-price-sub {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-top: 10px;
}

.callout-badge-side .btn {
    width: 100%;
    margin-top: 30px;
}

/* Academy Tape Slider (Free documents marquee) */
.academy-tape-wrapper {
    background-color: var(--color-primary);
    padding: 15px 0;
    overflow: hidden;
    border-top: 3px solid var(--color-yellow);
    border-bottom: 3px solid var(--color-yellow);
}

.academy-marquee {
    display: flex;
    gap: 30px;
    animation: marqueeFiles 25s linear infinite;
    width: max-content;
}

.academy-marquee:hover {
    animation-play-state: paused;
}

.marquee-file-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.marquee-file-card:hover {
    background-color: var(--color-yellow);
    color: #000;
    border-color: var(--color-yellow);
}

.marquee-file-icon {
    font-weight: 800;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: var(--color-red);
    color: var(--color-white);
}

.marquee-file-card:hover .marquee-file-icon {
    background-color: #000;
}

/* Academy Repository Grid */
.academy-search-bar {
    max-width: 500px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
}

.search-input {
    flex-grow: 1;
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #CBD5E1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 80, 157, 0.15);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid #E2E8F0;
    background-color: var(--color-white);
    color: var(--color-text-gray);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.filter-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-tab.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

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

.file-card {
    background-color: var(--color-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.file-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.file-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.file-format-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--color-white);
}

.format-xls { background-color: #107C41; }
.format-pdf { background-color: #F40F02; }
.format-doc { background-color: #185ABD; }

.file-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 44px;
}

.file-description {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.file-download-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.file-card:hover .file-download-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Free Custom Request Banner */
.academy-request-banner {
    background-color: #FFFBEB;
    border: 2px dashed #F59E0B;
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    box-shadow: var(--shadow-sm);
}

.academy-request-banner h3 {
    font-size: 1.5rem;
    color: #92400E;
    margin-bottom: 8px;
}

.academy-request-banner p {
    color: #B45309;
    margin-bottom: 24px;
}

/* Form Styles - High Conversion Fix My Business */
.conversion-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid #E2E8F0;
}

.form-wrapper {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid #E2E8F0;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--color-primary);
}

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

.form-grid-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.form-input, .form-select, .form-textarea {
    padding: 14px 16px;
    border: 1px solid #CBD5E1;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    color: var(--color-text-dark);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 80, 157, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Pulsing Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 20px rgba(214, 28, 44, 0.3);
    animation: buttonPulse 2.5s infinite;
}

.btn-submit:hover {
    animation: none;
}

/* Honeypot hidden input for anti-spam */
.honey-field {
    display: none !important;
}

/* AJAX Success Dopamine Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.dopamine-success-panel {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 50px 40px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-yellow);
    transform: scale(0.85);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.modal-overlay.active .dopamine-success-panel {
    transform: scale(1);
}

.success-badge {
    width: 90px;
    height: 90px;
    background-color: var(--color-primary);
    color: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px rgba(0, 80, 157, 0.3);
    border: 4px solid var(--color-yellow);
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.success-message {
    font-size: 1.05rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-timer-bar {
    height: 4px;
    width: 100%;
    background-color: var(--color-bg-light);
    position: absolute;
    bottom: 0;
    left: 0;
}

.success-timer-fill {
    height: 100%;
    background-color: var(--color-yellow);
    width: 100%;
    transform-origin: left;
    animation: countdownProgress 4s linear forwards;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-gray);
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--color-red);
    transform: scale(1.1);
}

/* Quick Fix Floating Button */
.floating-fix-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    background-color: var(--color-red);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(214, 28, 44, 0.4);
    transition: var(--transition-smooth);
    border: 2px solid var(--color-white);
}

.floating-fix-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: var(--color-yellow);
    color: #000;
    box-shadow: 0 12px 30px rgba(255, 208, 0, 0.6);
}

.floating-fix-btn span {
    position: absolute;
    right: 70px;
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.floating-fix-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* Footer style */
.main-footer {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    padding: 50px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-contact-info {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contact-item {
    color: var(--color-yellow);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-contact-item:hover {
    color: var(--color-white);
    transform: scale(1.05);
}

.footer-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--color-yellow);
}

.footer-copy {
    font-size: 0.85rem;
    color: #64748B;
}

/* Keyframe Animations */
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes pulseText {
    from { opacity: 0.85; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes floatingGently {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes buttonPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(214, 28, 44, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 10px 25px rgba(214, 28, 44, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(214, 28, 44, 0.3); }
}

@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes countdownProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .dopamine-grid, .pillars-grid, .files-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .callout-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .dopamine-grid, .pillars-grid, .files-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-full {
        grid-column: span 1;
    }
    .form-wrapper {
        padding: 30px 20px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-section {
        padding: 80px 0 60px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .nav-menu {
        display: none;
    }
    .callout-box {
        padding: 30px 20px;
    }
    .giant-price {
        font-size: 4.5rem;
    }
    .footer-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ===================================================
 * 25 B2B INDUSTRIES CAROUSEL STYLING
 * =================================================== */
.industry-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    width: 200px;
    height: 120px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    user-select: none;
    -webkit-user-drag: none;
}

.industry-card:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0, 80, 157, 0.15);
}
.industry-icon-circle {
    display: none !important;
}

/* Custom glowing borders for industries - unused when hidden but kept for reference */
.border-okna { border-color: #00E5FF; }
.border-drzwi { border-color: #0088CC; }
.border-bramy { border-color: #FFD000; }
.border-oknadach { border-color: #E65C00; }
.border-budowlane { border-color: #D61C2C; }
.border-narzedzia { border-color: #8E9AAF; }
.border-zywnosc { border-color: #10B981; }
.border-drewno { border-color: #78350F; }
.border-metale { border-color: #64748B; }
.border-czesci { border-color: #3B82F6; }
.border-odziez { border-color: #F43F5E; }
.border-chemiadom { border-color: #06B6D4; }
.border-chemiafiz { border-color: #EC4899; }
.border-opakowania { border-color: #D97706; }
.border-meble { border-color: #A855F7; }
.border-zwierzeta { border-color: #10B981; }
.border-suplementy { border-color: #EC4899; }
.border-zabawki { border-color: #EAB308; }
.border-oswietlenie { border-color: #F59E0B; }
.border-tworzywa { border-color: #10B981; }
.border-elektronika { border-color: #6366F1; }
.border-fotowoltaika { border-color: #14B8A6; }
.border-kosmetyki { border-color: #EC4899; }
.border-logistyka { border-color: #3B82F6; }
.border-ai { border-color: #A855F7; }

.industry-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-align: center;
    width: 100%;
}

.industry-card:hover .industry-title {
    color: var(--color-primary);
}

/* ===================================================
 * B2B INDUSTRIES PHOTO CARD STYLING (places for photos)
 * =================================================== */
.industry-card.photo-card {
    position: relative;
    overflow: hidden;
    background: rgba(10, 25, 47, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 220px;
    height: 140px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically and horizontally */
}

.industry-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.industry-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.3) 0%, rgba(3, 10, 22, 0.92) 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.industry-card.photo-card:hover .industry-photo-bg {
    transform: scale(1.1);
}

.industry-card.photo-card:hover .industry-photo-overlay {
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.15) 0%, rgba(3, 10, 22, 0.8) 100%);
}

.industry-card.photo-card .industry-title {
    position: relative;
    z-index: 3;
    color: var(--color-white) !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    transition: var(--transition-smooth);
}

.industry-card.photo-card:hover .industry-title {
    color: var(--color-yellow) !important;
    transform: scale(1.05);
}

/* ===================================================
 * B2B DJ LAUNCHPAD MODAL STYLING
 * =================================================== */
.dj-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.dj-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.dj-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 10, 22, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.dj-modal-container {
    position: relative;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, #030812 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
    border-radius: var(--border-radius-md);
    width: 95%;
    max-width: 950px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    padding: 36px;
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dj-modal.active .dj-modal-container {
    transform: scale(1);
}

.dj-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.dj-modal-close:hover {
    color: var(--color-red);
    transform: scale(1.1);
}

.dj-modal-header h2 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.dj-modal-header p {
    color: #94A3B8;
    font-size: 0.95rem;
}

.dj-modal-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

/* MIDI Launchpad Console */
.midi-console {
    background-color: #030A16;
    border: 3px solid #1E293B;
    border-radius: var(--border-radius-sm);
    padding: 20px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

/* Individual MIDI Pads styling */
.midi-pad {
    background-color: rgba(30, 41, 59, 0.5);
    border: 2px solid #334155;
    border-radius: var(--border-radius-sm);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
    text-align: center;
    padding: 8px;
    gap: 6px;
}

.midi-pad-icon {
    font-size: 1.5rem;
}

.midi-pad-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94A3B8;
}

.midi-pad:hover {
    transform: translateY(-2px);
    background-color: rgba(30, 41, 59, 0.8);
    border-color: #475569;
}

/* Glowing LED varieties */
.midi-pad.pad-cyan { border-color: rgba(0, 229, 255, 0.4); }
.midi-pad.pad-cyan:hover, .midi-pad.pad-cyan.active {
    background-color: rgba(0, 229, 255, 0.15);
    border-color: #00E5FF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5), inset 0 0 10px rgba(0, 229, 255, 0.3);
}
.midi-pad.pad-cyan.active .midi-pad-text { color: #00E5FF; }

.midi-pad.pad-blue { border-color: rgba(0, 80, 157, 0.4); }
.midi-pad.pad-blue:hover, .midi-pad.pad-blue.active {
    background-color: rgba(0, 80, 157, 0.2);
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5), inset 0 0 10px rgba(59, 130, 246, 0.3);
}
.midi-pad.pad-blue.active .midi-pad-text { color: #3b82f6; }

.midi-pad.pad-green { border-color: rgba(27, 142, 90, 0.4); }
.midi-pad.pad-green:hover, .midi-pad.pad-green.active {
    background-color: rgba(27, 142, 90, 0.15);
    border-color: #10B981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5), inset 0 0 10px rgba(16, 185, 129, 0.3);
}
.midi-pad.pad-green.active .midi-pad-text { color: #10B981; }

.midi-pad.pad-orange { border-color: rgba(230, 92, 0, 0.4); }
.midi-pad.pad-orange:hover, .midi-pad.pad-orange.active {
    background-color: rgba(230, 92, 0, 0.15);
    border-color: #FF7A00;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.5), inset 0 0 10px rgba(255, 122, 0, 0.3);
}
.midi-pad.pad-orange.active .midi-pad-text { color: #FF7A00; }

.midi-pad.pad-violet { border-color: rgba(170, 51, 204, 0.4); }
.midi-pad.pad-violet:hover, .midi-pad.pad-violet.active {
    background-color: rgba(170, 51, 204, 0.15);
    border-color: #AA33CC;
    box-shadow: 0 0 15px rgba(170, 51, 204, 0.5), inset 0 0 10px rgba(170, 51, 204, 0.3);
}
.midi-pad.pad-violet.active .midi-pad-text { color: #AA33CC; }

.midi-pad.pad-yellow { border-color: rgba(255, 208, 0, 0.4); }
.midi-pad.pad-yellow:hover, .midi-pad.pad-yellow.active {
    background-color: rgba(255, 208, 0, 0.15);
    border-color: #FFD000;
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.5), inset 0 0 10px rgba(255, 208, 0, 0.3);
}
.midi-pad.pad-yellow.active .midi-pad-text { color: #FFD000; }

.midi-pad.pad-red { border-color: rgba(214, 28, 44, 0.4); }
.midi-pad.pad-red:hover, .midi-pad.pad-red.active {
    background-color: rgba(214, 28, 44, 0.15);
    border-color: #D61C2C;
    box-shadow: 0 0 15px rgba(214, 28, 44, 0.5), inset 0 0 10px rgba(214, 28, 44, 0.3);
}
.midi-pad.pad-red.active .midi-pad-text { color: #D61C2C; }

.midi-pad.pad-indigo { border-color: rgba(99, 102, 241, 0.4); }
.midi-pad.pad-indigo:hover, .midi-pad.pad-indigo.active {
    background-color: rgba(99, 102, 241, 0.15);
    border-color: #6366F1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5), inset 0 0 10px rgba(99, 102, 241, 0.3);
}
.midi-pad.pad-indigo.active .midi-pad-text { color: #6366F1; }

.midi-pad.pad-pink { border-color: rgba(236, 72, 153, 0.4); }
.midi-pad.pad-pink:hover, .midi-pad.pad-pink.active {
    background-color: rgba(236, 72, 153, 0.15);
    border-color: #EC4899;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5), inset 0 0 10px rgba(236, 72, 153, 0.3);
}
.midi-pad.pad-pink.active .midi-pad-text { color: #EC4899; }

.midi-pad.pad-teal { border-color: rgba(20, 184, 166, 0.4); }
.midi-pad.pad-teal:hover, .midi-pad.pad-teal.active {
    background-color: rgba(20, 184, 166, 0.15);
    border-color: #14B8A6;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.5), inset 0 0 10px rgba(20, 184, 166, 0.3);
}
.midi-pad.pad-teal.active .midi-pad-text { color: #14B8A6; }

.midi-pad.pad-emerald { border-color: rgba(16, 185, 129, 0.4); }
.midi-pad.pad-emerald:hover, .midi-pad.pad-emerald.active {
    background-color: rgba(16, 185, 129, 0.15);
    border-color: #10B981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5), inset 0 0 10px rgba(16, 185, 129, 0.3);
}
.midi-pad.pad-emerald.active .midi-pad-text { color: #10B981; }

.midi-pad.pad-amber { border-color: rgba(245, 158, 11, 0.4); }
.midi-pad.pad-amber:hover, .midi-pad.pad-amber.active {
    background-color: rgba(245, 158, 11, 0.15);
    border-color: #F59E0B;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5), inset 0 0 10px rgba(245, 158, 11, 0.3);
}
.midi-pad.pad-amber.active .midi-pad-text { color: #F59E0B; }

/* Physical push-down switch simulation */
.midi-pad:active, .midi-pad.active {
    transform: translateY(1px) scale(0.97);
}

.midi-side-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.midi-btn {
    flex-grow: 1;
    padding: 8px 16px;
    background-color: #1E293B;
    border: 1px solid #334155;
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.midi-btn:hover {
    background-color: #334155;
    border-color: #475569;
}

.midi-btn-play {
    border-left: 3px solid var(--color-accent-cyan);
}
.midi-btn-play:hover {
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.midi-btn-rand {
    border-left: 3px solid var(--color-yellow);
}
.midi-btn-rand:hover {
    box-shadow: 0 0 12px rgba(255, 208, 0, 0.3);
}

/* Launchpad Lead Form Container */
.launchpad-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.selected-topic-bar {
    background-color: rgba(255, 208, 0, 0.1);
    border-left: 4px solid var(--color-yellow);
    padding: 10px 16px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.selected-topic-bar span {
    font-size: 0.75rem;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-topic-bar strong {
    font-size: 1.1rem;
    color: var(--color-yellow);
    font-family: var(--font-heading);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group-midi {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-midi label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #CBD5E1;
}

.form-group-midi input[type="text"] {
    background-color: rgba(3, 10, 22, 0.6);
    border: 1px solid #334155;
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group-midi input[type="text"]:focus {
    border-color: var(--color-yellow);
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.2);
}

.contact-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-toggles {
    display: flex;
    background-color: #030A16;
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 2px;
}

.lp-toggle-btn {
    background: none;
    border: none;
    color: #94A3B8;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lp-toggle-btn.active {
    background-color: var(--color-yellow);
    color: #000;
}

.time-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.time-quick-tags span {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid #334155;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: #94A3B8;
}

.time-quick-tags span:hover {
    background-color: rgba(255, 208, 0, 0.1);
    border-color: var(--color-yellow);
    color: var(--color-yellow);
}

.time-quick-tags span.active {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: #000;
}

.lp-submit-btn {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    animation: none;
}

/* Dopamine click feedback */
.dopamine-card {
    cursor: pointer;
}

/* Responsiveness for Launchpad modal */
@media (max-width: 900px) {
    .dj-modal-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .dj-modal-container {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .midi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .time-quick-tags {
        gap: 4px;
    }
    .midi-pad {
        padding: 4px;
    }
    .midi-pad-icon {
        font-size: 1.2rem;
    }
    .midi-pad-text {
        font-size: 0.55rem;
    }
}

/* Dynamic Slide-Down B2B Support selector panel styling */
.model-support-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 229, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-inner {
    padding: 40px;
}

.panel-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    background: linear-gradient(90deg, #FFF 0%, var(--color-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.panel-subtitle {
    color: #94A3B8;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.panel-pad {
    background: rgba(30, 41, 59, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.panel-pad .pad-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.panel-pad .pad-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.panel-pad .pad-desc {
    font-size: 0.72rem;
    color: #94A3B8;
    line-height: 1.4;
}

.panel-pad:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
}

/* Category Hover / Glow states */
.panel-pad.pad-cyan:hover {
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}
.panel-pad.pad-blue:hover {
    border-color: #0088CC;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
}
.panel-pad.pad-green:hover {
    border-color: #1B8E5A;
    box-shadow: 0 0 15px rgba(27, 142, 90, 0.2);
}
.panel-pad.pad-orange:hover {
    border-color: #FF9E00;
    box-shadow: 0 0 15px rgba(255, 158, 0, 0.2);
}
.panel-pad.pad-yellow:hover {
    border-color: var(--color-yellow);
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.2);
}

/* Category Selected / Active states */
.panel-pad.pad-cyan.active {
    border-color: var(--color-accent-cyan);
    background: rgba(0, 229, 255, 0.08);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.35);
}
.panel-pad.pad-blue.active {
    border-color: #0088CC;
    background: rgba(0, 136, 204, 0.08);
    box-shadow: 0 0 25px rgba(0, 136, 204, 0.35);
}
.panel-pad.pad-green.active {
    border-color: #1B8E5A;
    background: rgba(27, 142, 90, 0.08);
    box-shadow: 0 0 25px rgba(27, 142, 90, 0.35);
}
.panel-pad.pad-orange.active {
    border-color: #FF9E00;
    background: rgba(255, 158, 0, 0.08);
    box-shadow: 0 0 25px rgba(255, 158, 0, 0.35);
}
.panel-pad.pad-yellow.active {
    border-color: var(--color-yellow);
    background: rgba(255, 208, 0, 0.08);
    box-shadow: 0 0 25px rgba(255, 208, 0, 0.35);
}

/* Form block in slider */
.panel-form-container {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 24px 30px;
}

.panel-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 20px;
    align-items: flex-end;
}

.panel-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.panel-form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.panel-form-group input {
    background: rgba(3, 10, 22, 0.7);
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 12px 16px;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.panel-form-group input:focus {
    border-color: var(--color-yellow);
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.2);
    outline: none;
}

.btn-panel-submit {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    width: auto;
    padding: 12px 24px;
    font-size: 0.85rem;
    height: 47px;
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.2);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .panel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .panel-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .btn-panel-submit {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .panel-inner {
        padding: 24px 16px;
    }
    .panel-form-grid {
        grid-template-columns: 1fr;
    }
}

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

/* ===================================================
 * 7. MOBILE HEADER NAV RESPONSIVENESS OVERRIDES
 * =================================================== */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-icon-svg {
        height: 38px;
    }
    
    .logo-brand-name {
        font-size: 1.2rem;
    }
    
    .logo-brand-sub {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }
    
    .lang-selector-wrapper {
        padding: 6px 10px;
    }
    
    .lang-globe {
        font-size: 0.8rem;
    }
    
    .lang-select {
        font-size: 0.8rem;
    }
    
    .main-header .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        gap: 8px;
    }
    
    .logo-brand-sub {
        display: none;
    }
    
    .logo-brand-name {
        font-size: 1.05rem;
        letter-spacing: 2px;
    }
    
    .logo-icon-svg {
        height: 32px;
    }
    
    /* Change "Maksymalizuj Zysk" button into a compact glowing circular icon button */
    .main-header .header-cta-btn {
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        min-width: 40px;
    }
    
    .main-header .header-cta-btn .btn-text {
        display: none !important;
    }
    
    .main-header .header-cta-btn .btn-icon {
        margin: 0 !important;
        font-size: 1.2rem;
        display: inline-block;
    }
    
    /* Hide the Globe icon text and just show globe + dropdown */
    .lang-selector-wrapper {
        padding: 6px 8px;
    }
}

@media (max-width: 380px) {
    .header-container {
        justify-content: space-between;
        gap: 4px;
    }
    
    .logo-brand-name {
        font-size: 0.95rem;
    }
    
    .logo-icon-svg {
        height: 28px;
    }
    
    .main-header .header-cta-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .main-header .header-cta-btn .btn-icon {
        font-size: 1.1rem;
    }
    
    .lang-selector-wrapper {
        display: none; /* Hide language selector on super narrow screens to save space */
    }
}

/* ===================================================
 * 8. INTERACTIVE CONTACT TILES (KAFELKI DLA FORMULARZA)
 * =================================================== */
.contact-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.contact-tile {
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius-sm);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    user-select: none;
}

.contact-tile .tile-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.contact-tile .tile-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.contact-tile .tile-desc {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    line-height: 1.4;
}

/* Hover and Active States */
.contact-tile:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.contact-tile.active {
    background: #EFF6FF;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-md);
}

.contact-tile.active .tile-icon {
    transform: scale(1.1);
}

.contact-tile.active::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    animation: successPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Scoped layout fixes to prevent bleed */
.conversion-section .form-wrapper {
    position: relative;
    z-index: 10;
}

/* Glowing Pulse Free Badge in Header */
.nav-free-badge {
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(214, 28, 44, 0.6);
    animation: badgePulse 1.5s infinite alternate;
}

@keyframes badgePulse {
    from { transform: scale(0.95); box-shadow: 0 0 5px rgba(214, 28, 44, 0.4); }
    to { transform: scale(1.05); box-shadow: 0 0 12px rgba(214, 28, 44, 0.8); }
}

/* Multi-line Red Submit Button */
.btn-red.btn-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
    padding: 12px 28px;
}

.btn-main-text {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-sub-text {
    font-size: 0.78rem;
    font-weight: 400;
    opacity: 0.85;
    text-transform: none;
    letter-spacing: 0;
}
