/* ============================================
   MK Dev — Style główne
   Aesthetic: Dark navy + niebieski akcent
   ============================================ */

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0d1424;
    --bg-card: #111a2e;
    --bg-card-hover: #15203a;
    --bg-elevated: #1a2440;
    --border: #1e2a48;
    --border-hover: #2a3a60;

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.2);
    --accent-glow-strong: rgba(59, 130, 246, 0.4);

    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;

    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-display);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo img, .logo svg {
    width: 38px;
    height: 38px;
}

.logo-text {
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-light);
}

.header-cta {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.45);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

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

.btn-outline:hover {
    background: var(--accent-glow);
}

.btn-block { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero h1 .accent {
    color: var(--accent-light);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
}

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

.hero-feature-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Hero visual */
.hero-visual {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mockup {
    position: relative;
    width: 100%;
    height: 460px;
}

/* Laptop mockup */
.mockup-laptop {
    position: absolute;
    width: 88%;
    height: 64%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a2440 0%, #0d1424 100%);
    border: 1px solid var(--border);
    border-radius: 12px 12px 4px 4px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-glow);
}

.mockup-laptop-screen {
    background: var(--bg-primary);
    border-radius: 6px;
    height: 100%;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.mockup-laptop-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.3;
}

.mockup-laptop-base {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 10px;
    background: linear-gradient(180deg, #1e2a48, #0a0e1a);
    border-radius: 0 0 8px 8px;
}

.dashboard-content {
    position: relative;
    z-index: 1;
    font-size: 0.7rem;
}

.dashboard-title {
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.75rem;
}

.dashboard-subtitle {
    color: var(--text-muted);
    font-size: 0.6rem;
    margin-bottom: 12px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

.dashboard-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px;
}

.dashboard-card-mini .label {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.dashboard-card-mini .value {
    font-size: 0.7rem;
    color: var(--text-primary);
    font-weight: 700;
}

.dashboard-chart {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px;
    height: 70px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 40px;
}

/* Phone mockup */
.mockup-phone {
    position: absolute;
    width: 110px;
    height: 220px;
    right: 0;
    bottom: 30px;
    background: linear-gradient(135deg, #1a2440, #0a0e1a);
    border: 2px solid var(--border);
    border-radius: 18px;
    padding: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-glow-strong);
    z-index: 2;
}

.mockup-phone-screen {
    background: var(--bg-primary);
    border-radius: 14px;
    height: 100%;
    padding: 10px 8px;
    overflow: hidden;
    position: relative;
}

.phone-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.6rem;
    margin-bottom: 8px;
}

.phone-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 6px solid var(--bg-elevated);
    border-top-color: var(--accent);
    border-right-color: var(--accent);
    margin: 8px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-light);
}

.phone-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
}

.phone-bar {
    height: 4px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
}

.phone-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}

.phone-bar:nth-child(1)::after { width: 75%; }
.phone-bar:nth-child(2)::after { width: 60%; }
.phone-bar:nth-child(3)::after { width: 85%; }

/* Floating icons */
.float-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 16px var(--accent-glow);
    animation: float 5s ease-in-out infinite;
}

.float-icon svg { width: 22px; height: 22px; }

.float-icon-1 { top: 8%; right: 6%; animation-delay: 0s; }
.float-icon-2 { top: 32%; left: 2%; animation-delay: 1s; }
.float-icon-3 { bottom: 18%; right: 8%; animation-delay: 2s; }
.float-icon-4 { bottom: 6%; left: 6%; animation-delay: 3s; }

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

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 80px 0; position: relative; }

.section-header {
    margin-bottom: 50px;
}

.section-header.centered { text-align: center; }

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-title .accent { color: var(--accent-light); }

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
}

.section-header.centered .section-subtitle { margin: 0 auto; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 24px var(--accent-glow);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent-light);
}

.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.825rem;
    line-height: 1.55;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.why-icon svg { width: 26px; height: 26px; }

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.55;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.cta-banner .btn-primary {
    background: #ffffff;
    color: var(--accent-hover);
}

.cta-banner .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.cta-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-contact-text {
    font-size: 0.95rem;
    font-weight: 600;
}

/* ============================================
   AUTH FORMS
   ============================================ */
.auth-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    position: relative;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

.auth-box {
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group { margin-bottom: 18px; }

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-error-box {
    margin-bottom: 20px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    color: #fca5a5;
    font-size: 0.9rem;
}

.form-error-box div { margin: 2px 0; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 24px 0;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-footer-link {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 20px;
}

.auth-footer-link a {
    color: var(--accent-light);
    font-weight: 600;
}

.auth-footer-link a:hover { text-decoration: underline; }

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard {
    padding: 60px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-header h1 {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.dashboard-greeting {
    color: var(--text-secondary);
    margin-top: 6px;
    font-size: 0.95rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--border-hover);
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    transition: var(--transition);
}

.ticket-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.ticket-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.ticket-meta {
    display: flex;
    gap: 16px;
    font-size: 0.825rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.ticket-desc {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-nowe { background: rgba(59, 130, 246, 0.15); color: var(--accent-light); }
.status-w_trakcie { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.status-zakonczone { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.status-anulowane { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--accent-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
}

.empty-state-icon svg { width: 32px; height: 32px; }

.empty-state h3 { margin-bottom: 8px; font-size: 1.2rem; }
.empty-state p { color: var(--text-secondary); margin-bottom: 24px; }

/* ============================================
   FLASH
   ============================================ */
.flash {
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.flash-success { background: rgba(16, 185, 129, 0.1); color: var(--success); border-bottom: 1px solid var(--success); }
.flash-error { background: rgba(239, 68, 68, 0.1); color: var(--danger); border-bottom: 1px solid var(--danger); }
.flash-info { background: rgba(59, 130, 246, 0.1); color: var(--accent-light); border-bottom: 1px solid var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent-light);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--accent-light); }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent-light);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

.footer-bottom-links a:hover { color: var(--accent-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1080px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { order: -1; min-height: 380px; }
    .hero-mockup { height: 380px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { grid-template-columns: 1fr; text-align: center; }
    .cta-banner .cta-text { text-align: center; }
    .cta-contact { justify-content: center; }
}

@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-toggle { display: flex; }

    section { padding: 60px 0; }
    .hero { padding: 40px 0 60px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .ticket-card { grid-template-columns: 1fr; }
    .cta-banner { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-features { gap: 20px; }
    .hero h1 { font-size: 2rem; }
}

/* ============================================
   PAGE HERO (podstrony: portfolio, cennik, legal)
   ============================================ */
.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 127, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 16px 0 12px;
    line-height: 1.1;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.badge-pill {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--accent-soft);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px -10px rgba(43, 127, 255, 0.2);
}

.portfolio-card-image {
    aspect-ratio: 16 / 10;
    background: var(--bg-elevated);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.portfolio-placeholder {
    background: linear-gradient(135deg, #1a2138 0%, #2b3554 100%);
    color: var(--accent-light);
}

.portfolio-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.portfolio-card-desc {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.portfolio-card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.tech-tag {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
}

.portfolio-card-link {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    align-self: flex-start;
}

.portfolio-card-link:hover {
    text-decoration: underline;
}

/* ============================================
   CTA BANNER (na końcu portfolio)
   ============================================ */
.cta-banner-section {
    padding: 60px 0 100px;
}

.cta-banner {
    background: linear-gradient(135deg, #4e9bff 0%, #2b7fff 50%, #0a52d6 100%);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: 0 20px 60px -20px rgba(43, 127, 255, 0.5);
}

.cta-banner h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.btn-light {
    background: #fff;
    color: var(--accent) !important;
    font-weight: 700;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    padding: 60px 0 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.pricing-card.pricing-featured {
    background: linear-gradient(180deg, rgba(43, 127, 255, 0.08), var(--bg-card));
    border: 2px solid var(--accent);
    transform: scale(1.03);
}

.pricing-card.pricing-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4e9bff, #2b7fff);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(43, 127, 255, 0.4);
}

.pricing-card-header {
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.pricing-tagline {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-price-from {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-price-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.5;
}

.pricing-features svg {
    color: var(--accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note {
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.pricing-note h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-note p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ============================================
   LEGAL (polityka prywatności, regulamin)
   ============================================ */
.legal-section {
    padding: 60px 0 100px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 32px 0 12px;
    letter-spacing: -0.01em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-light);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--bg-elevated);
    border: 1px solid var(--accent);
    border-radius: 16px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5);
    max-width: 720px;
    margin: 0 auto;
    animation: slideUp 0.4s ease-out;
}

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

.cookie-banner-inner {
    padding: 20px 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.cookie-banner-text p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--accent-light);
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    .cookie-banner-inner {
        padding: 16px;
    }
}

/* ============================================
   PORTFOLIO - badge'y na kartach
   ============================================ */
.portfolio-card-image {
    position: relative;
}

.portfolio-video-badge,
.portfolio-count-badge {
    position: absolute;
    background: rgba(10, 14, 26, 0.85);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.portfolio-video-badge {
    top: 10px;
    left: 10px;
    background: rgba(43, 127, 255, 0.9);
}

.portfolio-count-badge {
    top: 10px;
    right: 10px;
}

.portfolio-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.portfolio-card-price {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.95rem;
}

.portfolio-card-more {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.portfolio-card:hover .portfolio-card-more {
    color: var(--accent-light);
}

/* ============================================
   PROJECT MODAL
   ============================================ */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.project-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(6px);
}

.project-modal-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 40px auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    animation: modalIn 0.3s ease-out;
}

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

.project-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 14, 26, 0.7);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.project-modal-close:hover {
    background: var(--danger);
    transform: rotate(90deg);
}

/* Galeria miniatur w modalu */
.pm-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.pm-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    border: none;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-elevated);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.pm-thumb:hover {
    box-shadow: 0 8px 24px -6px rgba(43,127,255,0.4);
}

.pm-thumb:hover img {
    transform: scale(1.08);
}

.pm-thumb-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,14,26,0.5);
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.pm-thumb:hover .pm-thumb-zoom {
    opacity: 1;
}

.pm-videos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.pm-videos video {
    width: 100%;
    max-height: 420px;
    border-radius: 10px;
    background: #000;
}

.pm-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.pm-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(5, 8, 16, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
}

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

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.25s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.lightbox-close:hover {
    background: var(--danger);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

.lightbox-nav:hover {
    background: var(--accent);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .lightbox {
        position: fixed;
        inset: 0;
        z-index: 11000;
    }
    .lightbox-img {
        max-width: 94vw;
        max-height: 80dvh;
    }
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
        background: rgba(255,255,255,0.18);
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-counter { bottom: 16px; }
    /* Małe, równe miniatury - 3 w rzędzie na telefonie */
    .pm-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .pm-thumb {
        aspect-ratio: 1 / 1;
    }
    /* Na telefonie podpowiedz lupkę zawsze widoczną (brak hovera) */
    .pm-thumb-zoom {
        opacity: 1;
        background: rgba(10,14,26,0.25);
        font-size: 1.1rem;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 6px;
    }
    .pm-videos video {
        max-height: 240px;
    }
}

.pm-info {
    padding: 32px;
}

.pm-category {
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pm-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.pm-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.pm-tech-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.pm-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.pm-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.pm-price {
    color: var(--text-secondary);
}

.pm-price strong {
    color: var(--accent-light);
    font-size: 1.3rem;
    font-weight: 800;
}

@media (max-width: 640px) {
    .project-modal-content {
        margin: 0;
        border: none;
        border-radius: 0;
        max-width: 100%;
        width: 100%;
        max-height: none;
        min-height: 100dvh;
        animation: none;
    }
    .project-modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 10;
    }
    .pm-info { padding: 20px 16px 60px; }
    .pm-info h2 { font-size: 1.4rem; word-break: break-word; }
    .pm-desc { font-size: 0.95rem; }
}

/* ============================================
   SERVICE CARD - cena
   ============================================ */
.service-card-price {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ============================================
   SERVICE CARD - link "dowiedz się więcej"
   ============================================ */
.service-card-link {
    display: block;
    margin-top: 14px;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

.service-card:hover .service-card-link {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   SERVICE PAGE (podstrona usługi)
   ============================================ */
.service-back-link {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.service-back-link:hover {
    color: var(--accent-light);
}

.service-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43, 127, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    max-width: 760px;
}

.service-hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4e9bff, #2b7fff);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 12px 30px -8px rgba(43, 127, 255, 0.5);
}

.service-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.service-hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.service-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.service-hero-price {
    display: flex;
    flex-direction: column;
}

.service-hero-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-hero-price strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

.service-description {
    padding: 60px 0;
}

.service-description-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.service-description-box h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.service-description-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.02rem;
}

.service-related,
.service-others {
    padding: 60px 0;
}

.service-others {
    background: var(--bg-secondary);
}

/* ============================================
   PACKAGE PAGE (podstrona pakietu)
   ============================================ */
.package-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 1px solid var(--border);
}

.package-hero-featured {
    background: linear-gradient(180deg, rgba(43,127,255,0.08) 0%, var(--bg-secondary) 100%);
}

.package-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.package-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4e9bff, #2b7fff);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.package-hero-main h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.package-hero-tagline {
    font-size: 1.15rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.package-hero-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.02rem;
}

.package-hero-pricebox {
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 18px;
    padding: 28px;
    position: sticky;
    top: 90px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.package-price-from {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.package-price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.package-price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.package-delivery {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.package-pricebox-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 12px;
}

.package-content {
    padding: 60px 0;
}

.package-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.package-features-box,
.package-desc-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.package-features-box h2,
.package-desc-box h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.package-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
}

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

.package-features-list svg {
    color: var(--accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.package-desc-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.package-others {
    padding: 60px 0;
    background: var(--bg-secondary);
}

/* RESPONSIVE podstron */
@media (max-width: 860px) {
    .package-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .package-hero-pricebox {
        position: static;
    }
    .package-content-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT PAGE (O mnie)
   ============================================ */
.about-section {
    padding: 60px 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
}

.about-sidebar {
    position: sticky;
    top: 90px;
}

.about-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #1a2138 0%, #2b3554 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.about-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
}

.about-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: -0.02em;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.about-intro {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.02rem;
}

.about-text p {
    margin-bottom: 18px;
}

.about-mission {
    background: linear-gradient(135deg, rgba(43,127,255,0.1), rgba(78,155,255,0.05));
    border: 1px solid var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.about-mission-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.about-mission p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.about-skills {
    margin-top: 32px;
}

.about-skills h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.about-skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.skill-tag:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-sidebar {
        position: static;
        max-width: 360px;
    }
}
