/* ==========================================
   LAMICO - Producent Kabin Sypialnych
   Premium, Exclusive B2B Website - 2026
   ========================================== */

/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    /* Sky Tech Blue Palette */
    --primary-bg: #0A0E14;
    --secondary-bg: #12161E;
    --accent-bg: #1A1F2B;
    --heading-color: #FFFFFF;
    --text-color: #D1D5DB;
    --accent-color: #38BDF8;
    --accent-color-hover: #0EA5E9;
    --accent-glow: rgba(56, 189, 248, 0.4);
    --accent-subtle: #3D4451;
    --card-bg: rgba(26, 31, 43, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --form-bg: #FFFFFF;
    --form-text: #0F172A;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height: 1.7;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1400px;
    
    /* Effects */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-elevated: 0 12px 48px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--text-color);
    background: var(--primary-bg);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

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

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.section-light {
    background: #F8FAFC !important;
}

.section-light .section-title,
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
    color: #0F172A !important;
}

.section-light .section-intro,
.section-light p,
.section-light li {
    color: #475569 !important;
}

.section-light .usp-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.section-light .usp-card h3 {
    color: #0F172A;
}

.section-light .usp-card p {
    color: #64748B;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.8;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 20, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
    height: 45px;
    width: auto;
    /* Dostosowanie dla nowego logo na białym tle - pełne krycie */
    padding: 8px 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu > li {
    position: relative;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--heading-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-cta {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-bg);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 18px 52px;
    font-size: 1.1rem;
}

/* ==========================================
   Hero Section - Minimal Elegant Left-Aligned with Glass Panel
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 110px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.62) contrast(1.05) saturate(0.95);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 14, 20, 0.88) 0%,
        rgba(10, 14, 20, 0.58) 55%,
        rgba(10, 14, 20, 0.28) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 520px;
    margin-left: 0;
    padding: 0;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.hero-top {
    padding-top: 0;
}

.hero-title {
    color: var(--heading-color);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.92;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    max-width: 42ch;
}

.hero-bottom {
    padding-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.3;
    max-width: 16ch;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* ==========================================
   Hero – Subpage Modifiers (bez inline styles)
   ========================================== */

/* Zmniejszona wysokość hero dla podstron */
.hero--subpage {
    height: auto;
    min-height: 55vh;
}

/* Wyśrodkowany wariant hero (podstrony kategorii) */
.hero--centered .hero-content {
    text-align: center;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}

.hero--centered .hero-top {
    max-width: 720px;
    width: 100%;
}

.hero--centered .hero-title,
.hero--centered .hero-subtitle {
    text-align: center;
    max-width: 100%;
}

.hero--centered .hero-cta {
    justify-content: center;
}

/* ==========================================
   Subpage – Type Navigation (inne typy kabin)
   ========================================== */
.type-nav-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--glass-border);
}

.type-nav-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    opacity: 0.6;
    margin-bottom: 1rem;
}

/* ==========================================
   Vehicles Section
   ========================================== */
.vehicles-section {
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

.vehicles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

/* Premium Automotive Style - Kafelki pojazdów */
.vehicle-card {
    background: rgba(20, 24, 33, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.vehicle-card:hover {
    background: rgba(30, 35, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.vehicle-image {
    width: 100%;
    height: 240px;
    margin-bottom: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%) contrast(110%);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

.vehicle-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    padding: 1.5rem;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 5rem;
}

.vehicle-card::after {
    content: 'ZOBACZ';
    display: block;
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.vehicle-card:hover::after {
    color: #fff;
}

/* ==========================================
   About Section
   ========================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    position: relative;
    border: 1px solid var(--glass-border);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), transparent);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

/* ==========================================
   Features Grid
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--heading-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--glass-border);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-family: var(--font-main);
    font-weight: 600;
}

/* ==========================================
   USP Section
   ========================================== */
.usp-section {
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.usp-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.usp-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
}

.usp-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.usp-icon {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 400;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    font-family: var(--font-main);
    transition: transform 0.4s ease, background 0.4s ease;
}

/* usp-card with image instead of icon */
.usp-icon-img {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
}

.usp-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.usp-card:hover .usp-icon-img img {
    transform: scale(1.04);
}

.usp-card:hover .usp-icon {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================
   Comfort Section
   ========================================== */
.comfort-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.comfort-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 400;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    font-family: var(--font-main);
}

.benefit-item span:last-child {
    font-weight: 600;
    text-align: center;
    color: var(--heading-color);
}

/* ==========================================
   Kurnik Section
   ========================================== */
.kurnik-section {
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

.kurnik-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.kurnik-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ==========================================
   Spoilers Section
   ========================================== */
.spoilers-section {
    position: relative;
}

.spoilers-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}
.spoilers-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spoiler-benefit {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.spoiler-benefit:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.spoiler-icon {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 400;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    font-family: var(--font-main);
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery-section {
    background-color: var(--secondary-bg);
}

/* Slide caption overlay */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 14, 20, 0.85));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 2rem 1.5rem 1rem;
    pointer-events: none;
    letter-spacing: 0.01em;
}

/* Realizacje slider – full-width hero gallery */
@media (max-width: 768px) {
    .realizacje-slider .slider-slide img {
        height: 300px;
    }
}

.gallery-placeholder {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 6rem 2rem;
    border-radius: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-color);
    font-style: italic;
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.6;
}

/* ==========================================
   Process Section
   ========================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--heading-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading);
}

/* ==========================================
   Configurator Section
   ========================================== */
.configurator-section {
    background-color: var(--secondary-bg);
}

.configurator-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--form-bg);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    color: var(--form-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    color: #334155;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: none;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94A3B8;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-bottom: 0.75rem;
}

.checkbox-group label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
    color: var(--form-text);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    /* Przywróć natywny wygląd checkboxa – .form-group input ustawia appearance:none */
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: auto !important;
    /* Reset padding/tła/border nadanych przez .form-group input */
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    /* Stały rozmiar */
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.form-group select option {
    background: #FFFFFF;
    color: #334155;
}

.configurator-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info,
.contact-cta {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.contact-info:hover,
.contact-cta:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-info h3,
.contact-cta h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 400;
}

.contact-cta p {
    margin-bottom: 1.5rem;
}

.contact-cta .btn {
    margin-top: 1rem;
}

/* ==========================================
   SEO Section
   ========================================== */
.seo-section {
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.seo-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.seo-content h2 {
    margin-bottom: 2.5rem;
}

.seo-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--heading-color);
    font-weight: 600;
}

.seo-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 300;
    opacity: 0.8;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(180deg, var(--primary-bg) 0%, #05111F 100%);
    padding: 4rem 0 1rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
    /* Dostosowanie dla nowego logo na białym tle */
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
}

.footer-logo p {
    color: var(--text-color);
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--heading-color);
    transform: translateX(3px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-color);
}

.footer-credits {
    margin-top: 1.5rem;
    text-align: center;
}

.credits-mono {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.credits-mono:hover {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.credits-separator {
    color: rgba(59, 130, 246, 0.5);
    margin: 0 0.3rem;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-bg);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 1rem;
        gap: 0;
        align-items: stretch;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .vehicles-grid,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .hero {
        min-height: 600px;
        padding-top: 90px;
    }
    
    .hero-image {
        transform: scale(1) !important;
    }
    
    .hero-content {
        padding: 0;
        margin: 0 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .hero-bottom {
        padding-bottom: 40px;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        max-width: 14ch;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .vehicles-grid,
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid,
    .usp-grid,
    .benefits-list,
    .spoilers-benefits,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .configurator-form {
        padding: 2.5rem 1.5rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    /* Disable parallax on mobile for performance */
    .hero-image {
        position: absolute !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 36px;
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.25rem;
        align-items: start;
    }
    
    .stat-item {
        min-width: 0;
    }

    .hero-stats .stat-item:first-child {
        grid-column: 1 / -1;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
        white-space: nowrap;
        line-height: 1.05;
    }

    .hero-stats .stat-item:first-child .stat-number {
        font-size: clamp(1.9rem, 8.5vw, 2.3rem);
    }
    
    .stat-label {
        font-size: 0.7rem;
        max-width: 100%;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .vehicles-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Floating elements */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ==========================================
   HUB & TYPE SUBPAGES
   ========================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.breadcrumb-list li a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-list li a:hover {
    color: var(--heading-color);
    opacity: 1;
}

.breadcrumb-list li.active {
    color: var(--heading-color);
    opacity: 1;
}

.breadcrumb-separator {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Hub Hero */
.hub-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.hub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hub-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hub-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hub-hero-text .hub-description {
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.hub-hero-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-elevated);
    position: relative;
}

.hub-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Types Grid on Hub */
.types-section {
    position: relative;
}

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

.type-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.type-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.type-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.type-card:hover .type-card-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.type-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.type-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--heading-color);
    transition: var(--transition);
}

.type-card:hover .type-card-link {
    gap: 0.8rem;
}

/* Hub Info Sections (komfort, bezpieczeństwo, montaż) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.info-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.info-card ul li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-color);
    position: relative;
    padding-left: 1.2rem;
}

.info-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-subtle);
}

/* CTA Section on Hub/Type pages */
.cta-section {
    text-align: center;
}

.cta-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   TYPE SUBPAGE STYLES
   ========================================== */

.type-hero {
    padding: 160px 0 60px;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

.type-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.type-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.type-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.type-hero-content .type-lead {
    font-size: 1.1rem;
    line-height: 1.85;
    font-weight: 300;
    color: var(--text-color);
}

/* Content sections on type pages */
.type-content-section {
    position: relative;
}

.type-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.type-content-grid.reverse {
    direction: rtl;
}

.type-content-grid.reverse > * {
    direction: ltr;
}

.type-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    text-align: left;
}

.type-text h2::after {
    left: 0;
    transform: none;
}

.type-text p {
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 300;
}

/* Feature list on type pages */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li .check {
    color: var(--heading-color);
    font-weight: 600;
    min-width: 20px;
}

/* Specs table on type pages */
.specs-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.specs-panel h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.specs-table td {
    padding: 0.8rem 0;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    color: var(--text-color);
    font-weight: 400;
    opacity: 0.7;
    width: 45%;
}

.specs-table td:last-child {
    color: var(--heading-color);
    font-weight: 500;
}

/* Back to hub link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: 2rem;
}

.back-link:hover {
    color: var(--heading-color);
    gap: 0.8rem;
}

/* Other brands section on type pages */
.other-brands {
    margin-top: 2rem;
}

.other-brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.other-brand-link {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.other-brand-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--heading-color);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.other-brand-link.current {
    background: rgba(255, 255, 255, 0.1);
    color: var(--heading-color);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================
   HUB & TYPE Responsive
   ========================================== */
@media (max-width: 992px) {
    .hub-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hub-hero-image img {
        height: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .type-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .type-content-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .hub-hero {
        padding: 120px 0 60px;
    }
    
    .type-hero {
        padding: 120px 0 40px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 3rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ==========================================
   FLOATING SOCIAL MEDIA SIDEBAR
   ========================================== */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: none;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px 0 0 10px;
    transform: translateX(calc(100% - 56px));
    white-space: nowrap;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1000;
}

.social-sidebar-item:hover {
    transform: translateX(0);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.5);
}

.social-sidebar-item svg {
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
}

.social-sidebar-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-sidebar-item:hover span {
    opacity: 1;
}

.social-sidebar-item.social-facebook {
    background-color: #1877F2;
}

.social-sidebar-item.social-facebook:hover {
    background-color: #0C63D4;
}

.social-sidebar-item.social-instagram {
    background-color: #E4405F;
}

.social-sidebar-item.social-instagram:hover {
    background-color: #D02E4A;
}

.social-sidebar-item.social-whatsapp {
    background-color: #25D366;
}

.social-sidebar-item.social-whatsapp:hover {
    background-color: #1EBE54;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) contrast(1.05) saturate(0.9);
}

.contact-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141a24 0%, #1e2636 40%, #1a2030 100%);
    background-image:
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(14, 19, 28, 0.4) 0%,
        rgba(14, 19, 28, 0.7) 100%
    );
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 0;
    animation: fadeInUp 1s ease-out;
}

.contact-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* Główna sekcja kontaktowa - jaśniejsze tło */
.contact-main-section {
    background: linear-gradient(180deg, #131820 0%, #161d28 100%);
}

/* Contact Grid (2-kolumny: Zespół + Formularz) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Zespół - Lewa kolumna */
.contact-team-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-team-heading::after {
    display: none;
}

.contact-team-intro {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.85;
}

/* Person Card - Glassmorphism - JAŚNIEJSZE */
.person-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.person-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 16px 48px rgba(56, 189, 248, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.person-card-photo {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.person-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.person-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
}

.person-card-info {
    flex: 1;
    min-width: 0;
}

.person-department {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0.3rem;
}

.person-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-family: var(--font-heading);
}

.person-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.person-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
    padding: 0.35rem 0;
    cursor: pointer;
    position: relative;
}

.person-actions a:hover {
    color: var(--heading-color);
}

.person-actions a svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: var(--transition);
}

.person-actions a:hover svg {
    opacity: 1;
}

/* Telefon */
.person-phone {
    font-weight: 500;
    font-size: 1rem !important;
}

/* WhatsApp Button */
.person-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 10px;
    padding: 0.55rem 1rem !important;
    color: #25D366 !important;
    font-weight: 500;
    font-size: 0.85rem !important;
    transition: var(--transition);
}

.person-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.15);
}

.person-whatsapp svg {
    opacity: 1 !important;
    color: #25D366;
    fill: #25D366;
}

/* Email */
.person-email {
    word-break: break-all;
}

/* Kopiowanie - Tooltip */
.copy-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    pointer-events: none;
    white-space: nowrap;
    animation: fadeInUp 0.3s ease;
    z-index: 100;
}

/* Formularz - Prawa kolumna - JAŚNIEJSZE */
.contact-form-wrapper {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 120px;
    transition: var(--transition);
}

.contact-form-wrapper:hover {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.6), 0 8px 32px rgba(56, 189, 248, 0.15);
}

.contact-form-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--form-text);
}

.contact-form-heading::after {
    display: none;
}

.contact-form-intro {
    color: #1E293B;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Białe tło formularza - ciemny tekst */
.contact-form-wrapper label {
    color: var(--form-text);
}

.contact-form-wrapper .checkbox-group label {
    color: var(--form-text);
}

.contact-quote-form .form-group input,
.contact-quote-form .form-group select,
.contact-quote-form .form-group textarea {
    padding: 16px 20px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    color: #334155;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-quote-form .form-group select {
    background-image: none;
    cursor: pointer;
}

.contact-quote-form .form-group input:focus,
.contact-quote-form .form-group select:focus,
.contact-quote-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.contact-quote-form .form-group input::placeholder,
.contact-quote-form .form-group textarea::placeholder {
    color: #94A3B8;
}

.contact-quote-form .form-group select option {
    background: #FFFFFF;
    color: #334155;
}

.contact-quote-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
}

/* Główna sekcja kontaktu - jaśniejsza */
.contact-main-section {
    background: linear-gradient(180deg, var(--primary-bg) 0%, #12161E 100%);
}

/* Dealerzy zagraniczni - JAŚNIEJSZE */
.contact-dealers-section {
    background: linear-gradient(180deg, #1A202C 0%, #161B25 100%);
}

/* Sekcja kariery - jaśniejsza */
.contact-career-section {
    background: linear-gradient(180deg, #12161E 0%, #0E1218 100%);
}

.dealers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.dealer-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    text-align: center;
}

.dealer-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(56, 189, 248, 0.2), 0 8px 24px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.dealer-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.dealer-country {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.dealer-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--heading-color);
}

.dealer-company {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.dealer-address {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.dealer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.dealer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color);
    transition: var(--transition);
}

.dealer-contact a:hover {
    color: var(--heading-color);
}

.dealer-contact a svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.dealer-contact a:hover svg {
    opacity: 1;
}

/* Social Media, Lokalizacja & Mapa */
.contact-social-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #12161E 0%, #161B25 100%);
}

.contact-location-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.location-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.contact-location {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.location-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.location-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--heading-color);
}

.location-company {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.3rem !important;
    opacity: 0.85;
}

.location-address {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.75;
    line-height: 1.5;
    transition: var(--transition);
}

.location-address:hover {
    color: var(--heading-color);
    opacity: 1;
}

.contact-socials h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

/* Social Icons - STAŁE KOLORY BRANDOWE */
.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid;
    transition: all 0.3s ease;
}

.social-icon svg {
    transition: all 0.3s ease;
}

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

/* Facebook - stały kolor */
.social-facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.25);
}

.social-facebook:hover {
    background: rgba(24, 119, 242, 0.18);
    border-color: rgba(24, 119, 242, 0.4);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.2);
}

/* Instagram - stały kolor */
.social-instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
    border-color: rgba(228, 64, 95, 0.25);
}

.social-instagram:hover {
    background: rgba(228, 64, 95, 0.18);
    border-color: rgba(228, 64, 95, 0.4);
    box-shadow: 0 4px 20px rgba(228, 64, 95, 0.2);
}

/* LinkedIn - stały kolor */
.social-linkedin {
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.1);
    border-color: rgba(10, 102, 194, 0.25);
}

.social-linkedin:hover {
    background: rgba(10, 102, 194, 0.18);
    border-color: rgba(10, 102, 194, 0.4);
    box-shadow: 0 4px 20px rgba(10, 102, 194, 0.2);
}

.social-pinterest {
    color: #E60023;
    background: rgba(230, 0, 35, 0.1);
    border-color: rgba(230, 0, 35, 0.25);
}

.social-pinterest:hover {
    background: rgba(230, 0, 35, 0.18);
    border-color: rgba(230, 0, 35, 0.4);
    box-shadow: 0 4px 20px rgba(230, 0, 35, 0.2);
}

/* Mapa Google */
.location-map-col {
    min-height: 300px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.08), var(--shadow-soft);
    transition: var(--transition);
}

.map-wrapper:hover {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 12px 48px rgba(56, 189, 248, 0.12);
}

.map-wrapper iframe {
    display: block;
    filter: brightness(0.85) contrast(1.1) invert(0.92) hue-rotate(180deg);
}

/* Sekcja Kariera - JAŚNIEJSZE */
.contact-career-section {
    background: linear-gradient(180deg, #161d28 0%, #131820 100%);
}

.career-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 900px;
    margin: 0 auto;
    transition: var(--transition);
}

.career-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.career-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.career-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.career-title {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    margin-bottom: 0.3rem;
    color: var(--heading-color);
}

.career-subtitle {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 0 !important;
    opacity: 0.75;
}

.career-positions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.career-position-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--heading-color);
    transition: var(--transition);
}

.career-position-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.career-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.career-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.career-cta p {
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.career-cta p a {
    color: var(--heading-color);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
}

.career-cta p a:hover {
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

/* Przycisk "Wyślij CV" - GRANAT + BIAŁA CZCIONKA */
.career-cta .btn.btn-secondary {
    background: #1a2744;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.career-cta .btn.btn-secondary:hover {
    background: #243457;
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.4);
}

/* "Zadzwoń do nas" / btn-secondary w cta-box – kolor marki, widoczny na każdym tle */
.cta-box .btn-secondary {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: transparent;
}

.cta-box .btn-secondary:hover {
    background: rgba(56, 189, 248, 0.08);
    border-color: var(--accent-color-hover);
    color: var(--accent-color-hover);
}

/* ==========================================
   HOMEPAGE: FEATURE DROP SECTION (PIAGGIO)
   ========================================== */
.feature-sky-section {
    background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
    padding: 80px 0;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text {
    color: var(--form-text);
}

.feature-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.feature-text h2 {
    color: var(--form-text);
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.feature-subtitle {
    color: #475569;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.feature-specs {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.spec-value {
    color: #0F172A;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.spec-highlight {
    background: rgba(56, 189, 248, 0.12);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
}

.spec-highlight .spec-label {
    color: var(--accent-color-hover);
    font-weight: 600;
}

.spec-highlight .spec-value {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0 2.5rem 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #334155;
}

.feature-list svg {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-list span {
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.btn-dark {
    background: #1e293b;
    color: #ffffff;
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-dark:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.4);
}

/* ==========================================
   HOMEPAGE: ABOUT SECTIONS (Komfort, Trasy)
   ========================================== */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1.3;
}

.about-reverse .about-content {
    flex-direction: row-reverse;
}

/* ==========================================
   HOMEPAGE: PROCESS SECTION (Jak zamówić)
   ========================================== */
.step-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   CONTACT PAGE - Responsive
   ========================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        position: static;
    }
    
    .dealers-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .contact-location-map {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info-col {
        align-items: center;
        text-align: center;
    }
    
    .contact-location {
        flex-direction: column;
        align-items: center;
    }
    
    .location-details {
        text-align: center;
    }
    
    .contact-socials {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .location-map-col {
        min-height: 280px;
    }
    
    .career-card-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 35vh;
        padding-top: 90px;
    }
    
    .contact-hero-content {
        padding: 2rem 0;
    }
    
    .person-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .person-card-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .person-actions {
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .career-card {
        padding: 2rem 1.5rem;
    }
    
    .career-positions {
        flex-direction: column;
    }
    
    .career-position-item {
        justify-content: center;
    }
    
    .map-wrapper {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.6rem;
    }
    
    .contact-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .person-card-photo {
        width: 80px;
        height: 80px;
    }
    
    .person-name {
        font-size: 1.1rem;
    }
}

/* ==========================================
   HOMEPAGE - Responsive
   ========================================== */
@media (max-width: 992px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-image {
        order: -1;
    }
    
    .about-reverse .about-content {
        flex-direction: column;
    }
    
    .social-sidebar {
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        gap: 8px;
        right: 10px;
    }
    
    .social-sidebar-item {
        padding: 10px;
        transform: translateX(0) !important;
        border-radius: 50%;
        width: 48px;
        height: 48px;
    }
    
    .social-sidebar-item span {
        display: none;
    }
    
    .social-sidebar-item svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .feature-sky-section {
        padding: 60px 0;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .feature-subtitle {
        font-size: 1rem;
    }
    
    .feature-specs {
        padding: 1rem;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .spec-value {
        font-size: 1rem;
    }
    
    .step-image {
        width: 100px;
        height: 100px;
    }
    
    .form-white-panel {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================
   PHOTO SLIDER - Galeria zdjęć
   ========================================== */

.photo-gallery-section {
    background: var(--secondary-bg);
}

.photo-slider {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0e14;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-elevated);
    user-select: none;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0e14;
}

.slider-slide img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #0a0e14;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 14, 20, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
    line-height: 1;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

/* Expanded invisible hit area – easier to click */
.slider-btn::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
}

.slider-btn:hover {
    background: rgba(10, 14, 20, 0.95);
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.94);
}

.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }

.slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.slider-dot.active {
    background: #fff;
    width: 26px;
    border-radius: 4px;
}

.slider-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.65);
}

.slider-counter {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: var(--text-color);
    opacity: 0.6;
    letter-spacing: 0.04em;
    font-family: var(--font-main);
}

@media (max-width: 768px) {
    .slider-slide img {
        height: 260px;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .slider-prev { left: 0.5rem; }
    .slider-next { right: 0.5rem; }
}

@media (max-width: 480px) {
    .slider-slide img {
        height: 220px;
    }
}

/* ==========================================
   AKADEMIA LAMICO - BLOG/ARTICLES STYLES
   ========================================== */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--secondary-bg);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumbs a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

/* Article Hero */
.article-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, var(--primary-bg) 0%, #12161E 100%);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-meta span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.article-category {
    background: var(--accent-color);
    color: var(--primary-bg);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 900px;
}

/* Featured Image */
.article-featured-image {
    padding: 2rem 0;
    background: var(--secondary-bg);
}

.article-featured-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 1rem;
    font-style: italic;
}

/* Article Content */
.article-content {
    padding: 4rem 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    max-width: 1400px;
}

.article-body {
    max-width: 800px;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 2rem;
}

.article-body h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-body h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body h4 {
    color: var(--heading-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.article-body strong {
    color: var(--heading-color);
    font-weight: 600;
}

/* Article Checklist */
.article-checklist {
    background: rgba(56, 189, 248, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.checklist-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Article Highlight Box */
.article-highlight {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.article-highlight h3 {
    color: var(--accent-color);
    margin-top: 0;
}

.article-highlight ul {
    margin: 1.5rem 0;
}

.article-cta-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}

.article-cta-link:hover {
    color: var(--accent-color-hover);
    transform: translateX(5px);
}

/* Stats Boxes */
.article-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
}

.article-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.article-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-item h4 {
    color: var(--accent-color);
    margin-top: 0;
}

/* Warning Box */
.article-warning {
    display: flex;
    gap: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.article-warning svg {
    color: #fbbf24;
    flex-shrink: 0;
}

.article-warning strong {
    color: #fbbf24;
}

/* Summary Text */
.summary-text {
    font-size: 1.15rem;
    font-weight: 500;
    padding: 2rem;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.sidebar-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.sidebar-product:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.sidebar-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
}

/* Related Articles */
.related-articles {
    padding: 60px 0;
    background: var(--secondary-bg);
}

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

.article-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(56, 189, 248, 0.2);
}

.article-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.article-card-content {
    padding: 2rem;
}

.article-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-card-content h3 {
    color: var(--heading-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.article-card-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Akademia Intro Section */
.akademia-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.akademia-intro .section-title {
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.akademia-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 auto;
}

/* Akademia Homepage Grid */
.akademia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.akademia-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.akademia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(56, 189, 248, 0.15);
    border-color: var(--accent-color);
}

.akademia-card-link {
    text-decoration: none;
    display: block;
}

.akademia-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.akademia-card-content {
    padding: 2rem;
}

.akademia-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #64748B;
}

.akademia-card-content h3 {
    color: #0F172A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.akademia-card-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.akademia-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #F1F5F9;
    color: #475569;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.akademia-card-placeholder {
    border: 2px dashed #E2E8F0;
    background: #F8FAFC;
}

/* Responsive - Akademia */
@media (max-width: 992px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .articles-grid,
    .akademia-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 3rem 0 1.5rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-lead {
        font-size: 1.1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .article-stats {
        grid-template-columns: 1fr;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Article Inline Image */
.article-image-inline {
    margin: 2.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-image-inline img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image-inline .image-caption {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
}

/* ==========================================
   SILO Architecture - Dropdown Menu & Breadcrumbs
   ========================================== */

/* Dropdown Menu Navigation */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

/* Niewidzialna przestrzeń która utrzymuje hover */
.nav-item-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
    z-index: 9998;
    display: none;
}

.nav-item-dropdown:hover::before {
    display: block;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-trigger .nav-link {
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
    opacity: 0.7;
}

.dropdown-toggle:hover {
    color: var(--accent-color);
    opacity: 1;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
    display: block;
}

.nav-item-dropdown:hover .dropdown-toggle svg,
.nav-item-dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: rgba(18, 22, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    z-index: 9999;
    pointer-events: none;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-color);
    padding-left: 1.5rem;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--accent-color-hover);
    text-decoration: underline;
}

.breadcrumbs .separator {
    color: var(--accent-subtle);
}

.breadcrumbs .current {
    color: var(--text-color);
    font-weight: 500;
}

/* Category Hub Cards Hover Effects */
.category-hub-card {
    cursor: pointer;
}

.category-hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}

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

/* Mobile Responsive - Dropdown Menu */
@media (max-width: 992px) {
    .nav-menu > li,
    .nav-menu li {
        width: 100%;
    }

    .nav-link,
    .btn-cta {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        text-align: left;
        padding: 0.85rem 1rem;
    }

    .nav-item-dropdown {
        display: block;
        width: 100%;
        position: relative;
    }
    
    .dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }
    
    .dropdown-trigger .nav-link {
        flex: 1;
        margin: 0;
        padding-right: 0.5rem;
    }
    
    .dropdown-toggle {
        padding: 0.75rem;
        margin-left: auto;
        opacity: 1;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
        padding-left: 0.5rem;
        background: rgba(26, 31, 43, 0.6);
        backdrop-filter: blur(10px);
        border-left: 3px solid var(--accent-color);
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none;
        pointer-events: auto;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        max-height: 600px;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .dropdown-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        text-align: left;
    }
    
    .dropdown-link:hover,
    .dropdown-link.active {
        padding-left: 1.25rem;
        background: rgba(56, 189, 248, 0.1);
    }
    
    .breadcrumbs {
        font-size: 0.85rem;
    }
    
    .breadcrumbs-wrapper {
        padding: 0.75rem 0;
    }
}

@media (max-width: 768px) {
    .category-hub-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================
   PRODUCT SHOWCASE – Brand Hub Pages
   ========================================== */

.showcase-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--glass-border);
}

.showcase-section:last-of-type {
    border-bottom: none;
}

.showcase-section.alt-bg {
    background: var(--secondary-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-grid.reverse {
    direction: rtl;
}

.showcase-grid.reverse > * {
    direction: ltr;
}

.showcase-label {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.28rem 0.85rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.showcase-text h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.25;
}

.showcase-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.showcase-features li:last-child {
    border-bottom: none;
}

.showcase-features li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.showcase-slider-wrap .photo-slider .slider-slide img {
    height: 420px;
}

.showcase-slider-wrap .slider-counter {
    margin-top: 0.75rem;
}

@media (max-width: 1024px) {
    .showcase-grid {
        gap: 2.5rem;
    }
    .showcase-text h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .showcase-grid,
    .showcase-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .showcase-slider-wrap .photo-slider .slider-slide img {
        height: 280px;
    }

    .showcase-section {
        padding: 50px 0;
    }

    .showcase-text h2 {
        font-size: 1.4rem;
    }
}

/* ==========================================
   Feature Cards – Info section (dark theme)
   ========================================== */

.info-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.info-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.info-two-col-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.info-two-col-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

/* ==========================================
   Spec Cards – info-section feature list
   (unikalna nazwa żeby uniknąć konfliktu z .feature-card z hero)
   ========================================== */

.spec-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.spec-card:hover {
    background: rgba(56, 189, 248, 0.09);
    border-color: rgba(56, 189, 248, 0.35);
    transform: translateX(6px);
}

.spec-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.18) 0%, rgba(14, 165, 233, 0.10) 100%);
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 13px;
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.spec-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    display: block;
    line-height: 1.3;
}

.spec-card-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    display: block;
}

@media (max-width: 768px) {
    .info-two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .info-section {
        padding: 50px 0;
    }

    .spec-card:hover {
        transform: none;
    }
}

/* ==========================================
   SKLEP – Page Hero (shared subpage header)
   ========================================== */
.page-hero {
    position: relative;
    min-height: 38vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #0d1219 0%, #131c28 60%, #0f1720 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 60%, rgba(56, 189, 248, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    animation: fadeInUp 0.9s ease-out;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    margin-top: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb span:last-child {
    color: var(--accent-color);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   SKLEP – Notice Banner
   ========================================== */
.shop-notice-section {
    padding: 24px 0 0;
    background: var(--primary-bg);
}

.shop-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.shop-notice-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.shop-notice-content {
    font-size: 0.95rem;
    line-height: 1.6;
}

.shop-notice-content strong {
    color: var(--heading-color);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.shop-notice-content p {
    margin-bottom: 0;
    color: var(--text-color);
    opacity: 0.9;
}

/* ==========================================
   SKLEP – Products Section
   ========================================== */
.shop-products-section {
    background: var(--primary-bg);
    padding-top: 40px;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.shop-product-card {
    background: rgba(26, 31, 43, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.shop-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 16px 48px rgba(56, 189, 248, 0.12);
}

.shop-product-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #131c28 0%, #1a2435 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dla zdjęć okien: bez przycinania góry/dołu */
.shop-product-photo-window {
    object-fit: contain;
    padding: 10px;
    background: #0f172a;
}

.shop-product-image-placeholder {
    color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-product-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.shop-product-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.shop-product-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex: 1;
    opacity: 0.85;
}

.shop-product-btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* ==========================================
   SKLEP – Order Form Page
   ========================================== */
.shop-order-section {
    background: var(--primary-bg);
    padding-top: 40px;
}

.shop-order-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.shop-order-form-col {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.5rem;
}

.shop-order-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
}

.shop-order-notice svg {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.shop-order-notice p {
    margin-bottom: 0;
}

/* Shop Form */
.shop-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.shop-form .form-group label {
    color: #E5E7EB;
}

.shop-form .checkbox-group label {
    color: #E5E7EB;
}

.shop-form .optional {
    color: rgba(229, 231, 235, 0.75);
}

.shop-form .form-control {
    background: #FFFFFF;
    color: #0F172A;
    border: 1px solid #CBD5E1;
}

.form-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.form-section-label:first-child {
    margin-top: 0;
}

.required {
    color: #f87171;
    font-weight: 700;
}

.optional {
    color: var(--text-color);
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.7;
}

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

/* Error message in form */
.shop-form-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Success message */
.shop-success-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    gap: 1rem;
}

.shop-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}

.shop-success-msg h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 0;
}

.shop-success-msg p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 0;
}

/* Sidebar for order form */
.shop-order-sidebar .sidebar-widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.shop-order-sidebar .sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--heading-color);
}

.order-steps {
    padding-left: 1.25rem;
    margin: 0;
}

.order-steps li {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.order-steps li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.sidebar-contact-line:last-child {
    margin-bottom: 0;
}

.sidebar-contact-line svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.sidebar-contact-line a {
    color: var(--accent-color);
    transition: color 0.2s;
}

.sidebar-contact-line a:hover {
    color: var(--accent-color-hover);
}

.shop-order-sidebar .btn-small {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .shop-order-layout {
        grid-template-columns: 1fr;
    }

    .shop-order-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .shop-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.25rem;
    }

    .page-hero {
        min-height: 30vh;
    }

    .page-hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

/* ==========================================
   Cookie Consent
   ========================================== */
.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2500;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent__panel {
    max-width: 880px;
    margin: 0 auto;
    background: rgba(10, 14, 20, 0.94);
    border: 1px solid rgba(56, 189, 248, 0.28);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 16px;
    display: grid;
    gap: 10px;
}

.cookie-consent__title {
    margin: 0;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.cookie-consent__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.93rem;
    line-height: 1.5;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn--primary {
    background: var(--accent-color);
    color: #031B2A;
    border-color: rgba(56, 189, 248, 0.4);
}

.cookie-btn--primary:hover {
    background: var(--accent-color-hover);
    transform: translateY(-1px);
}

.cookie-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    border-color: rgba(255, 255, 255, 0.28);
}

.cookie-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #FFFFFF;
}

.cookie-settings-btn {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 2450;
    display: none;
    border: 1px solid rgba(56, 189, 248, 0.36);
    background: rgba(10, 14, 20, 0.86);
    color: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.cookie-settings-btn.is-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-consent__panel {
        border-radius: 12px;
        padding: 12px;
    }

    .cookie-consent__actions {
        justify-content: stretch;
        gap: 8px;
    }

    .cookie-btn {
        width: 100%;
    }
}
