/* ======== ZMIENNE I STYLE GLOBALNE ======== */
:root {
    --primary-orange: #FF3D00;
    --primary-orange-hover: #D14E0B;
    --dark-bg: #202020;
    --white: #FFFFFF;
    --light-gray-bg: #F2F2F2;
    --text-color: #202020;
    --text-color-light: #555;
    --border-radius-card: 24px;
    --border-radius-btn: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--light-gray-bg);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.5;
    /* Odstęp na sticky banner */
    padding-top: 60px;
}

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

.section-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.3;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color-light);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

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

/* ======== STICKY BANNER ======== */
.early-access-minimized {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    color: white;
    z-index: 2000;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-height: 50px;
}

.early-access-minimized__content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.early-access-minimized__text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.early-access-minimized__btn {
    padding: 8px 16px;
    font-size: 13px;
    height: auto;
    background: var(--primary-orange);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

/* ======== HEADER ======== */
.header {
    background: var(--light-gray-bg);
    border-bottom: 1px solid var(--primary-orange);
    height: 98px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    margin-top: 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__inner-box {
    display: flex;
    align-items: center;
    background: var(--white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    height: 55px;
    padding: 0 24px;
    flex-grow: 1;
    margin-right: 20px;
}

.header__logo img { height: 19.88px; display: block; }
.header__nav { margin-left: 45px; }
.header__nav ul { list-style: none; display: flex; gap: 29px; }
.header__nav a {
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-color);
}

.btn--cta {
    display: grid;
    place-items: center;
    text-decoration: none;
    max-width: 237px;
    height: 55px;
    background: var(--primary-orange);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 0 1rem;
    flex-shrink: 0;
}

/* Elementy mobilne (domyślnie ukryte) */
.header__logo--mobile,
.header__mobile-toggle,
.header__mobile-nav { display: none; }

/* Desktop - ukrywanie hamburgera */
@media (min-width: 993px) {
    .header__mobile-toggle { display: none !important; }
    .header__mobile-nav { display: none !important; }
}

/* Hamburger Menu Style */
.header__mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header__mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ======== HERO SECTION (PRZYWRÓCONE TŁO I GRADIENT) ======== */

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

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

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-size: 200% 200%;
    animation: floatingGradient 8s ease infinite;
    background:
    radial-gradient(circle at bottom left, var(--light-gray-bg) 40%, transparent 65%),
    radial-gradient(circle at top right, rgba(235, 89, 13, 0.7) 10%, rgba(235, 89, 13, 0.3) 40%, transparent 55%);
}

.hero__container {
    display: grid;
    grid-template-columns: 45% 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: var(--primary-orange);
    padding: 0 0.5rem;
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: -3px; top: -1px; right: -3px; bottom: -1px;
    z-index: -1;
    background: linear-gradient(180deg, #F4DFD4 0%, #FCB895 100%);
    opacity: 0.38;
    border: 1px solid #F8C4A9;
    border-radius: 20px;
}

.hero__subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-color-light);
    max-width: 500px;
    margin: 1.5rem auto 2rem auto;
}

/* Przycisk Ciemny (Dark CTA) */
.btn--dark-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: auto;
    max-width: 100%;
    height: 56px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #202020 0%, #404040 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}
.btn--dark-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4); }

.hero__play-button-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.hero__play-button-img, .hero__apple-button-img { width: 190px; transition: transform 0.3s; }
.hero__play-button-img:hover, .hero__apple-button-img:hover { transform: scale(1.05); }

/* Obrazek Hero */
.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: 4px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.hero__mockup-img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* ======== STATS CARDS ======== */
.stats-cards { margin-top: 0.5rem; padding: 2rem 0; position: relative; z-index: 100; }
.stats-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: var(--white);
    border-radius: 32px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-8px); }

.stat-card__inner {
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    min-height: 300px;
    gap: 0.8rem;
}
.stat-card__icon { width: 80px; height: 80px; flex-shrink: 0; }
.stat-card__percent { font-family: 'Jost', sans-serif; font-size: 32px; font-weight: 700; color: var(--text-color); margin: 0; }
.stat-card__description { font-size: 15px; font-weight: 600; color: #888; line-height: 1.6; text-transform: uppercase; word-wrap: break-word; }

/* ======== HOW IT WORKS (KORZYŚCI) ======== */
.how-it-works {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 0;
    overflow: hidden;
    background: var(--light-gray-bg) linear-gradient(180deg, #FFCDB8 0%, #FFE0D4 20%, #FFF0EA 50%, #FFF8F5 75%, var(--light-gray-bg) 100%);
}
.background-ellipse { position: absolute; z-index: 0; filter: blur(150px); pointer-events: none; }
.ellipse-1 { top: 0%; left: 0%; right: 80.87%; bottom: 70.14%; background: #FF5722; opacity: 0.5; }
.ellipse-2 { top: 70.04%; left: 30.91%; right: 10.96%; bottom: -70%; background: #FF7043; opacity: 0.35; }
.ellipse-3 { top: 40.04%; left: 80.91%; right: -40%; bottom: 0%; background: #FF6B35; opacity: 0.4; }

.how-it-works .section-title { color: var(--primary-orange); margin-bottom: 3rem; text-align: center; }
.how-it-works__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; width: 100%; }

.how-it-works__card {
    background: rgba(255, 255, 255, 0.47);
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.how-it-works__card:hover { transform: translateY(-5px); }

.card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; gap: 1rem; }
.card__title { font-family: 'Jost', sans-serif; font-size: 22px; font-weight: 700; color: var(--primary-orange); flex: 1; }
.card__number { opacity: 0.8; }
.card__description p { margin-bottom: 0.8rem; font-size: 16px; color: var(--text-color-light); }
.card__description strong { color: var(--text-color); font-weight: 600; }


/* ======== MANAGEMENT CENTER (VIDEO) - NAPRAWIONE ======== */
.management-center__box {
    max-width: 1025px;
    margin: 4rem auto;
    background: linear-gradient(180deg, var(--primary-orange) 0%, #E63600 100%);
    border-radius: 40px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(255, 61, 0, 0.25);
}
.management-center__title { font-family: 'Jost', sans-serif; font-size: clamp(24px, 4vw, 42px); font-weight: 700; margin-bottom: 2.5rem; }
.management-center__video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin: 0 auto 3rem auto;
    max-width: 800px;
    border: 4px solid rgba(255,255,255,0.2);
}
.management-center__video { width: 100%; display: block; }
.management-center__subtitle { font-size: 20px; margin-bottom: 3rem; font-weight: 500; opacity: 0.9; }

.video-grid-text { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; margin-bottom: 3rem; }
.video-grid-item { 
    background: rgba(255, 255, 255, 0.08); 
    padding: 1.5rem; 
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}
.video-grid-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}
.video-grid-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.3; }
.video-grid-item p { font-size: 15px; opacity: 0.95; line-height: 1.5; margin: 0; }

/* Inne przyciski */
.btn--white { background-color: var(--white); color: var(--primary-orange); padding: 16px 32px; font-size: 18px; border-radius: var(--border-radius-btn); box-shadow: 0 8px 20px rgba(0,0,0,0.15); text-decoration: none; font-weight: 700; }
.btn--white:hover { background-color: #f8f8f8; transform: translateY(-2px); }

/* ======== COMPARISON (PRZYWRÓCONE PIERWOTNE STYLE) ======== */
.comparison {
    padding: 4rem 0;
    overflow: hidden;
    width: 100%;
    background: var(--light-gray-bg);
}

.comparison__headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    align-items: center;
    color: #C1C1C0;
}

.comparison__headers h3 {
    text-align: center;
}

.header-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.header-with-logo span {
    font-size: 36px;
    color: var(--primary-orange);
}

.header-with-logo img {
    height: 0.8em;
    width: auto;
    padding-left: 0.5rem;
}

.comparison__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.comparison__grid::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #EAEAEA;
    transform: translateX(-50%);
    z-index: 1;
}

.comparison-row {
    display: flex;
    gap: 6px;
    background: var(--white);
    box-shadow: 0px 6px 6.9px rgba(0, 0, 0, 0.09);
    border-radius: 42px;
    padding: 6px;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.comparison-card {
    position: relative;
    flex: 1;
    padding: 1.5rem 1rem 0rem 1rem;
    border-radius: 36px;
    min-height: 150px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 50%;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -50px;
    width: 170px;
    height: 170px;
    filter: blur(40px);
    z-index: -1;
}

/* KARTA PROBLEMU (LEWA) */
.comparison-card--problem {
    background: linear-gradient(180deg, #F1F1F1 0%, #F9F9F9 100%);
}

.comparison-card--problem::before {
    background: rgba(235, 89, 13, 0.3);
}

/* KARTA ROZWIĄZANIA (PRAWA) */
.comparison-card--solution {
    background: var(--dark-bg);
    color: var(--white);
}

.comparison-card--solution::before {
    background: rgba(5, 178, 97, 0.5);
}

/* STYLIZACJA IKON (X i V) */
.comparison-card__icon_cross, 
.comparison-card__icon {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

/* Styl dla ikony X (czerwonej) */
.comparison-card__icon_cross {
    border: none;
    box-shadow: none;
}

.comparison-card__icon_cross svg {
    width: 60%;
    height: 60%;
    stroke: #ef4444; /* Upewniamy się, że kolor SVG jest czerwony */
}

/* Styl dla ikony V (zielonej) */
.comparison-card__icon {
    border: 2px solid #22c55e;
    box-shadow: 0px 3px 6px rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.1); 
}

.comparison-card__icon svg {
    width: 60%;
    height: 60%;
    stroke: #22c55e; /* Upewniamy się, że kolor SVG jest zielony */
}


.comparison-card__content {
    width: 100%;
    overflow: hidden;
    position: relative; 
    z-index: 2;
}

.comparison-card__content h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.2;
    margin-bottom: 0.7rem;
    word-wrap: break-word;
}

.comparison-card__content p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    line-height: 1.4;
    word-wrap: break-word;
}

.comparison-card--problem .comparison-card__content p {
    color: #585858;
}

.comparison__footer-text {
    text-align: center;
    margin-top: 4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(180deg, #202020 42.79%, #968D89 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ikona w prawym dolnym rogu */
.comparison-card__corner-icon {
    padding-top: 10px;
    width: 100%;
    height: auto;
    opacity: 1;
}

/* Box "Warto wiedzieć" */
.worth-knowing-box {
    background: var(--white);
    border: 2px solid var(--primary-orange);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 3rem auto 0;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.worth-knowing-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.worth-knowing-content h4 {
    color: var(--primary-orange);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0.5rem;
}
/* ======== COLLABORATION - DARK THEME ======== */
.collaboration { 
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--white);
}

.collaboration .section-title {
    color: var(--white);
}

.collaboration .section-subtitle {
    max-width: 700px;
    margin: 1rem auto 3rem auto;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.collaboration__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; width: 100%; max-width: 100%; }

.collaboration-card { 
    background: rgba(255, 61, 0, 0.1);
    border: 1px solid rgba(255, 61, 0, 0.2);
    border-left: 6px solid var(--primary-orange);
    border-radius: 16px; 
    padding: 2rem; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.3s ease;
}

.collaboration-card:hover { 
    background: rgba(255, 61, 0, 0.15);
    transform: translateY(-5px);
}

.collaboration-card h3 { 
    font-family: 'Jost', sans-serif; 
    font-weight: 700; 
    font-size: 20px; 
    margin-bottom: 1rem; 
    color: var(--primary-orange);
}

.collaboration-card p { 
    font-size: 16px; 
    line-height: 1.6; 
    color: rgba(255, 255, 255, 0.9); 
    flex-grow: 1; 
    margin-bottom: 0;
}

.btn--secondary { display: inline-block; padding: 8px 20px; border-radius: 12px; font-weight: 700; font-family: 'Jost', sans-serif; background: transparent; border: 2px solid var(--primary-orange); color: var(--primary-orange); transition: all 0.3s ease; font-size: 20px; }

.btn--secondary:hover { background: var(--primary-orange); color: var(--white); }

.card-header-flex { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; gap: 1rem; }

.card-header-flex h3 { flex: 1; margin: 0; }

.toggle-icon { display: none; flex-shrink: 0; color: var(--primary-orange); transition: transform 0.3s; }

.card-hidden-content { display: block; }

/* ======== FOUNDERS ======== */
.about-us { padding: 5rem 0; background: linear-gradient(135deg, var(--white) 0%, #F8F8F8 100%); }
.about-us .text-center { margin-top: 2rem; margin-bottom: 0; }
.founders-wrapper { max-width: 1000px; margin: 0 auto; }
.founders-avatars { display: flex; justify-content: center; align-items: center; margin-bottom: 3rem; }
.founder-avatar { width: 280px; height: 280px; border-radius: 50%; overflow: hidden; border: 4px solid var(--white); box-shadow: 0 8px 30px rgba(0,0,0,0.15); position: relative; transition: transform 0.4s ease, box-shadow 0.4s ease; z-index: 1; }
.founder-avatar:nth-child(2) { margin-left: -30px; margin-right: -30px; z-index: 2; transform: scale(1.08); }
.founder-avatar:nth-child(1) { z-index: 1; }
.founder-avatar:nth-child(3) { z-index: 1; }
.founder-avatar:hover { transform: scale(1.12); z-index: 3; box-shadow: 0 12px 40px rgba(235, 89, 13, 0.3); }
.founder-avatar:nth-child(2):hover { transform: scale(1.18); }
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 1.5rem; }
.founder-card { background: var(--white); padding: 2.5rem 2rem; border-radius: 20px; box-shadow: 0 8px 32px 0 rgba(0,0,0,0.05); border-left: 4px solid var(--primary-orange); transition: all 0.3s ease; margin-bottom: 1rem; }
.founder-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px 0 rgba(235, 89, 13, 0.15); }
.founder-card h3 { font-family: 'Jost', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-color); margin-bottom: 0.5rem; }
.founder-role { color: var(--primary-orange); font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; letter-spacing: 0.5px; }
.founder-card p { font-size: 15px; color: var(--text-color-light); line-height: 1.7; }
.founders-quote { background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%); padding: 3rem 2.5rem; border-radius: 20px; border-left: 4px solid var(--primary-orange); text-align: center; font-style: italic; font-size: 18px; margin-bottom: 2rem; color: var(--white); box-shadow: 0 12px 40px rgba(0,0,0,0.15); line-height: 1.8; }
.founders-note { text-align: center; color: var(--text-color-light); font-size: 15px; line-height: 1.7; }

/* ======== PROCESS SECTION ======== */
.process-section { margin-top: 2.5rem; margin-bottom: 2rem; }
.process-section .text-center { margin-top: 2rem !important; }
.process-title { font-size: 32px; font-weight: 700; color: var(--primary-orange); font-family: 'Jost', sans-serif; margin-bottom: 2rem; text-align: center; }
.process-header-row { display: grid; grid-template-columns: 1.5fr 2fr 2fr 1.5fr; gap: 2rem; padding: 1.5rem 2rem; background: var(--dark-bg); border-radius: 16px 16px 0 0; color: var(--white); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; align-items: center; }
.process-header-row .col-you, .process-header-row .col-app, .process-header-row .col-result { font-size: 13px; font-weight: 700; color: var(--white); margin: 0; }
.process-row { display: grid; grid-template-columns: 1.5fr 2fr 2fr 1.5fr; gap: 2rem; padding: 1.5rem 2rem; border-bottom: 1px solid #eee; background: var(--white); align-items: start; transition: background 0.3s ease; }
.process-row:hover { background: #F9F9F9; }
.process-row--highlight { background: #FFF8F0; border-left: 4px solid var(--primary-orange); }
.col-step { font-weight: 700; margin-bottom: 0; font-size: 16px; }
.step-badge { display: inline-block; background: var(--primary-orange); color: white; padding: 6px 12px; border-radius: 8px; font-size: 13px; font-weight: 700; }
.col-you, .col-app, .col-result { font-size: 15px; line-height: 1.6; color: var(--text-color); margin-bottom: 0; }
.col-you:before { content: ''; display: none; }
.col-app:before { content: ''; display: none; }
.col-result:before { content: ''; display: none; }
.col-result strong { color: var(--primary-orange); font-weight: 700; }

/* ======== POZOSTAŁE ======== */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.problem-card { background: var(--white); border-radius: 24px; padding: 2rem; border-left: 6px solid var(--primary-orange); height: 100%; }
.problem-icon { font-size: 28px; margin-right: 10px; }
.problem-card h3 { font-family: 'Jost', sans-serif; font-size: 20px; font-weight: 700; }

.section-problems { padding: 5rem 0; }

.calculation-box { background: #FFF8F0; border: 2px solid var(--primary-orange); border-radius: 24px; padding: 2.5rem 2rem; margin-top: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }
.calculation-box h3 { font-family: 'Jost', sans-serif; font-size: 24px; font-weight: 700; color: var(--primary-orange); margin-bottom: 1rem; }
.calculation-box p { font-size: 16px; color: var(--text-color-light); line-height: 1.6; }

/* ======== SECTION PROFESSIONAL - DARK THEME ======== */
.section-professional {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 5rem 0;
    color: var(--white);
}
.section-professional .section-title {
    color: var(--white);
}
.section-professional .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.grid-3-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.calm-card { 
    background: rgba(255, 255, 255, 0.08); 
    padding: 2rem; 
    border-radius: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.calm-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}
.calm-card h3 { 
    color: var(--primary-orange); 
    font-size: 20px; 
    margin-bottom: 1rem; 
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}
.calm-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
.calm-card strong {
    color: var(--primary-orange);
    font-weight: 700;
}

.client-focus-box { 
    background: rgba(255, 61, 0, 0.1); 
    border-left: 6px solid var(--primary-orange); 
    border-radius: 16px; 
    padding: 2rem; 
    margin-top: 2rem;
    border: 1px solid rgba(255, 61, 0, 0.2);
}
.client-focus-content h3 { 
    color: var(--primary-orange); 
    font-size: 24px; 
    font-weight: 700; 
    font-family: 'Jost', sans-serif; 
    margin-bottom: 1.5rem; 
}
.client-focus-content p { 
    font-size: 16px; 
    color: rgba(255, 255, 255, 0.9); 
    line-height: 1.6; 
    margin-bottom: 1rem; 
}
.client-focus-content strong { 
    color: var(--primary-orange); 
    font-weight: 700; 
}

/* ======== VIDEO SECTION - ORANGE THEME ======== */
.video-section { 
    padding: 0;
    background: var(--light-gray-bg);
}
.video-section__box {
    max-width: 1025px;
    margin: 4rem auto;
    background: linear-gradient(180deg, var(--primary-orange) 0%, #E63600 100%);
    border-radius: 40px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(255, 61, 0, 0.25);
}
.video-section__title { 
    font-family: 'Jost', sans-serif; 
    font-size: clamp(24px, 4vw, 42px); 
    font-weight: 700; 
    margin-bottom: 2.5rem; 
    color: var(--white);
}
.video-section__subtitle { 
    font-size: 20px; 
    margin-bottom: 3rem; 
    font-weight: 500; 
    opacity: 0.9;
    color: var(--white);
}
.video-box { 
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin: 0 auto 3rem auto;
    max-width: 800px;
    border: 4px solid rgba(255,255,255,0.2);
    line-height: 0;
}
.video-box video { width: 100%; height: auto; display: block; }
.video-box__image { width: 100%; height: auto; display: block; }
.video-section__cta { text-align: center; margin-top: 2rem; }

.final-cta { margin-bottom: 20px; }
.final-cta .btn--dark-cta { width: auto; padding: 1rem 2rem; overflow: hidden; }
.final-cta__text-big { font-size: 26px; line-height: 1.4; font-weight: 700; color: var(--primary-orange); }
.final-cta__text-small { font-size: 22px; line-height: 1.4; color: var(--text-color); }

/* ======== SEKCJA OPINII ======== */
.testimonials { padding: 5rem 0; overflow: hidden; background: var(--white); }
.testimonials .section-title { text-align: center; margin-bottom: 2rem; }
.testimonials .section-subtitle { text-align: center; margin-bottom: 3rem; }

.testimonial-slider__wrapper { position: relative; overflow: hidden; }

.testimonial-slider { display: flex; gap: 30px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; width: 100%; padding-right: 1rem; }

.testimonial-slider::-webkit-scrollbar { display: none; }

.testimonial-card { display: flex; flex-direction: column; justify-content: space-between; flex: 0 0 350px; scroll-snap-align: start; background: #F8F8F8; border-radius: 1.5rem; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); min-width: 350px; max-width: 100%; }

.testimonial-card__stars { display: flex; gap: 6px; margin-bottom: 1rem; }
.testimonial-card__stars img { width: 14px; }

.testimonial-card__text { font-family: 'Inter'; font-size: 14px; line-height: 1.6; color: #3C3C3C; margin-bottom: 1.5rem; flex-grow: 1; word-wrap: break-word; }

.testimonial-card__author { display: flex; align-items: center; gap: 1rem; }
.author__info { display: flex; flex-direction: column; }

.author__name { font-family: 'Inter'; font-weight: 700; font-size: 16px; color: #000000; margin-bottom: 0.2rem; }
.author__title { font-family: 'Inter'; font-size: 13px; color: #5A5A5A; }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: var(--primary-orange); box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25), inset 0px 4px 4px rgba(255, 255, 255, 0.25); border: none; cursor: pointer; display: grid; place-items: center; z-index: 5; transition: transform 0.2s ease, opacity 0.3s ease; }

.slider-btn:hover { transform: translateY(-50%) scale(1.1); }

.slider-btn--prev { left: 2px; }
.slider-btn--next { right: 2px; }

.slider-btn svg { width: 20px; height: 20px; color: white; }

.slider-btn.is-hidden { opacity: 0; pointer-events: none; }

.pricing { padding: 5rem 0; background: var(--light-gray-bg); }
.pricing-single-wrapper { display: flex; justify-content: center; margin-top: 2rem; }
.pricing-card--featured { background: var(--white); border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 50px rgba(255, 61, 0, 0.2); width: 100%; max-width: 500px; border: 2px solid var(--primary-orange); }
.pricing-card__header { background: var(--dark-bg); padding: 3rem 2rem; color: var(--white); text-align: center; border-radius: 24px 24px 0 0; }
.price-box .amount { font-family: 'Jost', sans-serif; font-size: 72px; font-weight: 700; color: var(--primary-orange); }
.price-box__details { display: flex; flex-direction: column; gap: 0.2rem; }
.price-box .currency { font-size: 14px; color: #ccc; }
.price-box .period { font-size: 16px; color: #999; }
.vat-info { font-size: 13px; color: #999; margin-top: 0.5rem; }
.pricing-card__body { padding: 2rem; }
.pricing-features-list { list-style: none; padding: 0; margin: 0 0 2rem 0; }
.pricing-features-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; font-size: 15px; line-height: 1.6; color: var(--text-color); }
.check-icon { width: 20px; height: 20px; min-width: 20px; color: var(--primary-orange); flex-shrink: 0; }
.pricing-bonuses { background: #FFF8F0; border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; border-left: 4px solid var(--primary-orange); }
.bonus-item { margin-bottom: 1rem; }
.bonus-item:last-child { margin-bottom: 0; }
.bonus-tag { display: inline-block; background: var(--primary-orange); color: white; padding: 4px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; margin-bottom: 0.4rem; }
.bonus-item p { font-size: 14px; color: var(--text-color); margin: 0; line-height: 1.5; }
.pricing-card__body .text-center { margin-top: 1.5rem; }
.pricing-card__body .btn { width: 100%; padding: 1rem; font-size: 16px; font-weight: 700; border-radius: 12px; background: linear-gradient(135deg, var(--primary-orange) 0%, #EB590D 100%); color: white; text-decoration: none; display: inline-block; transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(235, 89, 13, 0.3); }
.pricing-card__body .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(235, 89, 13, 0.4); }

.guarantee-section { padding: 2rem 0; background: linear-gradient(135deg, #FFF8F0 0%, var(--light-gray-bg) 100%); }
.guarantee-box { padding: 1.5rem; text-align: center; background: var(--white); border: 3px solid var(--primary-orange); border-radius: 24px; margin-top: 0.5rem; position: relative; box-shadow: 0 12px 40px rgba(235, 89, 13, 0.1); }
.guarantee-icon { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #FFF8F0 0%, var(--white) 100%); border: 3px solid var(--primary-orange); border-radius: 50%; padding: 12px; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.guarantee-title { font-family: 'Jost', sans-serif; font-size: 28px; font-weight: 700; color: var(--primary-orange); margin: 1rem 0 0.8rem 0; line-height: 1.3; }
.guarantee-text { font-size: 15px; line-height: 1.6; color: var(--text-color); margin-bottom: 0.8rem; }
.guarantee-highlight { font-size: 16px; font-weight: 700; color: var(--primary-orange); margin: 1rem 0; }
.guarantee-list { list-style: none; padding: 0; margin: 0.8rem 0 1rem 0; text-align: left; display: inline-block; }
.guarantee-list li { padding: 0.3rem 0; padding-left: 1.2rem; position: relative; font-size: 16px; color: var(--text-color); }
.guarantee-list li:before { content: '✓'; position: absolute; left: 0; color: var(--primary-orange); font-weight: 700; font-size: 16px; }
.guarantee-cta-wrapper { margin-top: 1.5rem; }
.guarantee-cta-wrapper .btn { padding: 1rem 3rem; font-size: 16px; }

.faq__item { background: var(--white); border-radius: 24px; padding: 6px; margin-bottom: 1rem; box-shadow: 0 6px 15px rgba(0,0,0,0.05); }
.faq__question { width: 100%; background: #f9f9f9; border: none; border-radius: 18px; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; cursor: pointer; text-align: left; color: var(--text-color); transition: all 0.3s ease; }
.faq__question:hover { background: #f0f0f0; }
.faq__question span:first-child { color: var(--text-color); }
.faq__icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; position: relative; color: var(--primary-orange); font-size: 20px; font-weight: 300; }
.faq__icon::before { content: '+'; }
.faq__item.active .faq__icon::before { content: '-'; }
.faq__answer { max-height: 0; overflow: hidden; transition: 0.4s ease; color: var(--text-color); }
.faq__item.active .faq__answer { max-height: 1000px; padding: 1rem; }
.faq__cta { text-align: center; margin-top: 4rem; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq__cta p { font-size: 18px; color: var(--text-color); line-height: 1.6; }

.first-steps-plan { padding: 1rem 0 4rem; }
.first-steps-plan__subtitle { max-width: 760px; margin-bottom: 1.5rem; }

.first-steps-plan__head {
    max-width: 1040px;
    margin: 0 auto 1rem;
    background: var(--white);
    border-radius: 20px;
    padding: 1rem 1.25rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 61, 0, 0.1);
}

.first-steps-plan__summary {
    margin: 0 0 0.7rem;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}

.first-steps-plan__progress-track {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: #f0f0f0;
    overflow: hidden;
    margin-bottom: 0.9rem;
}

.first-steps-plan__progress-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #EB590D 100%);
    transition: width 0.3s ease;
}

.first-steps-plan__playlist-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 0.6rem 1rem;
    border-radius: 10px;
}

.first-steps-carousel__wrapper {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
}

.first-steps-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.2rem 0.2rem 0.8rem;
}

.first-steps-carousel::-webkit-scrollbar {
    display: none;
}

.first-steps-slider-btn {
    top: 50%;
}

.first-step-video-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 61, 0, 0.08);
    flex: 0 0 320px;
    min-width: 320px;
    scroll-snap-align: start;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.first-step-video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.1);
}

.first-step-video-card.is-completed {
    border-color: rgba(255, 61, 0, 0.35);
    background: #fffaf7;
}

.first-step-video-card__thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1b1b1b;
}

.first-step-video-card__thumb-bg,
.first-step-video-card__thumb-main {
    position: absolute;
    inset: 0;
    display: block;
}

.first-step-video-card__thumb-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: brightness(0.45) saturate(0.85) blur(1.5px);
}

.first-step-video-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.38) 100%
    );
    pointer-events: none;
}

.first-step-video-card__thumb-main {
    width: auto;
    height: 100%;
    max-width: 48%;
    margin: auto;
    object-fit: contain;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.first-step-video-card__duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
}

.first-step-video-card__body {
    padding: 0.85rem 0.9rem 1rem;
    font-family: 'Inter', sans-serif;
}

.first-step-video-card__index {
    display: inline-flex;
    font-family: 'Inter', sans-serif;
    color: var(--primary-orange);
    background: rgba(255, 61, 0, 0.12);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.first-step-video-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.45rem;
    color: var(--text-color);
}

.first-step-video-card__meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-color-light);
    margin: 0 0 0.8rem;
}

.first-step-video-card__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.first-step-video-card__watch {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    padding: 0.55rem 0.75rem;
    color: var(--primary-orange);
    background: rgba(255, 61, 0, 0.1);
}

.first-steps-plan__final-cta {
    max-width: 1040px;
    margin: 1.25rem auto 0;
    padding: 1.2rem;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.first-steps-plan__final-cta p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.first-steps-plan__final-cta.is-visible { display: flex; }

.footer { padding: 4rem 1rem 0; border-top: 1px solid var(--primary-orange); background: var(--white); }
.footer__container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-bottom: 3rem; }
.footer__col { display: flex; flex-direction: column; gap: 1rem; }
.footer__col h4 { font-size: 16px; font-weight: 700; margin: 0; color: var(--text-color); }.footer__col p, .footer__col address { font-size: 14px; line-height: 1.6; color: var(--text-color); margin: 0; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.8rem; }
.footer__col a { color: var(--text-color); text-decoration: none; transition: color 0.3s; font-size: 14px; }
.footer__col a:hover { color: var(--primary-orange); }
.footer__socials { display: flex; gap: 1rem; align-items: center; }
.footer__socials a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f0f0f0; border-radius: 8px; color: var(--text-color); transition: all 0.3s; }
.footer__socials a:hover { background: var(--primary-orange); color: white; }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom { text-align: center; padding: 1rem; background: #f9f9f9; font-size: 13px; color: #999; }

/* ======== UMOWA LP ======== */
.umowa-lp {
    background: var(--light-gray-bg);
}

.umowa-hero {
    padding: 2rem 0 3rem;
    background: radial-gradient(circle at top right, rgba(235, 89, 13, 0.15) 0%, transparent 48%), var(--white);
    border-bottom: 1px solid rgba(255, 61, 0, 0.08);
}

.umowa-hero__content {
    max-width: 900px;
    text-align: center;
}

.umowa-hero__title {
    font-family: 'Jost', sans-serif;
    font-size: 44px;
    line-height: 1.2;
    color: var(--text-color);
    margin: 0 0 1rem;
}

.umowa-hero__subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-color-light);
    max-width: 760px;
    margin: 0 auto 1.8rem;
}

.umowa-section {
    padding: 3.2rem 0;
}

.umowa-section--alt {
    background: var(--white);
}

.umowa-points-grid,
.umowa-download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.umowa-point,
.umowa-warning,
.umowa-download-tile,
.umowa-practice {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(255, 61, 0, 0.08);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    padding: 1.2rem;
}

.umowa-point h3,
.umowa-warning h3,
.umowa-download-tile h3,
.umowa-practice h3 {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.umowa-point p,
.umowa-warning p,
.umowa-download-tile p,
.umowa-practice li {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color-light);
}

.umowa-warnings {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.umowa-warning a,
.umowa-practice a {
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: none;
}

.umowa-warning a:hover,
.umowa-practice a:hover {
    text-decoration: underline;
}

.umowa-quote {
    max-width: 920px;
    margin: 0 auto 1rem;
    text-align: center;
    font-size: 21px;
    line-height: 1.55;
    font-style: italic;
    color: var(--text-color);
}

.umowa-practice {
    max-width: 980px;
    margin: 0 auto;
}

.umowa-practice ul {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.55rem;
}

.umowa-download-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.umowa-download-tile .btn {
    width: 100%;
    text-align: center;
}

.umowa-faq {
    max-width: 980px;
    margin: 0 auto;
}

.umowa-faq .faq__answer ul {
    margin: 0.7rem 0 0;
    padding-left: 1.1rem;
}

@media (max-width: 992px) {
    .umowa-hero { padding: 3rem 0 2.2rem; }
    .umowa-hero__title { font-size: 34px; }
    .umowa-hero__subtitle { font-size: 16px; }
    .umowa-points-grid,
    .umowa-download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .umowa-section { padding: 2rem 0; }
    .umowa-hero { padding: 2.3rem 0 1.8rem; }
    .umowa-hero__title { font-size: 27px; }
    .umowa-hero__subtitle { font-size: 14px; margin-bottom: 1.2rem; }
    .umowa-quote { font-size: 17px; }
    .umowa-points-grid,
    .umowa-download-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .umowa-point,
    .umowa-warning,
    .umowa-download-tile,
    .umowa-practice {
        border-radius: 14px;
        padding: 1rem;
    }
    .umowa-point h3,
    .umowa-warning h3,
    .umowa-download-tile h3,
    .umowa-practice h3 {
        font-size: 19px;
    }
}

/* ======== STICKY FAB ======== */
.sticky-fab { position: fixed; bottom: 24px; right: 24px; z-index: 1000; background: transparent; border: none; }
.fab-main { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary-orange) 0%, #FF7F4C 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fab-logo { width: 32px; height: 32px; background: url('assets/logo-sygnet-white.svg') no-repeat center/contain; }
.fab-contact-container { position: absolute; right: 75px; top: 15px; background: white; padding: 8px 12px; border-radius: 8px; font-weight: 700; opacity: 0; transition: 0.3s; pointer-events: none; }
.sticky-fab:hover .fab-contact-container { opacity: 1; }

/* ======== MODALE ======== */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.modal.active { display: flex; }
.modal__content { background: white; padding: 2rem; border-radius: 16px; max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal__close { position: absolute; top: 1rem; right: 1rem; border: none; background: none; font-size: 1.5rem; cursor: pointer; }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 8px; }
.btn--secondary { background: #f5f5f5; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; }

/* ======== TESTIMONIALS ======== */
.testimonials { padding: 5rem 0; background: var(--white); }
.testimonial-slider__wrapper { position: relative; margin: 2rem 0; padding: 1rem 0; background: var(--white); }
.testimonial-slider { display: flex; gap: 2rem; overflow-x: hidden; scroll-behavior: smooth; background-color: var(--white); padding: 0; }
.testimonial-card { background: #F8F8F8; border-radius: 24px; padding: 2.5rem; box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06); min-width: 350px; flex-shrink: 0; display: flex; flex-direction: column; gap: 1.5rem; transition: all 0.3s ease; }
.testimonial-card__stars { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.testimonial-card__stars img { width: 20px; height: 20px; }
.testimonial-card__text { font-size: 16px; line-height: 1.7; color: var(--text-color); font-style: italic; margin: 0; flex-grow: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; margin-top: auto; }
.testimonial-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-4px); }
.author__info { text-align: left; }

/* ==========================================================================
   PERFEKCYJNA RESPONSYWNOŚĆ (MOBILE)
   ========================================================================== */

/* Tablet (do 992px) */
@media (max-width: 992px) {
    /* TYPOGRAFIA GLOBALNA - TABLET */
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 16px; }
    body { font-size: 15px; }
    
    /* HEADER: Włączenie Hamburgera */
    .header__inner-box, .header .btn--cta { display: none; }
    .header__logo--mobile, .header__mobile-toggle { display: block; }
    .header__container { justify-content: space-between; padding: 0 1rem; }

    .header__mobile-toggle { width: 32px; height: 26px; position: relative; border: none; background: transparent; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; padding: 0; margin-right: 0.5rem; }
    .header__mobile-toggle span { display: block; width: 100%; height: 3px; background: var(--text-color); border-radius: 2px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    
    .header__mobile-toggle span:nth-child(1) { transition-delay: 0.1s; }
    .header__mobile-toggle span:nth-child(2) { transition-delay: 0s; }
    .header__mobile-toggle span:nth-child(3) { transition-delay: 0.1s; }
    
    .header.nav-open .header__mobile-toggle span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .header.nav-open .header__mobile-toggle span:nth-child(2) { opacity: 0; }
    .header.nav-open .header__mobile-toggle span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

    .header__mobile-nav {
        display: none; position: absolute; top: calc(100% + 0.2rem); left: 0; width: calc(100% - 2rem); margin: 0 1rem;
        background: var(--white); flex-direction: column; 
        box-shadow: 0 12px 32px rgba(0,0,0,0.15); border-radius: 16px; z-index: 999;
        padding: 1rem 0; max-height: calc(100vh - 70px); overflow-y: auto; overflow-x: hidden;
    }
    .header__mobile-nav ul { display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0.5rem 0; align-items: center; }
    .header__mobile-nav li { border: none; transition: all 0.3s; padding: 0; }
    .header__mobile-nav li:hover { background: transparent; }
    .header__mobile-nav li a { display: block; padding: 0.7rem 1rem 0.5rem 1rem; text-decoration: none; color: var(--text-color); font-weight: 500; font-size: 14px; transition: all 0.3s; border-bottom: 0.5px solid rgba(255, 61, 0, 0.3); white-space: nowrap; }
    .header__mobile-nav li a:hover { color: var(--primary-orange); border-bottom: 1px solid var(--primary-orange); }
    .header__mobile-nav .btn--cta { display: flex; justify-content: center; align-items: center; margin: 0.8rem auto; border-radius: 12px; padding: 12px 32px; font-size: 13px; font-weight: 700; box-shadow: 0 6px 16px rgba(255, 61, 0, 0.25); background: var(--primary-orange); color: white; border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; white-space: nowrap; }
    .header__mobile-nav .btn--cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 61, 0, 0.35); background: var(--primary-orange); }
    
    .header.nav-open .header__mobile-nav { display: flex; }

    /* HERO: Naprawa */
    .hero { height: auto; padding-top: 1rem; padding-bottom: 2rem; }
    .hero__container { 
        display: flex; flex-direction: column; text-align: center; gap: 1rem; padding-top: 1rem; 
    }
    .hero__content { order: 1; width: 100%; margin-bottom: 1rem; }
    .hero__title { font-size: 32px; }
    .hero__subtitle { font-size: 16px; margin-bottom: 1.5rem; }
    
    .hero__image-wrapper { 
        order: 2; width: 100%; height: auto; min-height: auto; 
        margin-top: 0; display: flex; justify-content: center;
        max-width: 470px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }
    .hero__mockup-img { 
        width: 100%; max-width: 450px;
    }

    /* Hero Buttons */
    .hero__play-button-wrapper { gap: 12px; margin-top: 2rem; }
    .hero__play-button-img, .hero__apple-button-img { width: 160px; }

    /* STATS: 2 kolumny */
    .stats-cards__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }
    .stat-card {
        padding: 9px;
        background: var(--white);
        border-radius: 28px;
        width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }
    .stat-card__inner {
        padding: 1.2rem 0.9rem;
        min-height: 200px !important;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        border-radius: 20px;
        background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
        border: 1px solid #eee;
        box-sizing: border-box;
        overflow: hidden;

    }
    .stat-card__percent {
        font-size: 26px;
        margin: 0 !important;
        font-weight: 700;
        /* word-break: break-word; */
    }
    .stat-card__description {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.4;

    }
    .stat-card__icon {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        margin: 0 !important;
    }
    
    /* COLLABORATION: Akordeon - Dark Theme */
    .collaboration { padding: 2.5rem 0; }
    .collaboration .section-title { color: var(--white); }
    .collaboration__grid { grid-template-columns: 1fr; gap: 1rem; }
    .collaboration-card { 
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem; 
        cursor: pointer; 
        width: 100%; 
        border-radius: 20px; 
        min-height: auto;
        transition: all 0.3s ease;
    }
    .collaboration-card:active {
        background: rgba(0, 0, 0, 0.4);
        transform: scale(0.98);
    }
    .card-header-flex { margin-bottom: 0; }
    .card-header-flex h3 { 
        font-size: 16px; 
        margin: 0; 
        color: var(--primary-orange);
        text-align: left;
        font-weight: 700;
    }
    .toggle-icon { 
        display: block; 
        color: var(--primary-orange); 
        transition: transform 0.3s ease; 
        width: 24px; 
        height: 24px; 
        flex-shrink: 0;
    }
    .card-hidden-content { 
        max-height: 0; 
        opacity: 0; 
        overflow: hidden; 
        transition: max-height 0.4s ease, opacity 0.3s ease; 
        margin-top: 0;
    }
    .collaboration-card.active {
        background: rgba(0, 0, 0, 0.35);
        border-color: rgba(255, 61, 0, 0.3);
    }
    .collaboration-card.active .card-hidden-content { 
        max-height: 500px; 
        opacity: 1; 
        margin-top: 1rem;
    }
    .collaboration-card.active .toggle-icon { 
        transform: rotate(45deg);
    }
    .collaboration-card p { 
        font-size: 14px; 
        line-height: 1.6; 
        color: rgba(255, 255, 255, 0.85);
    }

    /* HOW IT WORKS: 1 kolumna, mniejsze karty */
    .how-it-works { padding: 2rem 1rem; }
    .how-it-works__grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .how-it-works__card { padding: 1rem 1.2rem; min-height: auto; }
    .card__header { margin-bottom: 0.4rem; }
    .card__title { font-size: 15px; }
    .card__number { width: 28px; height: 28px; }
    .card__number svg { width: 28px; height: 28px; }
    .card__description p { font-size: 12px; margin-bottom: 0.5rem; }

    /* MANAGEMENT CENTER: Video */
    .management-center__box { 
        border-radius: 24px; 
        padding: 2.5rem 1.5rem; 
        margin: 2rem auto; 
    }
    .management-center__title { 
        font-size: 24px; 
        margin-bottom: 2rem; 
        line-height: 1.3;
    }
    .management-center__subtitle { 
        font-size: 16px; 
        margin-bottom: 2.5rem; 
        line-height: 1.5;
    }
    .video-grid-text { 
        grid-template-columns: 1fr; 
        gap: 1rem; 
        margin-bottom: 2rem; 
        text-align: left;
    }
    .video-grid-item { 
        background: rgba(255, 255, 255, 0.08); 
        padding: 1rem 1.2rem; 
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }
    .video-grid-item:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
    }
    .video-grid-item h3 { 
        font-size: 15px; 
        margin-bottom: 0.5rem; 
        font-weight: 700;
        line-height: 1.3;
    }
    .video-grid-item p { 
        font-size: 12px; 
        line-height: 1.5;
        opacity: 0.95;
        margin: 0;
    }
    .management-center__cta { 
        margin-top: 2rem; 
    }
    .management-center__cta .btn--white {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        display: inline-block;
    }

   .comparison {
        padding: 30px 1rem;
    }
    
    .comparison__headers {
        display: none; /* Ukrywamy nagłówki tabeli na mobile */
    }
    
    .comparison__grid::after {
        display: none; /* Ukrywamy linię środkową */
    }

    .comparison-row {
        flex-direction: column; /* Karty jedna pod drugą */
        gap: 1rem;
        padding: 1rem;
        border-radius: 24px;
    }

    .comparison-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 16px;
    }

    .comparison-card__content h4 {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
        line-height: 1.3;
    }
    
    .comparison-card__content p {
        font-size: clamp(0.85rem, 1.4vw, 0.95rem);
        line-height: 1.4;
    }

    .comparison-card__corner-icon {
        width: 80%;
        margin-left: auto;
        margin-right: 0;
        align-self: start;
        display: block;
    }

    /* TESTIMONIALS: Tablet */
    .testimonials { padding: 3rem 1rem; }
    .testimonial-slider { gap: 20px; }
    .testimonial-card { flex: 0 0 300px; min-width: 300px; padding: 1.2rem; background: #F8F8F8; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .testimonial-card__text { font-size: 13px; margin-bottom: 1rem; }
    .author__name { font-size: 15px; }
    .author__title { font-size: 12px; }
    .slider-btn { width: 44px; height: 44px; }
    .slider-btn svg { width: 18px; height: 18px; }

    /* PRICING: Tablet */
    .pricing { padding: 3rem 1rem; }
    .pricing-card--featured { max-width: 450px; border: 2px solid var(--primary-orange); box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 0 40px rgba(255, 61, 0, 0.15); }
    .pricing-card__header { padding: 2rem 1.5rem; }
    .price-box .amount { font-size: 56px; }
    .pricing-features-list li { font-size: 14px; margin-bottom: 1rem; }
    .check-icon { width: 18px; height: 18px; }
    .pricing-bonuses { padding: 1.2rem; }
    .guarantee-box { padding: 2.5rem; }
    .guarantee-title { font-size: 26px; }
    .guarantee-text { font-size: 14px; }
    .guarantee-list li { font-size: 14px; }

    /* FOUNDERS: Pionowo */
    .founders-grid { grid-template-columns: 1fr; text-align: center; gap: 0.5rem; margin-bottom: 0.5rem; }
    .founder-card { border-left: none; border-top: 4px solid var(--primary-orange); padding: 2rem 1.5rem; }
    .founder-avatar { width: 140px; height: 140px; }
    .founder-avatar:nth-child(2) { margin-left: -24px; margin-right: -24px; }
    
    /* PROCESS: Tablet */
    .process-header-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.2rem 1.5rem; }
    .process-row { grid-template-columns: 1fr; gap: 0.8rem; padding: 1.2rem 1.5rem; border-left: 4px solid rgba(255, 61, 0, 0.2); }
    .process-row:hover { transform: none; }
    .process-row::before { display: none; }
    .col-step, .col-you, .col-app, .col-result { font-size: 14px; margin-bottom: 0; }

    /* INNE GRIDY */
    .problems-grid, .grid-3-cols { grid-template-columns: 1fr; gap: 1rem; }
    .video-section__box { margin: 3rem 1rem; padding: 3rem 1.5rem; border-radius: 32px; }
    .video-section__title { font-size: 28px; margin-bottom: 1.5rem; }
    .video-section__subtitle { font-size: 16px; margin-bottom: 2rem; }
    .video-box { max-width: 100%; border-radius: 16px; border: 3px solid rgba(255,255,255,0.2); margin-bottom: 2rem; }
    .collaboration__grid { grid-template-columns: 1fr; gap: 1rem; }
    .collaboration-card { padding: 2rem 1.5rem; }
    
    /* Testimonials: Tablet */
    .testimonial-slider { gap: 1.5rem; }
    .testimonial-card { min-width: 300px; padding: 2rem; background: #F8F8F8; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .slider-btn--prev { left: -60px; }
    .slider-btn--next { right: -60px; }
    
    /* Footer: Tablet */
    .footer__container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer__col h4 { font-size: 14px; }
    .footer__col p, .footer__col address, .footer__col a { font-size: 12px; }
    .footer__socials a { width: 28px; height: 28px; }
    .footer__socials svg { width: 16px; height: 16px; }
}

/* Mobile (do 768px) */
@media (max-width: 768px) {
    /* TYPOGRAFIA GLOBALNA - MOBILE */
    .section-title { font-size: 24px; margin-bottom: 1rem; }
    .section-subtitle { font-size: 14px; margin-bottom: 2rem; }
    body { font-size: 14px; }
    
    /* Baner mniejszy */
    .early-access-minimized { padding: 5px; height: auto; min-height: 40px; }
    .early-access-minimized__content { gap: 10px; flex-wrap: wrap; text-align: center; }
    .early-access-minimized__text { font-size: 11px; }
    .early-access-minimized__btn { padding: 4px 10px; font-size: 11px; }
    
    body { padding-top: 60px; } 
    .header { height: 70px; margin-top: 0; }
    .header__container { padding: 0 0.75rem; }
    .header__mobile-toggle { width: 28px; height: 22px; margin-right: 0; }
    .header__mobile-toggle span { height: 2.5px; }
    .header__mobile-nav { top: calc(100% + 0.2rem); }
    .header__mobile-nav li a { padding: 0.6rem 0.8rem 0.4rem 0.8rem; font-size: 13px; }

    /* Hero Buttons on Mobile */
        .hero { height: auto; padding-top: 1rem; padding-bottom: 1rem; }
    .hero__play-button-wrapper { gap: 10px; margin-top: 1.5rem; }
    .hero__play-button-img, .hero__apple-button-img { width: 140px; }

    /* Stats Cards - 2 kolumny na mobile */
    .stats-cards { padding: 1rem 0; }
    .stats-cards__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 2rem;
        margin-top: 0rem;;
        width: 100%;
    }
    .stat-card {
        padding: 7px;
        background: var(--white);
        border-radius: 24px;
        width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }
    .stat-card__inner {
        padding: 0.8rem 0.6rem;
        min-height: 160px !important;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        border-radius: 18px;
        background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
        border: 1px solid #eee;
        box-sizing: border-box;
        overflow: hidden;

    }
    .stat-card__percent {
        font-size: 18px;
        margin: 0 !important;
        font-weight: 700;
    }
    .stat-card__description {
        font-size: 11px;
        font-weight: 500;
        line-height: 1.25;

    }
    .stat-card__icon {
        width: 60x;
        height: 60px;
        flex-shrink: 0;
        margin: 0 !important;
    }
    
    /* Reduce spacing between sections on mobile */
    section { margin-bottom: 0; }
    .how-it-works { padding: 1.5rem 0; }
    .management-center__box { margin: 2rem auto; }
    .comparison { padding: 2.5rem 0; }
    
    /* COLLABORATION: Mobile Dark Theme */
    .collaboration { padding: 2.5rem 1rem; }
    .collaboration-card { 
        background: rgba(0, 0, 0, 0.3) !important;
        border: 2px solid rgba(255, 255, 255, 0.1) !important;
    }
    .collaboration-card.active {
        background: rgba(0, 0, 0, 0.35) !important;
        border-color: rgba(255, 61, 0, 0.3) !important;
    }
    
    /* About-us Mobile */
    .about-us { padding: 2rem 0; }
    .founders-wrapper { padding: 0 1rem; }
    .founders-avatars { margin-bottom: 1.5rem; }
    .founder-avatar { width: calc((100vw - 2rem) / 3); height: calc((100vw - 2rem) / 3); max-width: 120px; max-height: 120px; border-width: 3px; }
    .founder-avatar:nth-child(2) { margin-left: -18px; margin-right: -18px; }
    .founders-grid { margin-bottom: 0.5rem; }
    .founder-card { padding: 1.2rem 1rem; margin-bottom: 0.6rem; }
    .founder-card h3 { font-size: 15px; margin-bottom: 0.4rem; }
    .founder-card p { font-size: 12px; line-height: 1.6; }
    .founders-quote { padding: 1.5rem 1.2rem; font-size: 14px; margin-bottom: 1rem; line-height: 1.6; }
    .founders-note { font-size: 12px; line-height: 1.6; margin-top: 0.8rem; }
    
    /* Process Mobile */
    .process-section { margin-top: 1.5rem; margin-bottom: 1.5rem; border-radius: 16px; }
    .process-title { display: none; font-size: 20px; }
    .process-header-row { display: none; }
    .process-row { padding: 1rem 0.9rem; margin-bottom: 0.6rem; border: 1px solid rgba(0,0,0,0.05); border-radius: 12px; border-left: 4px solid var(--primary-orange); background: var(--white); }
    .process-row--highlight { border-left: 4px solid var(--primary-orange); background: #FFF8F0; }
    .col-step, .col-you, .col-app, .col-result { font-size: 12px; margin-bottom: 0; display: block; }
    .step-badge { padding: 4px 8px; font-size: 10px; }
    .col-you:before { content: attr(data-label); display: block; font-size: 10px; font-weight: 700; color: var(--primary-orange); margin-bottom: 0.2rem; }
    .col-app:before { content: attr(data-label); display: block; font-size: 10px; font-weight: 700; color: var(--primary-orange); margin-bottom: 0.2rem; }
    .col-result:before { content: attr(data-label); display: block; font-size: 10px; font-weight: 700; color: var(--primary-orange); margin-bottom: 0.2rem; }
    .collaboration { padding: 2.5rem 1rem; }
    .about-us { padding: 3rem 0; }
    
    /* Hero specyficzne */
    .hero__title { font-size: 24px; }
    .hero__subtitle { font-size: 14px; }

    /* Przyciski na mobilce */
    .btn--cta { height: 44px; font-size: 14px; padding: 0 0.8rem; max-width: 180px; }
    .btn--dark-cta { height: 44px; font-size: 14px; padding: 8px 24px; gap: 0.6rem; }
    .btn--white { padding: 12px 24px; font-size: 14px; }

    /* Problems sekcja */
    .section-problems { padding: 2rem 0; }
    .problems-grid { gap: 1rem; margin-bottom: 1.5rem; }
    .section-problems .text-center { margin-bottom: 1.5rem !important; }
    .problem-card { padding: 1.2rem; gap: 0.8rem; }
    .problem-card__header { margin-bottom: 0.6rem; }
    .problem-icon { font-size: 20px; margin-right: 8px; }
    .problem-card h3 { font-size: 16px; }
    .problem-card__content p { font-size: 14px; margin-bottom: 0.6rem; }
    .problem-loss { font-size: 13px; font-weight: 700; margin-top: 0.8rem; padding: 0.8rem; background: #FFF3E0; color: var(--primary-orange); border-radius: 8px; text-align: center; border-left: 3px solid var(--primary-orange); }
    .calculation-box { padding: 1.5rem 1.2rem; margin-top: 1.5rem; border-radius: 16px; }
    .calculation-box h3 { font-size: 20px; margin-bottom: 0.8rem; }
    .calculation-box p { font-size: 14px; }

    /* Section Professional */
    .section-professional { padding: 2.5rem 0; }
    .section-professional .text-center { margin-bottom: 2rem !important; }
    .section-professional .section-title { color: var(--white); }
    .section-professional .section-subtitle { color: rgba(255, 255, 255, 0.85); }
    .grid-3-cols { gap: 1rem; }
    .calm-card { 
        padding: 1.5rem; 
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .calm-card h3 { font-size: 16px; margin-bottom: 0.8rem; color: var(--primary-orange); }
    .calm-card p { font-size: 14px; color: rgba(255, 255, 255, 0.9); }
    .calm-card strong { color: var(--primary-orange); }
    .client-focus-box { 
        background: rgba(255, 61, 0, 0.1); 
        border-left: 6px solid var(--primary-orange); 
        border-radius: 16px; 
        padding: 1.5rem 1.2rem; 
        margin-top: 1.5rem;
        border: 1px solid rgba(255, 61, 0, 0.2);
    }
    .client-focus-content h3 { color: var(--primary-orange); font-size: 18px; margin-bottom: 0.8rem; font-weight: 700; }
    .client-focus-content p { font-size: 14px; margin-bottom: 0.6rem; color: rgba(255, 255, 255, 0.9); }
    .client-focus-content strong { color: var(--primary-orange); }

    /* Video Section */
    .video-section__box { margin: 2rem 1rem; padding: 2rem 1.2rem; border-radius: 24px; }
    .video-section__title { font-size: 24px; margin-bottom: 1rem; }
    .video-section__subtitle { font-size: 14px; margin-bottom: 1.5rem; }
    .video-box { border-radius: 16px; border: 2px solid rgba(255,255,255,0.2); margin-bottom: 1.5rem; }
    .video-box__image { width: 100%; height: auto; display: block; }

/* COMPARISON */
    .comparison-card__content h4 { font-size: 1rem; margin-bottom: 0.4rem; }
    .comparison-card__content p { font-size: 0.9rem; }
    .worth-knowing-box { 
        flex-direction: row; 
        text-align: top; 
        padding: 1.2rem; 
        margin: 2rem auto 0;
        gap: 1rem;
        border-radius: 12px;
    }
    .worth-knowing-icon { 
        width: 40px; 
        height: 40px; 
    }
    .worth-knowing-content h4 { 
        font-size: 16px; 
        margin-bottom: 0.4rem; 
    }
    .worth-knowing-content p { 
        font-size: 13px; 
        line-height: 1.4;
    }

    /* Collaboration Mobile */
    .collaboration { padding: 2rem 1rem; background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%); }
    .collaboration__grid { grid-template-columns: 1fr; gap: 1rem; }
    .collaboration-card { 
        padding: 1.5rem; 
        border-radius: 16px; 
        background: rgba(255, 61, 0, 0.1) !important;
        border: 1px solid rgba(255, 61, 0, 0.2) !important;
        border-left: 6px solid var(--primary-orange) !important;
        transition: all 0.3s ease;
    }
    .collaboration-card:hover { 
        background: rgba(255, 61, 0, 0.15) !important;
        transform: translateY(-2px);
    }
    .collaboration-card:active {
        background: rgba(255, 61, 0, 0.2) !important;
        transform: scale(0.98);
    }
    .collaboration-card h3 { font-size: 16px; margin-bottom: 0.6rem; color: var(--primary-orange) !important; font-weight: 700; }
    .collaboration-card p { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.85) !important; }
    .collaboration-card.active {
        background: rgba(255, 61, 0, 0.15) !important;
        border-color: rgba(255, 61, 0, 0.3) !important;
    }
    .btn--secondary { padding: 8px 16px; font-size: 14px; margin-top: 1rem; }
    .card-header-flex h3 { font-size: 16px; }
    .card-hidden-content { font-size: 14px; line-height: 1.5; }

    /* Cennik */
    .pricing { padding: 2rem 1rem; }
    .pricing-card--featured { max-width: 100%; border: 2px solid var(--primary-orange); box-shadow: 0 15px 40px rgba(0,0,0,0.08), 0 0 35px rgba(255, 61, 0, 0.12); }
    .pricing-card__header { padding: 1.2rem 1rem; }
    .price-box .amount { font-size: 36px; }
    .price-box .currency { font-size: 11px; }
    .price-box .period { font-size: 14px; }
    .vat-info { font-size: 11px; }
    .pricing-card__body { padding: 1.2rem; }
    .pricing-features-list { margin-bottom: 1.2rem; }
    .pricing-features-list li { font-size: 14px; margin-bottom: 0.8rem; gap: 0.6rem; }
    .check-icon { width: 16px; height: 16px; }
    .pricing-bonuses { padding: 1rem; margin-bottom: 1.2rem; }
    .bonus-item { margin-bottom: 0.6rem; }
    .bonus-item p { font-size: 12px; }
    .bonus-tag { font-size: 9px; padding: 2px 5px; }
    .guarantee-section { padding: 1.5rem 1rem; }
    .guarantee-box { padding: 1rem; margin-top: 0.5rem; }
    .guarantee-icon { width: 56px; height: 56px; top: -28px; }
    .guarantee-title { font-size: 18px; margin-top: 0.6rem; }
    .guarantee-text { font-size: 13px; line-height: 1.5; margin-bottom: 0.5rem; }
    .guarantee-highlight { font-size: 14px; margin: 0.6rem 0; }
    .guarantee-list { margin: 0.8rem 0 1rem 0; }
    .guarantee-list li { font-size: 13px; padding: 0.2rem 0; padding-left: 1.2rem; }

    /* FAQ: Mobile */
    .faq { padding: 2rem 0; }
    .faq__accordion { max-width: 100%; }
    .faq__item { padding: 3px; margin-bottom: 0.5rem; border-radius: 12px; }
    .faq__question { font-size: 14px; padding: 1rem 1rem; border-radius: 12px; background: #f9f9f9; color: var(--text-color); }
    .faq__question:hover { background: #f0f0f0; }
    .faq__icon { color: var(--primary-orange); }
    .faq__item.active .faq__answer { padding: 0.8rem 1rem; }
    .faq__answer { font-size: 14px; line-height: 1.5; text-align: left; color: var(--text-color); }
    .faq__answer p { margin-bottom: 0.5rem; }
    .faq__cta { text-align: center; margin-top: 2.5rem; margin-bottom: 3rem; max-width: 100%; margin-left: auto; margin-right: auto; padding: 0 1rem; }
    .faq__cta p { font-size: 14px; color: var(--text-color); line-height: 1.5; }

    .first-steps-plan { padding-top: 1rem; padding-bottom: 2.5rem; }
    .first-steps-plan__subtitle { margin-bottom: 1rem; padding: 0 0.5rem; }
    .first-steps-plan__head { padding: 0.9rem 1rem; border-radius: 16px; }
    .first-steps-plan__playlist-link { width: 100%; }
    .first-steps-carousel__wrapper { margin: 0 -1rem; padding: 0 1rem; }
    .first-steps-carousel { gap: 0.75rem; padding-right: 1rem; }
    .first-step-video-card { flex: 0 0 calc(100vw - 3rem); min-width: calc(100vw - 3rem); border-radius: 14px; }
    .first-step-video-card__body { padding: 0.8rem 0.85rem 0.95rem; }
    .first-step-video-card__title { font-size: 17px; line-height: 1.35; }
    .first-step-video-card__meta { font-size: 12px; margin-bottom: 0.65rem; }
    .first-step-video-card__watch { width: 100%; }
    .first-step-video-card__actions { flex-direction: column; }
    .first-steps-slider-btn { width: 36px; height: 36px; }
    .first-steps-slider-btn--prev { left: 4px; }
    .first-steps-slider-btn--next { right: 4px; }
    .first-steps-plan__final-cta {
        flex-direction: column;
        align-items: stretch;
        border-radius: 16px;
        padding: 1rem;
    }
    .first-steps-plan__final-cta p { font-size: 14px; }
    .first-steps-plan__final-cta .btn--dark-cta {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 15px;
        height: auto;
    }

    /* Testimonials: Mobile */
    .testimonials { padding: 2rem 0; }
    .testimonial-slider__wrapper { margin: 0 -1rem; padding: 0 1rem; }
    .testimonial-slider { gap: 1rem; padding-right: 1rem; }
    .testimonial-card { flex: 0 0 calc(100vw - 3rem); min-width: calc(100vw - 3rem); max-width: calc(100vw - 3rem); padding: 1.2rem; background: #F8F8F8; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .testimonial-card__text { font-size: 14px; line-height: 1.5; margin-bottom: 1rem; }
    .author__name { font-size: 14px; margin-bottom: 0.2rem; }
    .author__title { font-size: 12px; }
    .slider-btn { width: 36px; height: 36px; left: 0; right: auto; }
    .slider-btn--prev { left: 4px; }
    .slider-btn--next { right: 4px; left: auto; }
    .slider-btn svg { width: 14px; height: 14px; }

    /* Footer */
    .footer { padding: 1rem 0 0; }
    .footer__container { grid-template-columns: 1fr 1fr; gap: 0.8rem; padding: 0 0.75rem 1rem 0.75rem; }
    .footer__col { gap: 0.4rem; }
    .footer__col h4 { font-size: 12px; margin-bottom: 0.3rem; font-weight: 700; }
    .footer__col p { font-size: 10px; line-height: 1.3; margin: 0; }
    .footer__col address { font-size: 10px; line-height: 1.3; margin: 0; font-style: normal; }
    .footer__col ul { margin: 0; }
    .footer__col li { margin-bottom: 0.3rem; font-size: 10px; }
    .footer__col a { font-size: 10px; }
    .footer__socials { gap: 0.6rem; }
    .footer__socials a { width: 24px; height: 24px; }
    .footer__socials svg { width: 12px; height: 12px; }
    .footer__bottom { font-size: 9px; padding: 0.6rem 0.75rem; }
}


@media (max-width: 480px) {
    .comparison-card {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
        border-radius: 16px;
        width: 100%;
    }
    .comparison-card__content h4 {
        font-size: 16px;
    }
    
    .comparison-card__content p {
        font-size: 13px;
    }
    
    .comparison-card__corner-icon {
        width: 100%;
        margin-left: auto;
        margin-right: 0;
        align-self: start;
        display: block;
    }
}

/* ======== COOKIE BANNER ======== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(32, 32, 32, 0.98); backdrop-filter: blur(10px); z-index: 999; padding: 1.5rem; display: none; }
.cookie-banner.show { display: flex; justify-content: center; }
.cookie-banner__content { display: flex; align-items: center; gap: 2rem; max-width: 1000px; width: 100%; }
.cookie-banner__text h3 { font-size: 18px; color: var(--white); margin: 0 0 0.5rem 0; font-weight: 700; }
.cookie-banner__text p { font-size: 14px; color: #ccc; margin: 0; line-height: 1.5; }
.cookie-banner__buttons { display: flex; gap: 1rem; flex-shrink: 0; }
.cookie-btn { padding: 10px 24px; border-radius: 8px; border: none; font-size: 14px; cursor: pointer; font-weight: 600; transition: all 0.3s; }
.cookie-btn--accept { background: var(--primary-orange); color: white; }
.cookie-btn--accept:hover { background: #EB590D; }
.cookie-btn--reject { background: transparent; color: white; border: 1px solid #666; }
.cookie-btn--reject:hover { border-color: var(--primary-orange); color: var(--primary-orange); }

/* Cookie Banner: Tablet */
@media (max-width: 992px) {
    .cookie-banner { padding: 1.2rem; }
    .cookie-banner__content { gap: 1.5rem; }
    .cookie-banner__text h3 { font-size: 16px; }
    .cookie-banner__text p { font-size: 13px; }
    .cookie-btn { padding: 8px 16px; font-size: 13px; }
}

/* Cookie Banner: Mobile */
@media (max-width: 768px) {
    .cookie-banner { padding: 1rem; }
    .cookie-banner__content { flex-direction: column; gap: 1rem; }
    .cookie-banner__text h3 { font-size: 14px; }
    .cookie-banner__text p { font-size: 12px; line-height: 1.4; }
    .cookie-banner__buttons { width: 100%; flex-direction: column; gap: 0.8rem; }
    .cookie-btn { width: 100%; padding: 10px 16px; font-size: 12px; }
}