/* ==========================================================================
   SYSTEM PROJEKTOWY: PRZYJAZNY, MIĘKKI & MINIMALISTYCZNY (MIGRUJEMY.PL)
   ========================================================================== */

:root {
    /* Paleta kolorów (Żółty, Granat, Szary, Pomarańczowy jako akcent) */
    --bg-yellow: #ffcc00;          /* Ciepły, nasycony żółty jako główny kolor tła hero */
    --bg-light: #f3f4f6;           /* Miękki, jasnoszary */
    --bg-section: #ffffff;         /* Biel dla kontrastujących sekcji */
    --bg-card: #ffffff;            /* Białe tła kart */
    --bg-card-hover: #f9fafb;      /* Lekka szarość na hover */
    
    --primary: #111827;            /* Głęboki granat/czerń dla tekstu i grubych obramowań */
    --primary-light: #1f2937;
    --primary-glow: rgba(17, 24, 39, 0.05);
    
    --accent: #ff7a00;             /* Żywy pomarańczowy jako główny kolor akcentowy */
    --accent-light: #ff9130;
    --accent-glow: rgba(255, 122, 0, 0.1);
    
    --border-color: #111827;       /* Charakterystyczne, grube czarne ramki dla neo-brutalizmu */
    --border-light: rgba(17, 24, 39, 0.08);
    
    /* Kolory tekstów */
    --text-navy: #111827;          /* Głęboki granat */
    --text-body: #1f2937;          /* Ciemny grafit */
    --text-muted: #4b5563;         /* Stonowany szary */
    
    /* Zaokrąglenia i efekty */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typografia - Czysta, bardzo czytelna i geometryczna */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset stylów */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================================
   TYPOGRAFIA & NAGŁÓWKI (BOLD & SHARP)
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-navy);
    font-weight: 800; /* Bardzo gruba, wyrazista czcionka */
    line-height: 1.2;
}

p {
    font-weight: 500;
    color: var(--text-body);
}

.text-gradient {
    color: var(--text-navy);
}

.text-gradient-orange {
    color: var(--accent);
}

.dot {
    color: var(--accent);
}

/* ==========================================================================
   STRUKTURA & UKŁAD SEKCJI
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 95px 0;
    position: relative;
    background-color: var(--bg-section);
}

/* Przeplatanie tła sekcji */
section:nth-of-type(even) {
    background-color: var(--bg-light);
}

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

/* Miękkie poświaty wyciszamy, na rzecz zdecydowanej grafiki */
.glow-bg {
    display: none;
}

/* ==========================================================================
   PRZYCISKI (BUTTONS) - NEO-BRUTALISTYCZNE, GRUBE KRAWĘDZIE I PŁASKIE CIENIE
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--primary);
    background-color: #ffffff;
    color: var(--primary);
    box-shadow: 3px 3px 0px var(--primary); /* Płaski, komiksowy cień */
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.88rem;
    box-shadow: 2px 2px 0px var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 3px 3px 0px var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--primary);
}

.btn-secondary {
    background-color: var(--bg-yellow);
    color: var(--primary);
    box-shadow: 3px 3px 0px var(--primary);
}

.btn-secondary:hover {
    background-color: #ffffff;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--primary);
}

.btn-tertiary {
    background: transparent;
    color: var(--primary);
    border: none;
    box-shadow: none;
    padding: 0 10px;
}

.btn-tertiary:hover {
    color: var(--accent);
    transform: translateX(4px);
}

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

/* ==========================================================================
   NAWIGACJA (HEADER)
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-navy);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* ==========================================================================
   SEKCJA HERO (EKRAN STARTOWY) - BOLD YELLOW BACKGROUND & BLACK BORDERS
   ========================================================================== */

.hero-section {
    padding-top: 150px;
    padding-bottom: 95px;
    background-color: var(--bg-yellow);
    border-bottom: 2px solid var(--primary);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.friendly-badge {
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary);
    background-color: rgba(17, 24, 39, 0.06);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    border: 2px solid var(--primary);
}

.friendly-badge.orange-badge {
    color: #ffffff;
    background-color: var(--accent);
    border-color: var(--primary);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.65;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 6px 6px 0px var(--primary);
    border: 2.5px solid var(--primary);
    background-color: #ffffff;
}

/* Pływające karty */
.visual-card {
    position: absolute;
    background: #ffffff;
    border: 2.5px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 4px 4px 0px var(--primary);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: -15px;
    left: -25px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: -15px;
    right: -25px;
    animation-delay: 3s;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.floating-card-1 .card-num {
    color: var(--primary);
}

.card-txt {
    font-size: 0.78rem;
    color: var(--text-navy);
    font-weight: 700;
}

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

/* ==========================================================================
   SEKCJA HISTORII KLIENTÓW (CASE STUDIES)
   ========================================================================== */

.cases-section {
    z-index: 1;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.08rem;
    color: var(--text-body);
}

.cases-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ==========================================================================
   INFO BAR (BELKA Z INFORMACJAMI) - ORANGE BACKGROUND
   ========================================================================== */
.info-bar {
    background-color: var(--accent);
    border-bottom: 2px solid var(--primary);
    padding: 14px 24px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.98rem;
    text-align: center;
    position: relative;
    z-index: 5;
    line-height: 1.4;
}

.info-bar a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 800;
    transition: var(--transition);
}

.info-bar a:hover {
    color: #ffffff;
}

/* ==========================================================================
   PORTFOLIO SLIDER (PRZEWIJANY SLIDER STRON) - ORANGE BACKGROUND
   ========================================================================== */
/* ==========================================================================
   PORTFOLIO SLIDER (PRZEWIJANY SLIDER STRON) - TURQUOISE BLUE BACKGROUND
   ========================================================================== */
.portfolio-slider-section {
    background-color: #4dd0f5; /* Cudowny, jasnoturkusowy kolor dokładnie jak w przykładzie! */
    border-bottom: 2.5px solid var(--primary);
    padding: 85px 0;
    overflow: hidden;
    position: relative;
}

.portfolio-slider-section .section-title {
    color: var(--primary);
    text-shadow: none;
    margin-bottom: 8px;
}

.portfolio-slider-section .section-desc {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-container {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 20px 24px 40px 24px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
    -webkit-overflow-scrolling: touch;
    align-items: center;
}

.slider-container::-webkit-scrollbar {
    height: 8px;
}

.slider-container::-webkit-scrollbar-track {
    background: rgba(17, 24, 39, 0.05);
    border-radius: 99px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 99px;
}

/* Mockup Browser Card (Desktop mockup) */
.mockup-card {
    flex: 0 0 480px; /* Szerszy pulpit dla lepszej czytelności, dokładnie jak w przykładzie */
    background-color: #ffffff;
    border: 3px solid var(--primary);
    border-radius: 20px;
    box-shadow: 6px 6px 0px var(--primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 320px; /* Wyższa i bardziej proporcjonalna karta */
    transition: var(--transition);
}

.mockup-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--primary);
}

.mockup-header {
    background-color: #f3f4f6;
    border-bottom: 3px solid var(--primary);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

.browser-address {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 2px solid var(--primary);
    background-color: #ffffff;
    border-radius: 6px;
    padding: 2px 16px;
    width: 220px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mockup-body {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0; /* Usunięto padding dla grafik na całą szerokość */
}

.mockup-body.has-img {
    padding: 0 !important;
    background-color: #f9fafb;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Mockup Mobile Card (Sleek Phone mockup shell) */
.mockup-card.mockup-mobile {
    flex: 0 0 210px; /* Wąski smartfon pionowy dokładnie jak w przykładzie */
    height: 320px;
    background-color: #ffffff;
    border: 3px solid var(--primary);
    border-radius: 20px;
    box-shadow: 6px 6px 0px var(--primary);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mockup-card.mockup-mobile:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--primary);
}

.mockup-card.mockup-mobile .mockup-body {
    margin: 0; /* Wcięcie usunięte - grafika na całą szerokość smartfona */
    border: none;
    border-radius: 0;
    overflow: hidden;
    flex-grow: 1;
    background-color: #ffffff;
}

@media (max-width: 576px) {
    .mockup-card {
        flex: 0 0 290px;
        height: 240px;
        border-radius: 16px;
    }
    .mockup-card.mockup-mobile {
        flex: 0 0 160px;
        height: 240px;
        border-radius: 16px;
    }
    .mockup-card.mockup-mobile .mockup-body {
        margin: 0;
        border-radius: 0;
    }
}

.case-card {
    background-color: var(--bg-card);
    border: 2.5px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: start;
    transition: var(--transition);
    box-shadow: 6px 6px 0px var(--primary);
    position: relative;
}

.case-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--primary);
}

/* Wyróżniony przypadek */
.case-card.featured {
    border: 2.5px solid var(--primary);
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 122, 0, 0.02) 100%);
    box-shadow: 6px 6px 0px var(--accent);
}

.case-card.featured:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--accent);
}

.case-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.case-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.case-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background-color: rgba(27, 42, 74, 0.04);
    padding: 4px 12px;
    border-radius: 99px;
}

.case-tag.highlight {
    color: var(--accent);
    background-color: rgba(255, 122, 0, 0.06);
}

.case-status {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.case-status.success {
    color: #0d9488;
}

.case-status.warning {
    color: var(--accent);
}

.case-title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-navy);
    margin: 0;
}

.case-desc {
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}

.case-solution {
    font-size: 0.94rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.case-solution strong {
    color: var(--primary);
}

.case-gain {
    background-color: rgba(27, 42, 74, 0.03);
    border-left: 4px solid var(--primary);
    padding: 12px 20px;
    margin: 4px 0 0 0;
}

.case-card.featured .case-gain {
    background-color: rgba(255, 122, 0, 0.03);
    border-left-color: var(--accent);
}

.gain-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.gain-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
}

.case-card.featured .gain-value {
    color: var(--accent);
}

.author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    overflow: hidden;
    box-shadow: 3px 3px 0px var(--accent);
    transition: var(--transition);
}

.case-card:hover .author-avatar {
    transform: scale(1.05);
}

.case-card.featured .author-avatar {
    box-shadow: 3px 3px 0px var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 4px;
    line-height: 1.2;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .case-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
    }
    
    .case-profile {
        position: static;
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: center;
    }
    
    .author-avatar {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
    }
    
    .author-info {
        align-items: flex-start;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ==========================================================================
   SEKCJA EMOCJONALNA (UWOLNIENIE OD STRESU)
   ========================================================================== */

.empathy-section {
    background-color: var(--bg-light);
    border-bottom: 2px solid var(--primary);
}

.empathy-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    background-color: #ffffff;
    border: 2.5px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 64px;
    box-shadow: 6px 6px 0px var(--primary);
    position: relative;
    overflow: hidden;
}
.empathy-content {
    display: flex;
    align-items: center;
}

.empathy-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.15;
}

/* Formularz kontaktowy */
.empathy-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.form-container {
    background-color: #ffffff;
    border: 2.5px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 40px;
    width: 100%;
    box-shadow: 4px 4px 0px var(--primary);
}

.form-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
    font-weight: 600;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-navy);
}

.form-input, .form-textarea {
    background-color: #ffffff;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-navy);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    font-weight: 600;
}

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

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    font-size: 0.82rem;
    color: var(--text-body);
    cursor: pointer;
    line-height: 1.4;
    user-select: none;
}

/* Stan sukcesu */
.form-success-message {
    text-align: center;
    padding: 30px 10px;
}

.success-icon {
    width: 58px;
    height: 58px;
    background-color: rgba(13, 148, 136, 0.08);
    color: #0d9488;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    border: 2px solid rgba(13, 148, 136, 0.2);
}

.form-success-message h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.form-success-message p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   SEKCJA O NAS / NASZA HISTORIA
   ========================================================================== */

.about-section {
    background-color: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: start;
}

.story-rich-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}

.story-rich-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
}

.story-highlight {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
    border-left: 4px solid var(--accent);
    padding-left: 24px;
}

..personal-case-box {
    background-color: var(--bg-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 3px 3px 0px var(--primary);
}

.case-box-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
}

.stat-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 700;
}

/* Wizualizacja Chaos vs Spokój */
.comparison-visual-card {
    background-color: #ffffff;
    border: 2.5px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 6px 6px 0px var(--primary);
}

.comparison-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.comparison-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-weight: 600;
}

.interactive-schema {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.schema-card {
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
}

.schema-before {
    background-color: rgba(239, 68, 68, 0.01);
    border: 2px dashed var(--primary);
}

.schema-after {
    background-color: rgba(13, 148, 136, 0.01);
    border: 2.5px solid var(--primary);
}

.schema-tag {
    position: absolute;
    top: -12px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 2px 14px;
    border-radius: 99px;
    border: 2px solid var(--primary);
}

.schema-tag.error {
    background-color: #fee2e2;
    color: #b91c1c;
}

.schema-tag.success {
    background-color: #ccfbf1;
    color: #0f766e;
}

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

.schema-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 700;
}

.schema-item .icon {
    font-size: 1rem;
    font-weight: bold;
}

.error-item {
    color: #4a5568;
}

.error-item .icon {
    color: #ef4444;
}

.success-item {
    color: var(--primary);
}

.success-item .icon {
    color: #0d9488;
}

.schema-footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
    border-top: 2px solid var(--primary);
    padding-top: 12px;
    font-weight: 700;
}

.success-text {
    color: #0d9488;
    border-color: var(--primary);
}

/* Łącznik */
.schema-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
}

.pulse-line {
    width: 4px;
    height: 35px;
    background: var(--primary);
    border-radius: 99px;
}

.connector-badge {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    background-color: var(--bg-light);
    border: 2px solid var(--primary);
    padding: 3px 14px;
    border-radius: 99px;
    margin-top: 6px;
    box-shadow: 2px 2px 0px var(--primary);
}

/* ==========================================================================
   SEKCJA JAK POMAGAMY (PROCES KROK PO KROKU)
   ========================================================================== */

.process-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.process-row:last-child {
    margin-bottom: 0;
}

.process-row.reverse .process-text {
    grid-column: 1;
}

.process-row.reverse .process-visual {
    grid-column: 2;
}

.process-visual {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.03);
    aspect-ratio: 4 / 3;
}

.svg-visual-container {
    width: 100%;
    height: 100%;
}

.process-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.step-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-desc {
    font-size: 1.02rem;
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.7;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-list li {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.dot-orange {
    width: 7px;
    height: 7px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

.dot-navy {
    width: 7px;
    height: 7px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

/* ==========================================================================
   SEKCJA CENNIK
   ========================================================================== */

.pricing-table-wrapper {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    overflow-x: auto;
    box-shadow: 0 15px 45px rgba(27, 42, 74, 0.04);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.pricing-table th, .pricing-table td {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border-color);
}

.table-corner {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.plan-header {
    width: 26%;
    vertical-align: top;
    position: relative;
}

.plan-header.popular {
    background-color: rgba(255, 122, 0, 0.01);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--accent);
    padding: 3px 12px;
    border-radius: 99px;
}

.plan-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-navy);
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 40px;
    line-height: 1.4;
}

.plan-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-navy);
}

.price-once {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.feature-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-navy);
    width: 22%;
}

.highlight-cell {
    background-color: rgba(255, 122, 0, 0.015);
    border-left: 1px solid rgba(255, 122, 0, 0.04);
    border-right: 1px solid rgba(255, 122, 0, 0.04);
}

.pricing-table tbody tr:hover td {
    background-color: rgba(27, 42, 74, 0.01);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.action-row td {
    padding-top: 36px;
}

/* Cennik mobilny */
.pricing-mobile-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* ==========================================================================
   SEKCJA FAQ (AKORDEON)
   ========================================================================== */

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-light);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-navy);
}

.faq-icon {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(27, 42, 74, 0.01);
}

.faq-content p {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

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

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(27, 42, 74, 0.04);
}

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

/* ==========================================================================
   STOPKA STRONY (FOOTER)
   ========================================================================== */

.main-footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 80px;
    padding-bottom: 40px;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-slogan {
    font-size: 0.92rem;
    color: #a0aec0;
    max-width: 320px;
}

.founders-signature {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
}

.footer-links-col h4, .footer-contact-col h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.footer-contact-col p {
    font-size: 0.92rem;
    color: #a0aec0;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-method-item .icon {
    font-size: 1.2rem;
    color: var(--accent);
}

.contact-method-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-method-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: #718096;
}

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

.footer-legal a {
    font-size: 0.8rem;
    color: #718096;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==========================================================================
   RESPONSYWNOŚĆ (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .empathy-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .empathy-content {
        display: block;
    }
    
    .empathy-title {
        font-size: 2.3rem;
        margin-bottom: 32px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-row, .process-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-row.reverse .process-text {
        grid-column: auto;
    }
    
    .process-row.reverse .process-visual {
        grid-column: auto;
    }
    
    .process-visual {
        order: -1;
        aspect-ratio: 16 / 10;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .empathy-title {
        font-size: 1.85rem;
    }
    
    .hero-section {
        padding-top: 130px;
    }
    
    .pricing-table-wrapper {
        display: none;
    }
    
    .pricing-mobile-grid {
        display: grid;
    }
    
    .pricing-mobile-card {
        background-color: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 32px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 8px 24px rgba(27, 42, 74, 0.03);
    }
    
    .pricing-mobile-card.featured {
        border: 2px solid var(--accent);
        position: relative;
    }
    
    .pricing-mobile-card .plan-price {
        font-size: 1.9rem;
        margin: 12px 0;
    }
    
    .pricing-mobile-card .plan-price span {
        font-size: 0.88rem;
        color: var(--text-muted);
    }
    
    .mobile-features {
        list-style: none;
        margin: 24px 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-features li {
        font-size: 0.88rem;
        color: var(--text-body);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-features li::before {
        content: '✓';
        color: var(--accent);
        font-weight: bold;
    }
    
    /* Menu mobilne */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--border-color);
        padding: 40px 24px;
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .header-cta {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Hamburger */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-visual-col {
        margin-top: 30px;
    }
}

/* ==========================================================================
   PRZYCISK "DO GÓRY" (BACK TO TOP) - NEO-BRUTALISTYCZNY DESIGN
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background-color: var(--bg-yellow);
    color: var(--primary);
    border: 2.5px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0px var(--primary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--primary);
}

.back-to-top:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px var(--primary);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
        box-shadow: 2px 2px 0px var(--primary);
    }
    
    .back-to-top:hover {
        transform: none;
        box-shadow: 2px 2px 0px var(--primary);
    }
}

/* ==========================================================================
   NOWOCZESNA PIONOWA TAŚMA FILMOWA (HERO VISUAL)
   ========================================================================== */
.filmstrip-container {
    position: relative;
    width: 100%;
    max-width: 430px; /* Powiększone z 360px o 20% */
    height: 620px;    /* Powiększone z 520px o 20% */
    background-color: var(--primary);
    border: 2px solid var(--primary); /* Cieńsza rama z 3px na 2px */
    border-radius: var(--radius-md);
    box-shadow: 4px 4px 0px var(--primary); /* Delikatniejszy pop-artowy cień */
    overflow: hidden;
    margin: 0 auto;
}

/* Wstęga z klatkami */
.filmstrip-belt {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 28px; /* Zmniejszone marginesy z 42px na 28px - zdjęcia są SZERSZE! */
    position: relative;
    animation: scroll-filmstrip 25s linear infinite;
}

/* Zatrzymanie animacji na hover */
.filmstrip-container:hover .filmstrip-belt {
    animation-play-state: paused;
}

/* Delikatniejsza perforacja filmowa (zwężona i lżejsza) */
.filmstrip-container::before,
.filmstrip-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 8px; /* Zwężone z 14px na 8px */
    height: 100%;
    z-index: 5;
    background-image: repeating-linear-gradient(
        to bottom,
        #ffffff 0px,
        #ffffff 10px,
        transparent 10px,
        transparent 24px
    );
    opacity: 0.85;
}

.filmstrip-container::before {
    left: 10px; /* Bliżej krawędzi dla większej przestrzeni zdjęć */
}

.filmstrip-container::after {
    right: 10px;
}

/* Klatka filmowa - delikatniejsze ramy */
.film-frame {
    background-color: #ffffff;
    border: 1.5px solid var(--primary); /* Cieńsza rama klatki z 2px na 1.5px */
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.film-frame img {
    width: 100%;
    height: 230px; /* Zwiększona wysokość o 20% (z 190px) */
    object-fit: cover;
    object-position: center;
    border-bottom: 1.5px solid var(--primary); /* Cieńsza linia pod zdjęciem */
    display: block;
}

/* Podpis klatki */
.film-label {
    padding: 8px 12px;
    background-color: #ffffff;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.35;
}

/* Animacja bezszwowego przewijania taśmy */
@keyframes scroll-filmstrip {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Zapewnienie dobrego widoku na mniejszych ekranach */
@media (max-width: 991px) {
    .filmstrip-container {
        max-width: 340px;
        height: 480px;
    }
    
    .film-frame img {
        height: 180px;
    }
    
    .filmstrip-belt {
        padding: 20px 24px;
    }
    
    .filmstrip-container::before {
        left: 8px;
    }
    
    .filmstrip-container::after {
        right: 8px;
    }
}



