        .ocs-lp{
            --eh-green: #77BC4B;
            --eh-green-hover: #65A33F;
            --eh-blue: #14ABE7;
            --eh-dark: #0F2A3A;
            --eh-text: #52616B;
            --eh-light: #F8FAFB;
            --eh-blue-light: #EAF7FC;
            --eh-green-light: #EEF8EA;
            --eh-red-light: #FFF7F7;
            --eh-red-border: #F3D1D1;
            --eh-green-border: #CFE8C4;
            --eh-white: #FFFFFF;
            --eh-border: #E5E7EB;

            --eh-shadow-soft: 0 10px 30px rgba(15, 42, 58, 0.05);
            --eh-shadow-card: 0 14px 34px rgba(15, 42, 58, 0.07);
            --eh-shadow-hover: 0 20px 46px rgba(15, 42, 58, 0.12);
            --eh-shadow-strong: 0 24px 60px rgba(15, 42, 58, 0.16);
        }

        html{ scroll-behavior: smooth; }

        .ocs-lp{
            margin: 0;
            font-family: "Montserrat", sans-serif;
            color: var(--eh-text);
            background: var(--eh-light);
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .ocs-lp .eh-logo-img{ height: 50px; width: auto; }
        .ocs-lp .eh-section{ padding: 90px 24px; }
        .ocs-lp .eh-section-sm{ padding: 56px 24px; }
        .ocs-lp .eh-container{ width: 100%; max-width: 1200px; margin: 0 auto; }
        .ocs-lp .eh-container-wide{ width: 100%; max-width: 1280px; margin: 0 auto; }
        .ocs-lp .eh-container-narrow{ width: 100%; max-width: 920px; margin: 0 auto; }
        
        .ocs-lp .eh-grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
        .ocs-lp .eh-grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .ocs-lp .eh-grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

        .ocs-lp h1, .ocs-lp h2, .ocs-lp h3{ color: var(--eh-dark); margin: 0 0 16px 0; }
        .ocs-lp h1{ font-size: clamp(34px, 5vw, 54px); line-height: 1.08; font-weight: 800; letter-spacing: -0.03em; }
        .ocs-lp h2{ font-size: clamp(28px, 3.2vw, 40px); line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; }
        .ocs-lp h3{ font-size: 22px; line-height: 1.3; font-weight: 800; }
        .ocs-lp p{ color: var(--eh-text); font-size: 17px; line-height: 1.65; margin-bottom: 16px;}
        
        .ocs-lp .eh-lead{ font-size: clamp(17px, 2vw, 20px); line-height: 1.65; color: var(--eh-text); margin-bottom: 32px; }
        .ocs-lp .eh-center{ text-align: center; }
        .ocs-lp .eh-center .eh-lead{ max-width: 760px; margin-left: auto; margin-right: auto; }

        .ocs-lp .eh-card{
            background: var(--eh-white); border: 1px solid var(--eh-border); border-radius: 22px;
            padding: 30px; box-shadow: var(--eh-shadow-card);
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
        }
        @media (hover: hover) and (pointer: fine) {
            .ocs-lp .eh-card:hover{ transform: translateY(-4px); box-shadow: var(--eh-shadow-hover); border-color: rgba(20, 171, 231, 0.28); }
        }

        .ocs-lp .eh-eyebrow{
            display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--eh-blue);
            font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
            padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(20, 171, 231, 0.16);
            box-shadow: var(--eh-shadow-soft); margin-bottom: 22px;
        }
        .ocs-lp .eh-eyebrow-dot{ width: 8px; height: 8px; background: var(--eh-blue); border-radius: 999px; }

        .ocs-lp .eh-icon-list{ display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
        .ocs-lp .eh-icon-list li{ position: relative; padding-left: 34px; color: var(--eh-dark); font-size: 16px; line-height: 1.5; font-weight: 600; }
        .ocs-lp .eh-icon-list li::before{ content: "✓"; position: absolute; left: 0; top: -1px; color: var(--eh-green); font-size: 22px; font-weight: 900; }

        .ocs-lp .eh-btn-row{ display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
        .ocs-lp .eh-btn-primary, .ocs-lp .eh-btn-secondary{
            display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 16px 30px;
            border-radius: 14px; font-weight: 800; text-decoration: none; transition: all .22s ease; cursor: pointer;
        }
        .ocs-lp .eh-btn-primary{ color: #fff; background: var(--eh-green); border: 2px solid var(--eh-green); box-shadow: 0 10px 24px rgba(119, 188, 75, 0.24); }
        .ocs-lp .eh-btn-primary:hover{ color: #fff; background: var(--eh-green-hover); border-color: var(--eh-green-hover); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(119, 188, 75, 0.30); }
        .ocs-lp .eh-btn-secondary{ color: var(--eh-dark); background: #fff; border: 2px solid var(--eh-border); }
        .ocs-lp .eh-btn-secondary:hover{ color: var(--eh-blue); border-color: var(--eh-blue); transform: translateY(-2px); box-shadow: var(--eh-shadow-soft); }

        .ocs-lp .eh-reveal{ opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
        .ocs-lp .eh-reveal.is-visible{ opacity: 1; transform: translateY(0); }
        .ocs-lp .eh-delay-1{ transition-delay: 100ms; }
        .ocs-lp .eh-delay-2{ transition-delay: 200ms; }
        .ocs-lp .eh-delay-3{ transition-delay: 300ms; }

        .ocs-lp .eh-disclaimer{ background: var(--eh-blue-light); border-left: 4px solid var(--eh-blue); border-radius: 12px; padding: 14px 16px; color: var(--eh-text); font-size: 14px; line-height: 1.55; margin-top: 20px; }

        @media (max-width: 1024px) {
            .ocs-lp .eh-grid-4{ grid-template-columns: repeat(2, 1fr); }
            .ocs-lp .eh-grid-3{ grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 767px) {
            .ocs-lp .eh-section{ padding: 58px 18px; }
            .ocs-lp .eh-section-sm{ padding: 42px 18px; }
            .ocs-lp .eh-grid-2, .ocs-lp .eh-grid-3, .ocs-lp .eh-grid-4{ grid-template-columns: 1fr; gap: 22px; }
            .ocs-lp .eh-card{ padding: 24px; border-radius: 20px; }
            .ocs-lp .eh-btn-row{ flex-direction: column; }
            .ocs-lp .eh-btn-primary, .ocs-lp .eh-btn-secondary{ width: 100%; }
        }

        
        .ocs-lp .eh-topbar{ position: fixed; top: 0; left: 0; width: 100%; z-index: 999; background: rgba(255, 255, 255, .86); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(229, 231, 235, .85); }
        .ocs-lp .eh-topbar-inner{ height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px;}
        .ocs-lp .eh-logo{ text-decoration: none; font-size: 26px; font-weight: 900; letter-spacing: -0.04em; }
        .ocs-lp .eh-logo-green{ color: var(--eh-green); }
        .ocs-lp .eh-logo-dark{ color: var(--eh-dark); }
        .ocs-lp .eh-topbar-cta{ display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 22px; background: var(--eh-green); color: #fff; border-radius: 12px; font-weight: 800; text-decoration: none; transition: all .22s ease; }
        .ocs-lp .eh-topbar-cta:hover{ color: #fff; background: var(--eh-green-hover); transform: translateY(-1px); }
        @media (max-width: 767px) { .ocs-lp .eh-topbar-inner{ height: 66px; } .ocs-lp .eh-topbar-cta{ display: none; } }

        
        .ocs-lp .eh-hero{ position: relative; padding: 160px 24px 90px; overflow: hidden; background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 45%, #EAF7FC 100%); }
        .ocs-lp .eh-hero::before{ content: ""; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; background: rgba(20, 171, 231, 0.13); filter: blur(70px); border-radius: 999px; }
        .ocs-lp .eh-hero::after{ content: ""; position: absolute; bottom: -140px; left: -120px; width: 360px; height: 360px; background: rgba(119, 188, 75, 0.15); filter: blur(70px); border-radius: 999px; }
        .ocs-lp .eh-hero .eh-container-wide{ position: relative; z-index: 2; }
        .ocs-lp .eh-hero-image{ border-radius: 30px; overflow: hidden; box-shadow: var(--eh-shadow-strong); position: relative; }
        .ocs-lp .eh-hero-image img{ width: 100%; display: block; object-fit: cover; }
        @media (max-width: 767px) { .ocs-lp .eh-hero{ padding: 120px 18px 58px; } }

        
        .ocs-lp .eh-assistant{ background: #fff; border: 1px solid var(--eh-border); border-radius: 32px; padding: 56px; box-shadow: var(--eh-shadow-strong); }
        .ocs-lp .eh-quiz-header{ text-align: center; margin-bottom: 40px; }
        
        .ocs-lp .eh-progress-wrap{ margin-bottom: 40px; }
        .ocs-lp .eh-progress-label{ display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; color: var(--eh-text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
        .ocs-lp .eh-progress{ height: 12px; background: #f3f4f6; border-radius: 999px; overflow: hidden; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); }
        .ocs-lp .eh-progress-bar{ height: 100%; width: 25%; background: linear-gradient(90deg, var(--eh-green), #34d399); border-radius: 999px; transition: width 0.5s ease-out; position: relative; }
        .ocs-lp .eh-progress-pulse{ position: absolute; inset: 0; background: rgba(255,255,255,0.2); animation: ehPulse 2s ease-in-out infinite; }
        @keyframes ehPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
        
        .ocs-lp .eh-quiz-container{ position: relative; min-height: 380px; overflow: hidden; }
        .ocs-lp .step-panel{ transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; opacity: 0; transform: translateY(10px); position: absolute; width: 100%; pointer-events: none; visibility: hidden; }
        .ocs-lp .step-panel.active{ opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; visibility: visible; }
        
        .ocs-lp .eh-quiz-grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .ocs-lp .eh-quiz-grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        
        .ocs-lp .eh-quiz-radio{ display: block; cursor: pointer; height: 100%; }
        .ocs-lp .eh-quiz-radio input[type="radio"]{ display: none; }
        .ocs-lp .eh-quiz-card{ border: 2px solid var(--eh-border); border-radius: 16px; padding: 24px; text-align: center; background: #fff; transition: all 0.2s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; box-sizing: border-box; }
        .ocs-lp .eh-quiz-card.min-h-160{ min-height: 160px; }
        .ocs-lp .eh-quiz-card.min-h-150{ min-height: 150px; }
        .ocs-lp .eh-quiz-card.min-h-100{ min-height: 100px; padding: 20px; }
        
        .ocs-lp .eh-quiz-card:hover{ border-color: rgba(20, 171, 231, 0.4); }
        .ocs-lp .eh-quiz-radio input[type="radio"]:checked + .eh-quiz-card{ border-color: var(--eh-blue); background: var(--eh-blue-light); box-shadow: 0 0 0 2px rgba(20, 171, 231, 0.2); transform: translateY(-2px); }
        
        .ocs-lp .eh-quiz-icon-wrap{ background: #f9fafb; padding: 12px; border-radius: 999px; margin-bottom: 16px; transition: all 0.2s ease; }
        .ocs-lp .eh-quiz-card:hover .eh-quiz-icon-wrap{ background: #eff6ff; }
        .ocs-lp .eh-quiz-radio input[type="radio"]:checked + .eh-quiz-card .eh-quiz-icon-wrap{ background: #fff; }
        .ocs-lp .eh-quiz-icon{ width: 32px; height: 32px; color: #9ca3af; transition: all 0.2s ease; }
        .ocs-lp .eh-quiz-card:hover .eh-quiz-icon, .ocs-lp .eh-quiz-radio input[type="radio"]:checked + .eh-quiz-card .eh-quiz-icon{ color: var(--eh-blue); }
        
        .ocs-lp .eh-quiz-title{ font-weight: 700; color: var(--eh-dark); display: block; margin-bottom: 4px; font-size: 17px; }
        .ocs-lp .eh-quiz-desc{ font-size: 13px; color: var(--eh-text); line-height: 1.4; display: block;}
        
        .ocs-lp .eh-quiz-big-number{ font-size: 36px; font-weight: 800; color: var(--eh-dark); display: block; margin-bottom: 8px; transition: color 0.2s ease; }
        .ocs-lp .eh-quiz-card:hover .eh-quiz-big-number, .ocs-lp .eh-quiz-radio input[type="radio"]:checked + .eh-quiz-card .eh-quiz-big-number{ color: var(--eh-blue); }
        .ocs-lp .eh-quiz-big-text{ font-size: 16px; font-weight: 600; color: var(--eh-text); }
        
        .ocs-lp .eh-quiz-btn-back{ background: none; border: none; color: var(--eh-text); font-size: 14px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 4px; transition: color 0.2s ease; margin-top: 32px; font-family: inherit; width: 100%; text-align: center;}
        .ocs-lp .eh-quiz-btn-back:hover{ color: var(--eh-dark); }
        
        .ocs-lp .eh-spinner-wrap{ width: 80px; height: 80px; background: #eff6ff; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; }
        .ocs-lp .eh-spinner-ring{ position: absolute; inset: 0; border: 4px solid transparent; border-top-color: var(--eh-blue); border-radius: 999px; animation: ehSpin 3s linear infinite; }
        .ocs-lp .eh-spin{ animation: ehSpin 1s linear infinite; }
        @keyframes ehSpin { to { transform: rotate(360deg); } }
        
        .ocs-lp .eh-final-msg{ background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 16px; padding: 24px; text-align: center; margin-bottom: 32px; }
        .ocs-lp .eh-final-icon{ width: 48px; height: 48px; background: var(--eh-green); color: #fff; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; box-shadow: var(--eh-shadow-soft); }
        
        .ocs-lp .eh-lead-form{ max-width: 500px; margin: 0 auto; text-align: left; }
        .ocs-lp .eh-elementor-form{ max-width: 100%; margin: 0 auto; text-align: left; }
        .ocs-lp .eh-lead-form input{ width: 100%; padding: 14px 20px; background: #f9fafb; border: 1px solid var(--eh-border); border-radius: 12px; font-size: 16px; color: var(--eh-dark); outline: none; transition: all 0.2s; font-family: inherit; box-sizing: border-box; margin-bottom: 0;}
        .ocs-lp .eh-lead-form input:focus{ background: #fff; border-color: var(--eh-blue); box-shadow: 0 0 0 3px rgba(20, 171, 231, 0.15); }
        .ocs-lp .eh-lead-form label{ display: block; font-size: 14px; font-weight: 600; color: var(--eh-dark); margin-bottom: 6px; }
        .ocs-lp .eh-form-group{ margin-bottom: 20px; }
        .ocs-lp .eh-form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;}
        
        .ocs-lp .eh-success-anim{ width: 96px; height: 96px; background: #dcfce7; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; position: relative; }
        .ocs-lp .eh-success-ping{ position: absolute; inset: 0; border: 2px solid var(--eh-green); border-radius: 999px; animation: ehPing 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; opacity: 0.2; }
        @keyframes ehPing { 75%, 100% { transform: scale(1.5); opacity: 0; } }
        
        .ocs-lp .eh-safe-note{ display: flex; align-items: flex-start; background: #f9fafb; padding: 12px; border-radius: 8px; border: 1px solid #f3f4f6; margin-top: 16px; text-align: left; gap: 8px;}
        .ocs-lp .eh-safe-note p{ font-size: 13px; color: #6b7280; line-height: 1.4; margin: 0; }
        
        @media (max-width: 767px) {
            .ocs-lp .eh-assistant{ padding: 32px 20px; border-radius: 24px; }
            .ocs-lp .eh-quiz-grid-3, .ocs-lp .eh-quiz-grid-2{ grid-template-columns: 1fr; gap: 16px; }
            .ocs-lp .eh-form-row{ grid-template-columns: 1fr; gap: 20px; }
            .ocs-lp .eh-quiz-card.min-h-160, .ocs-lp .eh-quiz-card.min-h-150{ min-height: auto; padding: 24px; }
        }

        
        .ocs-lp .eh-accordion{ display: grid; gap: 14px; margin-top: 34px; }
        .ocs-lp .eh-accordion-item{ background: #fff; border: 1px solid var(--eh-border); border-radius: 18px; overflow: hidden; }
        .ocs-lp .eh-accordion-button{ width: 100%; min-width: 0; min-height: 64px; padding: 20px 22px; background: #fff; color: var(--eh-dark); border: 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; font-size: 17px; font-weight: 800; cursor: pointer; font-family: inherit; white-space: normal; overflow-wrap: anywhere; word-break: normal; line-height: 1.35;}
        .ocs-lp .eh-accordion-icon{ flex: 0 0 auto; transition: transform .22s ease; width: 24px; height: 24px; }
        .ocs-lp .eh-accordion-button[aria-expanded="true"] .eh-accordion-icon{ transform: rotate(180deg); }
        .ocs-lp .eh-accordion-content{ max-height: 0; overflow: hidden; opacity: 0; transition: max-height .32s ease, opacity .22s ease; }
        .ocs-lp .eh-accordion-content-inner{ padding: 0 22px 22px; }
        .ocs-lp .eh-accordion-content p{ margin: 0; }
        @media (max-width: 767px) {
            .ocs-lp .eh-accordion-button{ font-size: 14px; padding: 18px 16px; gap: 12px; align-items: flex-start; }
            .ocs-lp .eh-accordion-icon{ width: 20px; height: 20px; margin-top: 1px; }
        }

        
        .ocs-lp .eh-sticky-mobile-cta{ display: none; }
        @media (max-width: 767px) {
            .ocs-lp .eh-sticky-mobile-cta{ position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 998; display: flex; transform: translateY(110px); transition: transform .28s ease; }
            .ocs-lp .eh-sticky-mobile-cta.is-visible{ transform: translateY(0); }
            .ocs-lp .eh-sticky-mobile-cta a{ width: 100%; min-height: 54px; border-radius: 14px; background: var(--eh-green); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: var(--eh-shadow-strong); }
            .ocs-lp{ padding-bottom: 82px; }
        }

        
        .ocs-lp .eh-trust-icon{ width: 48px; height: 48px; color: var(--eh-green); margin-bottom: 16px; }
        .ocs-lp .eh-final-cta-section{ background: var(--eh-dark); color: white; border-radius: 32px; padding: 64px 24px; text-align: center; position: relative; overflow: hidden;}
        .ocs-lp .eh-final-cta-section h2{ color: white; }
        .ocs-lp .eh-final-cta-section p{ color: #A0B3C0; margin-bottom: 32px; }
        .ocs-lp .eh-video-wrapper{ position: relative; padding-bottom: 56.25%; height: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--eh-shadow-strong); background: #000; margin-top: 32px;}
        .ocs-lp .eh-video-wrapper iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }


/* --- Trust strip --- */

.ocs-lp .eh-trust-strip{
    padding-top: 26px;
    padding-bottom: 26px;
}

.ocs-lp .eh-trust-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ocs-lp .eh-trust-item{
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--eh-shadow-soft);
    transition: all .22s ease;
}

.ocs-lp .eh-trust-item:hover{
    transform: translateY(-3px);
    box-shadow: var(--eh-shadow-hover);
}

.ocs-lp .eh-trust-number{
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--eh-green);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.ocs-lp .eh-trust-label{
    font-size: 14px;
    line-height: 1.45;
    color: var(--eh-dark);
    font-weight: 600;
}

@media (max-width: 767px){

    .ocs-lp .eh-trust-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .ocs-lp .eh-trust-item{
        padding: 18px 14px;
        border-radius: 16px;
    }

    .ocs-lp .eh-trust-number{
        font-size: 24px;
    }

    .ocs-lp .eh-trust-label{
        font-size: 13px;
    }

}


/* --- Najczęstszy błąd --- */

.ocs-lp .eh-mistake-section{
    background: white;
}

.ocs-lp .eh-mistake-layout{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fafb 100%
        );

    border: 1px solid var(--eh-border);
    border-radius: 28px;

    padding: 42px 48px;

    box-shadow: var(--eh-shadow-soft);

    align-items: center;
}

.ocs-lp .eh-mistake-left h2{
    margin-bottom: 0;
    max-width: 420px;
}

.ocs-lp .eh-mistake-right .eh-lead{
    margin-bottom: 14px;
}

.ocs-lp .eh-mistake-right p:last-of-type{
    margin-bottom: 26px;
}
.ocs-lp .eh-footer-logo-green{
	color: var(--eh-green);
	font-weight: 600;
}
.ocs-lp .eh-footer-logo-white{
	color: white;
	font-weight: 600;
}


@media (max-width: 900px){

    .ocs-lp .eh-mistake-layout{
        grid-template-columns: 1fr;
        gap: 28px;
    }

}

@media (max-width: 767px){

    .ocs-lp .eh-mistake-layout{
        padding: 28px 22px;
        border-radius: 22px;
        gap: 20px;
    }

    .ocs-lp .eh-mistake-left h2{
        max-width: 100%;
    }

    .ocs-lp .eh-mistake-right .eh-btn-primary{
        width: 100%;
    }

}



