/* ==========================================
   MOIRATH — COMPLETE STYLES (FINAL VERSION)
   Enhanced animations, mobile optimization & dashboard preview
========================================== */

/* ==========================================
   DESIGN TOKENS
========================================== */
:root {
    /* Colors */
    --cream: #FAF8F5;
    --cream-dark: #F0EDE6;
    --navy: #0A1628;
    --navy-600: #36475A;
    --gray: #6B7280;
    --gray-light: #F5F5F5;
    --gold: #C9A877;
    --gold-dark: #B39662;
    --gold-light: #E7DAC0;
    --purple: #9457FF;
    --purple-light: #F5F0FF;
    --green: #A6D62E;
    --green-light: #F6FBEA;
    --white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;
    --border: #EBEBEB;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: .25rem;
    --space-sm: .5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;

    /* Border radius */
    --radius-sm: .625rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(10,22,40,.05);
    --shadow-md: 0 10px 30px rgba(10,22,40,.07);
    --shadow-lg: 0 25px 60px rgba(10,22,40,.10);
    --shadow-gold: 0 20px 50px rgba(201,168,119,.20);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-base: 0.8s;
    --duration-slow: 1.2s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {

    overflow-x: hidden;


	    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy);
    background: var(--cream);
}


html, body {
    overflow-x: hidden; /* BLOKADA POZIOMEGO SCROLLA */
    max-width: 100vw;
    position: relative;
}
img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.section,
.container,
.container-narrow {
    max-width: 100%;
    overflow-x: hidden;
	 overflow-y: hidden;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

/* ==========================================
   SCROLL PROGRESS BAR
========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0,0,0,.03);
    z-index: 9999;
}
.white-block {
  width: 100%;
  height: 10px;
  background-color: #ffffff; /* Cały biały */

  /* Pozycjonowanie na stronie: */
  position: absolute; /* Użyj 'fixed', jeśli blok ma zostawać w miejscu podczas przewijania strony */
  top: 100px; /* Odległość od góry strony – dostosuj do swoich potrzeb */
  left: 0;

  /* KLUCZOWE: Ustawienie warstwy (wyżej niż tło body, które domyślnie ma auto / 0) */
  z-index: 1; 
}
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    width: 0%;
    transition: width 0.1s linear;
}

/* ==========================================
   LAYOUT
========================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

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

.section-alt {
    background: var(--cream-dark);
    padding: var(--space-3xl) 0;
}

/* ==========================================
   TYPOGRAPHY
========================================== */
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
}

.section-head-compact {
    margin-bottom: var(--space-lg);
}

.eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: var(--space-md);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--navy);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
}

.accent {
    font-style: italic;
    color: var(--gold-dark);
}

/* ==========================================
   ACCESSIBILITY
========================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    z-index: 2000;
    padding: var(--space-md) var(--space-xl);
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: top .2s var(--ease);
}

.skip-link:focus {
    top: var(--space-md);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ==========================================
   VISIBILITY HELPERS
========================================== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* ==========================================
   CURSOR (custom)
========================================== */
.cursor {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,119,.07) 0%, rgba(201,168,119,.02) 55%, transparent 75%);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity .4s ease, width .4s var(--ease), height .4s var(--ease);
}

.cursor.active {
    opacity: 1;
}

.cursor.hover {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,119,.11) 0%, rgba(201,168,119,.03) 55%, transparent 75%);
}

@media (max-width: 1024px), (pointer: coarse) {
    .cursor {
        display: none;
    }
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: .85rem 1.75rem;
    font-size: .95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all .25s var(--ease);
    white-space: nowrap;
    position: relative;
    z-index: 6;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform .25s var(--ease);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 2px solid rgba(10,22,40,.1);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.btn-lg {
    padding: 1.05rem 2.25rem;
    font-size: 1.02rem;
}

.btn-sm {
    padding: .6rem 1.2rem;
    font-size: .85rem;
}

.btn-full {
    width: 100%;
}

.btn-outline-plan {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(10,22,40,.1);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--navy);
    transition: all .25s var(--ease);
}

.btn-outline-plan:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.btn-outline-plan.solid {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-outline-plan.solid:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

/* ==========================================
   NAVIGATION
========================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,248,245,.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(10,22,40,.06);
    transition: all .3s var(--ease);
    margin-top: 3px;
}

nav.scrolled {
    background: rgba(250,248,245,.96);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
}

.nav-links {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-links a {
    font-size: .95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .25s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   HERO
========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--space-4xl) + 72px) 0 var(--space-4xl);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--white);
    border: 1px solid rgba(201,168,119,.25);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5.2vw, 3.6rem);
    margin-bottom: var(--space-lg);
    letter-spacing: -.01em;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: .8rem;
    color: var(--gray);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ==========================================
   HERO VISUAL - DASHBOARD PREVIEW
========================================== */
.hero-visual {
    position: relative;
    height: auto;
    min-height: 500px;
}

.dashboard-preview {
    position: relative;
    animation: float 7s ease-in-out infinite;
}

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

.dashboard-window {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(10,22,40,.08);
}

/* Window Header - macOS style */
.window-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    border-bottom: 1px solid rgba(10,22,40,.08);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #FF5F57;
    border: 1px solid #E0443E;
}

.dot-yellow {
    background: #FFBD2E;
    border: 1px solid #DEA123;
}

.dot-green {
    background: #28CA42;
    border: 1px solid #1AAB2D;
}

.window-title {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.window-spacer {
    flex: 1;
}

/* Window Content */
.window-content {
    padding: var(--space-2xl);
    background: var(--white);
}

/* Demo Calendar */
.demo-calendar {
    max-width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--cream-dark);
}

.calendar-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
}

.calendar-month {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    position: relative;
}

.time-slot.available {
    background: rgba(201,168,119,.08);
    border-color: rgba(201,168,119,.2);
}

.time-slot.available:hover {
    background: rgba(201,168,119,.15);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201,168,119,.2);
}

.time-slot.selected {
    background: var(--gold);
    border-color: var(--gold-dark);
    box-shadow: 0 6px 20px rgba(201,168,119,.3);
}

.time-slot.selected .slot-day,
.time-slot.selected .slot-time {
    color: var(--white);
}

.time-slot.booked {
    background: var(--gray-light);
    border-color: var(--border);
    opacity: 0.6;
    cursor: not-allowed;
}

.time-slot.booked .slot-day,
.time-slot.booked .slot-time {
    color: var(--gray);
}

.slot-day {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy-600);
}

.slot-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
}

/* Book Button */
.demo-book-btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    box-shadow: 0 4px 12px rgba(201,168,119,.2);
}

.demo-book-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,168,119,.3);
}

/* Notification Cards */
.notification-card {
    position: absolute;
    background: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(10,22,40,.12);
    display: flex;
    gap: var(--space-md);
    align-items: center;
    min-width: 240px;
    border: 1px solid rgba(10,22,40,.06);
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 40px;
    right: -40px;
    animation: floatA 6.5s ease-in-out infinite;
}

.card-2 {
    bottom: 60px;
    left: -60px;
    animation: floatB 7.5s ease-in-out infinite 1s;
}

@keyframes floatA {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
}

@keyframes floatB {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(-1deg); }
}

.notif-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.notif-success {
    background: linear-gradient(135deg, var(--green-light) 0%, rgba(166,214,46,.15) 100%);
    color: var(--green);
}

.notif-payment {
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(201,168,119,.15) 100%);
    color: var(--gold-dark);
}

.notif-content {
    flex: 1;
}

.notif-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.notif-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ==========================================
   HERO MOBILE CTA CARD
========================================== */
.hero-mobile-cta {
    margin-top: var(--space-xl);
}

.mobile-cta-card {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--cream) 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(201,168,119,.3);
    box-shadow: var(--shadow-md);
}

.mobile-cta-card h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--navy);
}

.cta-checklist {
    margin: var(--space-lg) auto;
    max-width: 320px;
}

.cta-checklist li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: .9rem;
    color: var(--navy-600);
    margin-bottom: var(--space-sm);
}

.cta-checklist li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--success);
}

.mobile-cta-card .btn {
    margin-top: var(--space-lg);
}

/* ==========================================
   SOCIAL PROOF
========================================== */
.social-proof {
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(10,22,40,.06);
    border-bottom: 1px solid rgba(10,22,40,.06);
}

.social-proof .container {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    justify-content: center;
}

.social-proof-label {
    font-size: .8rem;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
}

.chip-row {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: .5rem 1rem;
    background: var(--cream-dark);
    border-radius: var(--radius-full);
    font-size: .85rem;
    color: var(--navy-600);
    font-weight: 500;
}

.chip svg {
    width: 15px;
    height: 15px;
    color: var(--gold-dark);
}

/* ==========================================
   FEATURES / CARDS
========================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.card {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10,22,40,.05);
    transition: all .35s var(--ease);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,119,.2);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(201,168,119,.08);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.card p {
    font-size: .92rem;
    color: var(--gray);
}

/* ==========================================
   PROCESS TIMELINE
========================================== */
.timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 44px;
    bottom: 44px;
    width: 2px;
    background: linear-gradient(var(--gold-light), transparent);
}

.tl-item {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
}

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

.tl-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.tl-content h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.tl-content p {
    font-size: .92rem;
    color: var(--gray);
}

/* ==========================================
   PRICING
========================================== */
.plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto var(--space-2xl);
}

.plan {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(10,22,40,.05);
    transition: all .35s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan.popular {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: .5rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.plan-head {
    text-align: center;
    padding: var(--space-xl) var(--space-xl) var(--space-md);
    border-bottom: 1px solid var(--cream-dark);
}

.plan-name {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.plan-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold-dark);
}

.plan-price sup {
    font-size: 1.4rem;
    vertical-align: super;
}

.plan-tagline {
    font-size: .88rem;
    color: var(--gray);
    margin-top: var(--space-sm);
}

.plan-body {
    padding: var(--space-lg) var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-features-short {
    flex: 1;
    margin-bottom: var(--space-lg);
}

.plan-features-short li {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: .88rem;
    padding: var(--space-xs) 0;
    color: var(--navy-600);
}

.plan-features-short li svg {
    flex-shrink: 0;
    margin-top: 3px;
    width: 15px;
    height: 15px;
    color: var(--success);
}

.plan-features-short li.feature-all {
    margin-bottom: var(--space-sm);
}

.plan-features-short li strong {
    color: var(--navy);
}

.plan-note {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.pricing-footnote {
    display: flex;
    gap: var(--space-md);
    max-width: 780px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    background: var(--white);
    border: 1px solid rgba(201,168,119,.2);
    border-radius: var(--radius-lg);
    font-size: .9rem;
    color: var(--gray);
}

.pricing-footnote svg {
    flex-shrink: 0;
    color: var(--gold-dark);
    margin-top: 2px;
}

/* ==========================================
   COMPARISON TABLE - FULLY RESPONSIVE
========================================== */
.compare-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-xl) 0 var(--space-lg);
    padding: 0;
}

.compare-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1rem 2rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

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

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

.compare-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10,22,40,.2);
}

.compare-toggle-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.toggle-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--ease-bounce), background 0.3s ease;
    z-index: 1;
}

.toggle-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 3;
}

.compare-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.25);
}

.toggle-text {
    z-index: 1;
}

.inline-badge {
    display: inline-block;
    font-size: 0.7rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    margin-left: 0.4rem;
    font-weight: 700;
    vertical-align: middle;
}

.comparison-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: 
        max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s ease 0.2s,
        transform 0.6s ease 0.1s;
}

.comparison-wrapper.open {
    max-height: 5000px;
    opacity: 1;
    transform: translateY(0);
}

.table-scroll {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 100%;
}

.comparison-wrapper thead {
    background: rgba(245,245,245,.8);
    border-bottom: 2px solid var(--border);
}

.comparison-wrapper th {
    padding: var(--space-md);
    font-weight: 600;
    font-size: .85rem;
    text-align: left;
    color: var(--navy-600);
}

.comparison-wrapper th.feature-col {
    width: 50%;
}

.comparison-wrapper th.plan-col {
    width: 25%;
    text-align: center;
}

.comparison-wrapper tbody tr {
    border-bottom: 1px solid var(--border);
}

.comparison-wrapper tbody tr:last-child {
    border-bottom: none;
}

.comparison-wrapper tbody tr.category-row {
    background: rgba(245,245,245,.8);
}

.comparison-wrapper tbody tr.category-row td {
    font-weight: 700;
    font-size: .85rem;
    color: var(--navy);
    padding: var(--space-md) var(--space-lg);
}

.comparison-wrapper td {
    padding: var(--space-md);
    font-size: .85rem;
    color: var(--navy-600);
}

.comparison-wrapper td:not(.feature-col) {
    text-align: center;
}

.comparison-wrapper .plan-professional {
    background: var(--purple-light);
}

.check-icon {
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

.check-icon.green {
    color: var(--green);
}

.check-icon.purple {
    color: var(--purple);
}

.x-icon {
    width: 18px;
    height: 18px;
    margin: 0 auto;
    color: #CFCFCF;
}

/* MOBILE COMPARISON - CARD LAYOUT */
.comparison-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.comparison-category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.comparison-category-header {
    background: var(--cream-dark);
    padding: var(--space-md) var(--space-lg);
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comparison-category-header svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease);
}

.comparison-category-card.active .comparison-category-header svg {
    transform: rotate(180deg);
}

.comparison-category-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-md);
    
    /* WOLNIEJSZA ANIMACJA */
    transition: 
        max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.8s ease;
}

.comparison-category-card.active .comparison-category-body {
    max-height: 4000px; /* Zwiększ z 2000px */
    padding: var(--space-md);
}
.comparison-category-card.active {
    scroll-margin-top: 100px;
}

.comparison-category-card.active .comparison-category-body {
    max-height: 2000px;
}

.comparison-feature-item {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--cream-dark);
}

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

.comparison-feature-name {
    font-size: .85rem;
    color: var(--navy-600);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.comparison-feature-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.comparison-plan-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.comparison-plan-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    color: var(--gray);
}

.comparison-plan-value.professional {
    background: var(--purple-light);
}

.comparison-plan-value .check-icon,
.comparison-plan-value .x-icon {
    width: 18px;
    height: 18px;
}

/* ==========================================
   ADDONS
========================================== */
.addon {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.addon-check {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(10,22,40,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: all .2s var(--ease);
}

.addon.selected {
    border-color: var(--gold);
    background: rgba(201,168,119,.03);
    box-shadow: var(--shadow-gold);
}

.addon.selected .addon-check {
    opacity: 1;
    background: var(--gold);
    border-color: var(--gold);
}

.addon-check svg {
    width: 13px;
    height: 13px;
}

.addon-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-top: var(--space-md);
}

.addons-summary {
    max-width: 780px;
    margin: var(--space-2xl) auto 0;
    padding: var(--space-xl);
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
}

.addons-summary h4 {
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
}

.addons-summary li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: .9rem;
    color: var(--navy-600);
    border-bottom: 1px solid var(--cream-dark);
}

.addons-summary li:last-child {
    border: none;
}

.addons-total {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
    border-top: 2px solid var(--cream-dark);
    font-weight: 600;
}

.addons-total span:last-child {
    color: var(--gold-dark);
    font-size: 1.3rem;
    font-family: var(--font-serif);
}

/* ==========================================
   FAQ
========================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10,22,40,.05);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201,168,119,.2);
}

.faq-item.active {
    box-shadow: var(--shadow-sm);
    border-color: var(--gold-light);
}

.faq-q {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-q:hover {
    background: rgba(250,248,245,0.5);
}

.faq-q svg {
    flex-shrink: 0;
    color: var(--gold-dark);
    transition: transform 0.5s var(--ease-bounce);
    width: 18px;
    height: 18px;
}

.faq-item.active .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 var(--space-xl);
    transition: 
        max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease 0.1s,
        padding 0.6s ease;
}

.faq-item.active .faq-a {
    max-height: 400px;
    opacity: 1;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-a p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

.faq-a strong {
    color: var(--navy);
}

/* ==========================================
   CTA SECTION
========================================== */
.cta-section {
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.cta-note {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
    font-size: .85rem;
    color: var(--gray);
}

.cta-note span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta-note svg {
    color: var(--success);
    width: 15px;
    height: 15px;
}

/* ==========================================
   FOOTER
========================================== */
footer {
    background: var(--navy);
    color: var(--cream);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.footer-col p {
    font-size: .85rem;
    opacity: .65;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--cream);
}

.footer-col a {
    display: block;
    font-size: .85rem;
    opacity: .65;
    margin-bottom: var(--space-sm);
    transition: opacity .2s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(250,248,245,.1);
    text-align: center;
    font-size: .8rem;
    opacity: .55;
}

/* ==========================================
   BACK TO TOP
========================================== */
.back-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease);
    z-index: 400;
    box-shadow: var(--shadow-md);
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.back-top svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   OFF-CANVAS FORM
========================================== */
.off-canvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,.45);
    backdrop-filter: blur(3px);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--ease);
}

.off-canvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.off-canvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 460px;
    background: var(--white);
    z-index: 1950;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -10px 0 50px rgba(10,22,40,.18);
    overflow-y: auto;
}

.off-canvas.active {
    transform: translateX(0);
}

.oc-head {
    padding: var(--space-xl) var(--space-2xl);
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
}

.oc-head h2 {
    font-size: 1.5rem;
}

.oc-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--ease);
    color: var(--navy);
}

.oc-close:hover {
    background: var(--cream-dark);
    transform: rotate(90deg);
}

.oc-close svg {
    width: 18px;
    height: 18px;
}

.oc-body {
    padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.oc-summary {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.oc-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
    padding: var(--space-xs) 0;
    color: var(--navy-600);
}

.oc-summary-row.total {
    font-weight: 700;
    color: var(--navy);
    border-top: 1px solid rgba(10,22,40,.1);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    font-size: 1rem;
}

.oc-summary-row.total span:last-child {
    color: var(--gold-dark);
    font-family: var(--font-serif);
    font-size: 1.3rem;
}

.f-group {
    margin-bottom: var(--space-lg);
}

.f-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.f-group input,
.f-group select,
.f-group textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 2px solid rgba(10,22,40,.09);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .92rem;
    transition: border-color .2s;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.f-group small {
    display: block;
    margin-top: var(--space-xs);
    font-size: .76rem;
    color: var(--gray);
}

.f-error {
    display: block;
    color: var(--error);
    font-size: .78rem;
    margin-top: var(--space-xs);
}

.f-terms {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: .82rem;
    cursor: pointer;
    margin-bottom: var(--space-lg);
}

.f-terms input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--gold);
}

.f-terms a {
    text-decoration: underline;
    color: var(--gold-dark);
}

.f-note {
    text-align: center;
    font-size: .78rem;
    color: var(--gray);
    margin-top: var(--space-md);
}

.oc-success {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.oc-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.oc-success-icon svg {
    width: 30px;
    height: 30px;
}

/* ==========================================
   COOKIE CONSENT BANNER
========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--white);
    border-top: 1px solid var(--cream-dark);
    box-shadow: 0 -4px 20px rgba(10,22,40,.1);
    padding: var(--space-lg) var(--space-2xl);
}

.cookie-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.cookie-content p {
    font-size: .88rem;
    color: var(--navy-600);
}

.cookie-content a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

/* ==========================================
   REVEAL ANIMATIONS
========================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-base) var(--ease),
                transform var(--duration-base) var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   REDUCED MOTION
========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .cursor {
        display: none;
    }
}

/* ==========================================
   RESPONSIVE - TABLET
========================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        margin-top: var(--space-2xl);
        min-height: auto;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-preview {
        margin-top: var(--space-2xl);
    }
    
    .card-1,
    .card-2 {
        display: none;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
========================================== */
@media (max-width: 768px) {
    /* Spacing adjustments */
    :root {
        --space-4xl: 3rem;
        --space-5xl: 4rem;
        --font-sans: ;
		 --duration-base: 0.25s;  /* 4x szybciej */
        --duration-slow: 0.4s;   /* 3x szybciej */
    }
    
    .section {
        padding: var(--space-3xl) 0;
    }
    
    .section-alt {
        padding: var(--space-2xl) 0;
    }
    
    .container,
    .container-narrow {
        padding: 0 var(--space-lg);
    }
    
    .section-head {
        margin-bottom: var(--space-xl);
    }
    
    /* Navigation */
    .nav-toggle {
        display: none !important; /* Wymuś ukrycie */
    }
    
    /* LINKI - ZAWSZE WIDOCZNE */
    .nav-links {
        position: static !important; /* Nie fixed */
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: var(--space-md);
        background: transparent;
        box-shadow: none;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.85rem; /* Zmniejsz czcionkę */
    }
    
    /* DODAJ - jeśli linki się nie mieszczą */
    .nav-links a {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    

    /* Hero */
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* Dashboard preview mobile */
    .window-content {
        padding: var(--space-lg);
    }
    
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slot {
        padding: var(--space-sm);
    }
    
    .slot-day {
        font-size: 0.7rem;
    }
    
    .slot-time {
        font-size: 0.75rem;
    }
    
    /* Grid */
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Off-canvas */
    .off-canvas {
        max-width: 100%;
    }
    
    /* Pricing */
    .plan-price {
        font-size: 2.5rem;
    }
    
    .plan-badge {
        font-size: .75rem;
        padding: .45rem 1.2rem;
    }
    
    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Comparison */
    .compare-toggle-btn {
        padding: .9rem 1.3rem;
        font-size: .92rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .toggle-icon {
        width: 28px;
        height: 28px;
    }
    
    .toggle-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .inline-badge {
        margin-left: 0;
        margin-top: 0.3rem;
    }
    
    .compare-toggle-wrapper {
        margin: var(--space-lg) 0;
    }
    
    /* FAQ */
    .faq-q {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.95rem;
        color: #0A1628;
    }
    
    .faq-a {
        padding: 0 var(--space-lg);
    }
    
    .faq-item.active .faq-a {
        padding: 0 var(--space-lg) var(--space-md);
    }
    
    /* Timeline */
    .timeline::before {
        left: 18px;
    }
    
    .tl-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .tl-item {
        gap: var(--space-md);
    }


	    [data-reveal] {
        transition: opacity 0.3s ease, transform 0.3s ease !important;
    }
    
    /* FAQ - szybsze */
    .faq-a {
        transition: 
            max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important,
            opacity 0.25s ease !important,
            padding 0.35s ease !important;
    }
    
    /* COMPARISON - szybsze */
    .comparison-category-body {
        transition: 
            max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important,
            padding 0.4s ease !important;
    }

}

@media print {
    nav,
    .back-top,
    footer,
    .cursor,
    .off-canvas,
    .off-canvas-overlay,
    .cookie-banner,
    .scroll-progress {
        display: none !important;
    }
}


/* ==========================================
   CUSTOM SELECT (MOBILE-FRIENDLY)
========================================== */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-wrapper select {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.2rem; /* Więcej miejsca na strzałkę */
    border: 2px solid rgba(10,22,40,.09);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    background-image: none; /* Usuń default tło */
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--navy);
    cursor: pointer;
    
    /* KLUCZOWE - UKRYJ DOMYŚLNĄ STRZAŁKĘ */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* iOS Safari fix */
.custom-select-wrapper select::-ms-expand {
    display: none; /* IE/Edge */
}

.custom-select-wrapper select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,119,0.15);
}

/* PLACEHOLDER (pierwsza opcja) */
.custom-select-wrapper select option:first-child {
    color: var(--gray);
}

/* CUSTOM STRZAŁKA */
.select-arrow {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gold-dark);
    pointer-events: none; /* NIE blokuj kliknięć */
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ROTACJA przy focus */
.custom-select-wrapper select:focus ~ .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--gold);
}

/* HOVER effect */
.custom-select-wrapper:hover select {
    border-color: var(--gold-light);
}

.custom-select-wrapper:hover .select-arrow {
    color: var(--gold);
}

/* MOBILE - większy touch target */
@media (max-width: 768px) {
    .custom-select-wrapper select {
        padding: 1.1rem 3.5rem 1.1rem 1.2rem;
        font-size: 1rem; /* iOS nie zoom'uje przy 16px */
    }
    
    .select-arrow {
        width: 22px;
        height: 22px;
        right: 1rem;
    }
}

/* EMOJI support fix (niektóre fonty) */
.custom-select-wrapper select option {
    font-family: var(--font-sans), "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

/* ==========================================
   MOBILE NAVIGATION FIX - TYLKO LOGO + CTA
========================================== */
@media (max-width: 768px) {
    /* UKRYJ LINKI CAŁKOWICIE */
    .nav-links {
        display: none !important;
    }
    
    /* NAVBAR - flexbox dla logo + button */
    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-md) var(--space-lg);
    }
    
    /* LOGO - po lewej */
    .logo {
        font-size: 1.25rem;
    }
    
    /* PRZYCISK CTA - po prawej */
    .nav-actions {
        gap: 0; /* usuń gap bo tylko jeden element */
    }
    
    #navCta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* ==========================================
   COMPARISON TABLE - MOBILE FIX
========================================== */
/* style.css - ZAMIEŃ OD LINII ~1850 */

@media (max-width: 768px) {
    .comparison-category-card.active {
        scroll-margin-top: 100px; /* ✅ ZOSTAJE */
    }
    
    .comparison-category-body {
        max-height: 0;
        overflow: hidden; /* ⚠️ ZMIEŃ z visible na hidden */
        padding: 0 var(--space-md);
        
        /* WOLNIEJSZA ANIMACJA */
        transition: 
            max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
            padding 0.8s ease;
    }
    
    .comparison-category-card.active .comparison-category-body {
        max-height: 8000px; /* ⚠️ ZWIĘKSZ Z 4000px */
        padding: var(--space-md);
        overflow: visible; /* ✅ DOPIERO TERAZ */
    }
    
    /* ⚠️ DODAJ - ochrona przed zamknięciem */
    .comparison-category-body * {
        pointer-events: auto; /* content działa normalnie */
    }
    
    /* ⚠️ DODAJ - tylko header może toggle */
    .comparison-category-header {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation; /* prevent double-tap zoom */
    }
}